Compare commits

...
Sign in to create a new pull request.

2 commits

Author SHA1 Message Date
89e7f586a6 v1.2.1 2025-06-06 20:33:55 +04:00
bada3caea1 Fix screenlocker 2025-06-04 15:21:48 +04:00
3 changed files with 10 additions and 5 deletions

6
debian/changelog vendored
View file

@ -1,3 +1,9 @@
tileos-settings-river (1.2.1~tileos) unstable; urgency=medium
* Fix screnlocker
-- Aleksey Samoilov <samoilov.lex@gmail.com> Fri, 06 Jun 2025 20:33:13 +0400
tileos-settings-river (1.2.0~tileos) unstable; urgency=medium
* Add mic-mute.sh script for toggling microphone on/off

View file

@ -1,6 +1,5 @@
timeout 240 'light -G > /tmp/brightness && light -S 10' resume 'light -S $([ -f /tmp/brightness ] && cat /tmp/brightness || echo 100%)'
timeout 300 ~/.config/swaylock/lock.sh
timeout 600 'swaymsg "output * power off"' resume 'swaymsg "output * power on"'
timeout 300 '/usr/share/river/scripts/lock.sh'
timeout 600 'wlopm --off \*' resume 'wlopm --on \*'
before-sleep 'playerctl pause'
before-sleep ~/.config/swaylock/lock.sh
lock ~/.config/swaylock/lock.sh
before-sleep '/usr/share/river/scripts/lock.sh && sleep 2'

View file

@ -1,7 +1,7 @@
#!/bin/bash
USER_SCRIPT="$HOME/.config/swaylock/lock.sh"
GLOB_SCRIPT="/usr/share/sway/scripts/swaylock.sh"
GLOB_SCRIPT="/usr/share/river/scripts/swaylock.sh"
if [[ -x "$USER_SCRIPT" ]]; then
"$USER_SCRIPT"