diff --git a/crates/00-system/crate.debian.sh b/crates/00-system/crate.debian.sh new file mode 100644 index 0000000..b866807 --- /dev/null +++ b/crates/00-system/crate.debian.sh @@ -0,0 +1,5 @@ +super_apply() { + apt update -y + apt install -y netselect-apt sudo + netselect-apt +} \ No newline at end of file diff --git a/crates/10-zsh/crate.debian.sh b/crates/10-zsh/crate.debian.sh new file mode 100644 index 0000000..7f0af81 --- /dev/null +++ b/crates/10-zsh/crate.debian.sh @@ -0,0 +1,7 @@ +super_apply() { + apt install -y zsh +} + +super_undo() { + pacman -R --noconfirm zsh +} \ No newline at end of file diff --git a/crates/20-vim/crate.debian.sh b/crates/20-vim/crate.debian.sh new file mode 100644 index 0000000..ba156fd --- /dev/null +++ b/crates/20-vim/crate.debian.sh @@ -0,0 +1,7 @@ +super_apply() { + apt install -y vim +} + +super_undo() { + echo "we never uninstall vim -_-" +} \ No newline at end of file