dotfiles/crates/05-i3/crate.arch.sh

12 lines
208 B
Bash
Raw Permalink Normal View History

2023-09-03 00:24:32 +02:00
#!/bin/sh
2023-09-03 00:42:57 +02:00
pkgs="i3 i3lock i3status libpulse brightnessctl xss-lock dex maim dmenu gnome-keyring"
2023-09-03 00:24:32 +02:00
super_apply() {
pacman -S --needed --noconfirm $pkgs
}
super_undo() {
pacman -R --noconfirm $pkgs
}