11 lines
194 B
Bash
11 lines
194 B
Bash
#!/bin/sh
|
|
|
|
pkgs="i3 i3lock i3status libpulse brightnessctl xss-lock dex maim dmenu"
|
|
|
|
super_apply() {
|
|
pacman -S --needed --noconfirm $pkgs
|
|
}
|
|
|
|
super_undo() {
|
|
pacman -R --noconfirm $pkgs
|
|
}
|