diff options
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/extra/202020 | 4 | ||||
-rwxr-xr-x | bin/guiscripts/fillpass | 7 |
2 files changed, 2 insertions, 9 deletions
diff --git a/bin/extra/202020 b/bin/extra/202020 index 51368fa..132d57b 100755 --- a/bin/extra/202020 +++ b/bin/extra/202020 @@ -3,9 +3,9 @@ while true do sleep 20m - mpv --volume=100 .local/share/sounds/ring1.ogg & + mpv --volume=100 .local/share/sounds/avert1.ogg & herbe '202020' 'avert!' sleep 20s - mpv --volume=100 .local/share/sounds/ring1.ogg & + mpv --volume=100 .local/share/sounds/avert2.ogg & herbe '202020' 'stop averting' & done diff --git a/bin/guiscripts/fillpass b/bin/guiscripts/fillpass index ea2246a..4aa62d5 100755 --- a/bin/guiscripts/fillpass +++ b/bin/guiscripts/fillpass @@ -1,10 +1,5 @@ #!/bin/sh -if [ "colemak" = "$(setxkbmap -query | awk '/^variant:/ {print $2}')" ] -then - cycleKB - cycle=1 -fi # assume we are using colemak pass="$( find "${PASSWORD_STORE_DIR:=~/src/password-store/}" -name "*.gpg" | @@ -19,5 +14,3 @@ if [ "$login" ] then printf '%s\t%s\n' "$login" "$password" | ydotool type -f - else printf '%s\n' "$password" | ydotool type -f - fi - -[ "$cycle" ] && cycleKB |