dotfiles/crates/05-i3/crate.arch.sh
2023-10-14 22:38:13 +02:00

11 lines
208 B
Bash

#!/bin/sh
pkgs="i3 i3lock i3status libpulse brightnessctl xss-lock dex maim dmenu gnome-keyring"
super_apply() {
pacman -S --needed --noconfirm $pkgs
}
super_undo() {
pacman -R --noconfirm $pkgs
}