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