diff --git a/debian/changelog b/debian/changelog index e158dab..4ca7b1c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,27 @@ +pogmom-desktop (0.4.13) unstable; urgency=medium + + * enable allowing 'users' group to suspend without password + + -- Penelope Gwen Thu, 29 Jan 2026 17:31:06 -0800 + +pogmom-desktop (0.4.12) unstable; urgency=medium + + * rounded menu corners + + -- Penelope Gwen Mon, 10 Nov 2025 15:40:30 -0800 + +pogmom-desktop (0.4.11) unstable; urgency=medium + + * adjust coloring (i should really check these before uploading) + + -- Penelope Gwen Mon, 10 Nov 2025 15:31:12 -0800 + +pogmom-desktop (0.4.10) unstable; urgency=medium + + * fix qt6ct file installs + + -- Penelope Gwen Mon, 10 Nov 2025 15:15:31 -0800 + pogmom-desktop (0.4.9) unstable; urgency=medium * update qt6 stylings for clarity diff --git a/debian/install b/debian/install index b815771..80f5d4e 100644 --- a/debian/install +++ b/debian/install @@ -1,2 +1,5 @@ greetd/* usr/share/greetd/pogmom/ +qt6ct/colors/* usr/share/qt6ct/colors/ +qt6ct/qss/* usr/share/qt6ct/qss/ sway-run /usr/bin/ +polkit-rules/* /usr/share/polkit-1/rules.d/ diff --git a/polkit-rules/pogmom-desktop.rules b/polkit-rules/pogmom-desktop.rules new file mode 100644 index 0000000..1384f40 --- /dev/null +++ b/polkit-rules/pogmom-desktop.rules @@ -0,0 +1,6 @@ +polkit.addRule(function(action, subject) { + if (action.id == "org.freedesktop.login1.suspend" && + subject.isInGroup("users")) { + return polkit.Result.YES; + } +});