You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
468 B
19 lines
468 B
#!/usr/bin/env zsh |
|
|
|
function parse_actions |
|
{ |
|
while read action _; do |
|
case $action in |
|
(LOCK|BLANK) |
|
/usr/bin/setxkbmap us -option |
|
/usr/bin/notify-send DUNST_COMMAND_PAUSE |
|
;; |
|
(UNBLANK) |
|
/home/von/vscripts/mykblayouts |
|
/usr/bin/notify-send DUNST_COMMAND_RESUME |
|
;; |
|
esac |
|
done |
|
} |
|
|
|
/usr/bin/xscreensaver-command -watch | parse_actions
|
|
|