-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix apt pinning so that bullseye isn't used over stable, fixes #131
- Loading branch information
Showing
2 changed files
with
7 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#Stable defaults to 500, and higher priorities are used over lower | ||
|
||
Package: * | ||
Pin: release a=bullseye | ||
Pin: release a=testing | ||
Pin-Priority: 400 |
11 changes: 6 additions & 5 deletions
11
resources/InstallResources/xfce-config/xflock-xsecurelock.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,13 @@ | ||
diff --git a/usr/bin/xflock4 b/usr/bin/xflock4 | ||
index 32670f4..1e82a40 | ||
index d55cbf7..b7b28c6 | ||
--- a/usr/bin/xflock4 | ||
+++ b/usr/bin/xflock4 | ||
@@ -26,6 +26,7 @@ LOCK_CMD=$(xfconf-query -c xfce4-session -p /general/LockCommand) | ||
@@ -26,6 +26,7 @@ export PATH | ||
|
||
# Lock by xscreensaver or gnome-screensaver, if a respective daemon is running | ||
for lock_cmd in \ | ||
+ "env XSECURELOCK_PASSWORD_PROMPT=asterisks xsecurelock" \ | ||
"$LOCK_CMD" \ | ||
"xfce4-screensaver-command --lock" \ | ||
+ "env XSECURELOCK_PASSWORD_PROMPT=asterisks xsecurelock"\ | ||
"xscreensaver-command -lock" \ | ||
"light-locker-command --lock" \ | ||
"gnome-screensaver-command --lock" \ | ||
|