Compare commits
2 commits
Author | SHA1 | Date | |
---|---|---|---|
|
499b3b5f13 | ||
|
59479a5207 |
4 changed files with 16 additions and 2 deletions
14
debian/changelog
vendored
14
debian/changelog
vendored
|
@ -1,4 +1,16 @@
|
||||||
pogmom-sway-base (0.1.2) UNRELEASED; urgency=medium
|
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
|
* add --force flag to update-alternatives
|
||||||
|
|
||||||
|
|
2
debian/install
vendored
2
debian/install
vendored
|
@ -1,2 +1,2 @@
|
||||||
greetd/* usr/share/greetd/pogmom/
|
greetd/* usr/share/greetd/pogmom/
|
||||||
sway-run /usr/bin/sway-run
|
sway-run /usr/bin/
|
||||||
|
|
1
debian/postinst
vendored
1
debian/postinst
vendored
|
@ -2,3 +2,4 @@
|
||||||
|
|
||||||
mkdir -p /etc/greetd
|
mkdir -p /etc/greetd
|
||||||
update-alternatives --install /etc/greetd/config.toml greetd /usr/share/greetd/pogmom/config.toml 30 --force
|
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
1
debian/postrm
vendored
|
@ -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
|
||||||
|
|
Reference in a new issue