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.

10 lines
190 B

  1. #!/bin/bash
  2. if [ $(pgrep xautolock) ]
  3. then
  4. killall xautolock
  5. notify-send "🔓 Turning off xautolock"
  6. else
  7. xautolock -time 10 -locker slock &
  8. notify-send "🔒 Turning on xautolock"
  9. fi