diff --git a/pika-hyprland-settings/debian/changelog b/pika-hyprland-settings/debian/changelog index f30a477..5b135e3 100644 --- a/pika-hyprland-settings/debian/changelog +++ b/pika-hyprland-settings/debian/changelog @@ -1,3 +1,9 @@ +pika-hyprland-settings (1.0.0-99pika2) lunar; urgency=medium + + * First + + -- ferrreo Sat, 01 Oct 2022 14:50:00 +0300 + pika-hyprland-settings (1.0.0-99pika1) lunar; urgency=medium * First diff --git a/pika-hyprland-settings/debian/control b/pika-hyprland-settings/debian/control index dbb7a20..0cab0b5 100644 --- a/pika-hyprland-settings/debian/control +++ b/pika-hyprland-settings/debian/control @@ -7,7 +7,6 @@ Build-Depends: debhelper-compat (= 13) Rules-Requires-Root: no Package: pika-hyprland-settings -Source: meta-hyprland Architecture: amd64 Depends: breeze, pika-theme Conflicts: pika-settings, pika-kde-settings diff --git a/pika-hyprland-settings/debian/postinst b/pika-hyprland-settings/debian/postinst index 6e3a9d0..3c9e08b 100755 --- a/pika-hyprland-settings/debian/postinst +++ b/pika-hyprland-settings/debian/postinst @@ -3,4 +3,11 @@ set -e cp -f /etc/skel/.config/examples/metadata.desktop /usr/share/plasma/desktoptheme/Orchis-dark/ -cp -f /etc/skel/.config/examples/.profile /etc/skel/ \ No newline at end of file +cp -f /etc/skel/.config/examples/.profile /etc/skel/ + +getent passwd | + while IFS=: read username x uid gid gecos home shell + do + [[ "$username" == root || ! -d "$home" ]] && continue + tar -cf - -C /etc/skel . | sudo -Hu "$username" tar --skip-old-files -xf - + done \ No newline at end of file