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

12 lines
218 B
Bash
Raw Normal View History

2023-10-14 22:38:12 +02:00
#!/bin/sh
2025-01-12 18:58:48 +01:00
pkgs="i3 i3lock i3status libpulse brightnessctl xss-lock dex maim dmenu gnome-keyring feh picom"
2023-10-14 22:38:12 +02:00
super_apply() {
2025-01-12 18:58:48 +01:00
pacman -S --needed --noconfirm $pkgs
2023-10-14 22:38:12 +02:00
}
super_undo() {
2025-01-12 18:58:48 +01:00
pacman -R --noconfirm $pkgs
2023-10-14 22:38:12 +02:00
}