flat sources in WM PKGBUILDs so makepkg stops crying, nerd fonts and icons back in depends so the rice actually renders

This commit is contained in:
2026-07-28 21:27:59 +02:00
parent 26071fd05d
commit 5107768a8b
25 changed files with 27 additions and 52 deletions
+9 -17
View File
@@ -26,15 +26,7 @@ optdepends=(
'pavucontrol: audio settings'
'brightnessctl: brightness control'
)
source=(
"hypr/hyprland.lua"
"hypr/hyprpaper.conf"
"waybar/config.jsonc"
"waybar/style.css"
"rofi/config.rasi"
"rofi/theme.rasi"
"dunst/dunstrc"
)
source=("hyprland.lua" "hyprpaper.conf" "config.jsonc" "style.css" "config.rasi" "theme.rasi" "dunstrc")
sha256sums=('SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP')
package() {
@@ -45,11 +37,11 @@ package() {
install -dm755 "$_skel/rofi"
install -dm755 "$_skel/dunst"
cp -a "hypr/hyprland.lua" "$_skel/hypr/"
cp -a "hypr/hyprpaper.conf" "$_skel/hypr/"
cp -a "waybar/config.jsonc" "$_skel/waybar/"
cp -a "waybar/style.css" "$_skel/waybar/"
cp -a "rofi/config.rasi" "$_skel/rofi/"
cp -a "rofi/theme.rasi" "$_skel/rofi/"
cp -a "dunst/dunstrc" "$_skel/dunst/"
}
cp -a "hyprland.lua" "$_skel/hypr/hyprland.lua"
cp -a "hyprpaper.conf" "$_skel/hypr/hyprpaper.conf"
cp -a "config.jsonc" "$_skel/waybar/config.jsonc"
cp -a "style.css" "$_skel/waybar/style.css"
cp -a "config.rasi" "$_skel/rofi/config.rasi"
cp -a "theme.rasi" "$_skel/rofi/theme.rasi"
cp -a "dunstrc" "$_skel/dunst/dunstrc"
}
+9 -18
View File
@@ -24,16 +24,7 @@ optdepends=(
'brightnessctl: brightness control'
'pavucontrol: audio settings GUI'
)
source=(
"i3/config"
"polybar/config.ini"
"polybar/launch.sh"
"rofi/config.rasi"
"rofi/theme.rasi"
"picom/picom.conf"
"dunst/dunstrc"
"sxhkd/sxhkdrc"
)
source=("config" "config.ini" "launch.sh" "config.rasi" "theme.rasi" "picom.conf" "dunstrc" "sxhkdrc")
sha256sums=('SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP')
package() {
@@ -46,12 +37,12 @@ package() {
install -dm755 "$_skel/dunst"
install -dm755 "$_skel/sxhkd"
cp -a "i3/config" "$_skel/i3/"
cp -a "polybar/config.ini" "$_skel/polybar/"
install -m755 "polybar/launch.sh" "$_skel/polybar/"
cp -a "rofi/config.rasi" "$_skel/rofi/"
cp -a "rofi/theme.rasi" "$_skel/rofi/"
cp -a "picom/picom.conf" "$_skel/picom/"
cp -a "dunst/dunstrc" "$_skel/dunst/"
cp -a "sxhkd/sxhkdrc" "$_skel/sxhkd/"
cp -a "config" "$_skel/i3/config"
cp -a "config.ini" "$_skel/polybar/config.ini"
install -m755 "launch.sh" "$_skel/polybar/launch.sh"
cp -a "config.rasi" "$_skel/rofi/config.rasi"
cp -a "theme.rasi" "$_skel/rofi/theme.rasi"
cp -a "picom.conf" "$_skel/picom/picom.conf"
cp -a "dunstrc" "$_skel/dunst/dunstrc"
cp -a "sxhkdrc" "$_skel/sxhkd/sxhkdrc"
}
+9 -17
View File
@@ -25,15 +25,7 @@ optdepends=(
'swaylock: screen locker'
'playerctl: media player controls'
)
source=(
"sway/config"
"sway/config.d/99-autostart"
"waybar/config.jsonc"
"waybar/style.css"
"wofi/config"
"wofi/style.css"
"mako/config"
)
source=("sway-config" "99-autostart" "config.jsonc" "style.css" "wofi-config" "wofi-style.css" "mako-config")
sha256sums=('SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP')
package() {
@@ -44,11 +36,11 @@ package() {
install -dm755 "$_skel/wofi"
install -dm755 "$_skel/mako"
cp -a "sway/config" "$_skel/sway/"
cp -a "sway/config.d/99-autostart" "$_skel/sway/config.d/"
cp -a "waybar/config.jsonc" "$_skel/waybar/"
cp -a "waybar/style.css" "$_skel/waybar/"
cp -a "wofi/config" "$_skel/wofi/"
cp -a "wofi/style.css" "$_skel/wofi/"
cp -a "mako/config" "$_skel/mako/"
}
cp -a "sway-config" "$_skel/sway/config"
cp -a "99-autostart" "$_skel/sway/config.d/99-autostart"
cp -a "config.jsonc" "$_skel/waybar/config.jsonc"
cp -a "style.css" "$_skel/waybar/style.css"
cp -a "wofi-config" "$_skel/wofi/config"
cp -a "wofi-style.css" "$_skel/wofi/style.css"
cp -a "mako-config" "$_skel/mako/config"
}