11 lines
208 B
Bash
11 lines
208 B
Bash
#!/bin/sh
|
|
|
|
pkgs="i3 i3lock i3status libpulse-mainloop-glib brightnessctl xss-lock dex maim dmenu gnome-keyring feh picom"
|
|
|
|
super_apply() {
|
|
apt install -y $pkgs
|
|
}
|
|
|
|
super_undo() {
|
|
apt remove -y $pkgs
|
|
}
|