12 lines
205 B
Bash
12 lines
205 B
Bash
#!/bin/sh
|
|
|
|
pkgs="i3 i3lock i3status pulseaudio-devel brightnessctl xss-lock dex maim dmenu gnome-keyring feh picom"
|
|
|
|
super_apply() {
|
|
xbps-install -y $pkgs
|
|
}
|
|
|
|
super_undo() {
|
|
xbps-remove -y $pkgs
|
|
}
|
|
|