Adds bootstrap.v2

This commit is contained in:
Michel Fedde 2025-04-21 22:19:46 +02:00
parent 06c8003cf2
commit 2bbccb4595
61 changed files with 468 additions and 4 deletions

View file

@ -0,0 +1,28 @@
#!/bin/env sh
SDDM_THEME_PATH="/etc/sddm.conf.d/theme.conf"
addApplications sddm catppuccin-sddm-theme-mocha
sddm() {
sudo mkdir -p /etc/sddm.conf.d
sudo ln ~/.config/sddm/theme.conf /etc/sddm.conf.d/theme.conf
sudo systemctl enable sddm
}
check() {
if ! command -v sddm >/dev/null; then
return 0
fi
if [ ! -f "$SDDM_THEME_PATH" ]; then
return 0
fi
return 1
}
if check; then
addAction sddm
fi