diff options
| author | Nippy <nippy@rp1.hu> | 2026-05-07 22:13:54 +0200 |
|---|---|---|
| committer | Nippy <nippy@rp1.hu> | 2026-05-07 22:13:54 +0200 |
| commit | ad96d1f2ca1545613f33c8e5276696fe2ec698bc (patch) | |
| tree | 2ece53136bc7715093870db5f3148480b9d843e0 /raveos-hyprland-theme | |
| parent | 254e4d31b98d00f39e7f5d6f209cee2adce68ec9 (diff) | |
| download | RaveOS-PKGBUILD-ad96d1f2ca1545613f33c8e5276696fe2ec698bc.tar.gz RaveOS-PKGBUILD-ad96d1f2ca1545613f33c8e5276696fe2ec698bc.zip | |
raveos-hyprland-theme: fix kitty.conf missing from skel, bump pkgrel=13
skel section created ~/.config/kitty dir but never copied kitty.conf into it.
Diffstat (limited to 'raveos-hyprland-theme')
| -rw-r--r-- | raveos-hyprland-theme/PKGBUILD | 2 | ||||
| -rw-r--r-- | raveos-hyprland-theme/raveos-hyprland-apply.sh | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/raveos-hyprland-theme/PKGBUILD b/raveos-hyprland-theme/PKGBUILD index 00983f0..8e5a792 100644 --- a/raveos-hyprland-theme/PKGBUILD +++ b/raveos-hyprland-theme/PKGBUILD @@ -1,6 +1,6 @@ pkgname=raveos-hyprland-theme pkgver=0.0.0 -pkgrel=12 +pkgrel=13 pkgdesc="RaveOS Hyprland theme payload and installer (includes DankMaterialShell)" arch=('any') url="https://raveos.local" diff --git a/raveos-hyprland-theme/raveos-hyprland-apply.sh b/raveos-hyprland-theme/raveos-hyprland-apply.sh index 44ac63d..93a0266 100644 --- a/raveos-hyprland-theme/raveos-hyprland-apply.sh +++ b/raveos-hyprland-theme/raveos-hyprland-apply.sh @@ -61,6 +61,10 @@ if [[ -f "${payload_dir}/background" ]]; then install -Dm644 "${payload_dir}/background" /etc/skel/.config/background fi +if [[ -f "${payload_dir}/kitty/kitty.conf" ]]; then + install -Dm644 "${payload_dir}/kitty/kitty.conf" /etc/skel/.config/kitty/kitty.conf +fi + for d in gtk-3.0 gtk-4.0 nwg-look Thunar xfce4 xsettingsd; do if [[ -d "${payload_dir}/${d}" ]]; then mkdir -p "/etc/skel/.config/${d}" |