add debian support

This commit is contained in:
Strix 2023-10-14 22:38:16 +02:00
parent 39b5ef0b93
commit aff59e42bd
No known key found for this signature in database
GPG key ID: 49B2E37B8915B774
3 changed files with 19 additions and 0 deletions

View file

@ -0,0 +1,5 @@
super_apply() {
apt update -y
apt install -y netselect-apt sudo
netselect-apt
}

View file

@ -0,0 +1,7 @@
super_apply() {
apt install -y zsh
}
super_undo() {
pacman -R --noconfirm zsh
}

View file

@ -0,0 +1,7 @@
super_apply() {
apt install -y vim
}
super_undo() {
echo "we never uninstall vim -_-"
}