Compare commits

...

3 commits
0.1.1 ... main

Author SHA1 Message Date
Penelope Gwen
499b3b5f13 correct update-alternatives 2024-06-27 03:46:37 -06:00
Penelope Gwen
59479a5207 corrected sway-run install path 2024-06-03 16:26:57 -06:00
Penelope Gwen
0a73b74ee0 version bump 2024-06-03 16:13:48 -06:00
4 changed files with 22 additions and 2 deletions

18
debian/changelog vendored
View file

@ -1,3 +1,21 @@
pogmom-sway-base (0.1.4) unstable; urgency=medium
* correctly link /etc/greetd/environments
-- Penelope Gwen <support@pogmom.me> Thu, 27 Jun 2024 03:44:54 -0600
pogmom-sway-base (0.1.3) unstable; urgency=medium
* fixed file path for sway-run
-- Penelope Gwen <support@pogmom.me> Mon, 03 Jun 2024 16:26:18 -0600
pogmom-sway-base (0.1.2) unstable; urgency=medium
* add --force flag to update-alternatives
-- Penelope Gwen <support@pogmom.me> Mon, 03 Jun 2024 16:13:32 -0600
pogmom-sway-base (0.1.1) unstable; urgency=medium pogmom-sway-base (0.1.1) unstable; urgency=medium
* *

2
debian/install vendored
View file

@ -1,2 +1,2 @@
greetd/* usr/share/greetd/pogmom/ greetd/* usr/share/greetd/pogmom/
sway-run /usr/bin/sway-run sway-run /usr/bin/

3
debian/postinst vendored
View file

@ -1,4 +1,5 @@
#!/bin/bash #!/bin/bash
mkdir -p /etc/greetd mkdir -p /etc/greetd
update-alternatives --install /etc/greetd/config.toml greetd /usr/share/greetd/pogmom/config.toml 30 update-alternatives --install /etc/greetd/config.toml greetd /usr/share/greetd/pogmom/config.toml 30 --force
update-alternatives --install /etc/greetd/environments greetd_envs /usr/share/greetd/pogmom/environments 30 --force

1
debian/postrm vendored
View file

@ -1,3 +1,4 @@
#!/bin/bash #!/bin/bash
update-alternatives --remove greetd /usr/share/greetd/pogmom/config.toml update-alternatives --remove greetd /usr/share/greetd/pogmom/config.toml
update-alternatives --remove greetd_envs /usr/share/greetd/pogmom/environments