diff options
author | Vidhu Kant Sharma <bokuwakanojogahoshii@yahoo.com> | 2021-02-18 21:25:54 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <bokuwakanojogahoshii@yahoo.com> | 2021-02-18 21:25:54 +0530 |
commit | aa1e80d0113585a8b63c2c2181848150351616ed (patch) | |
tree | dfa68380be50e0ec07e024a65776358185e2a752 /scripts/dnd | |
parent | bd12394a8a719b09fb5730ca81db0ee68d9014c8 (diff) |
played around with XMonad TreeSelect
Diffstat (limited to 'scripts/dnd')
-rwxr-xr-x | scripts/dnd | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/scripts/dnd b/scripts/dnd deleted file mode 100755 index 92722f7f..00000000 --- a/scripts/dnd +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/zsh -STATUS=$(</tmp/dnd_status) - -if [ $(</tmp/dnd_status) = "off" ]; then - notify-send.py a --hint boolean:deadd-notification-center:true \ - string:type:pausePopups - echo "on" > /tmp/dnd_status -elif [ $(</tmp/dnd_status) = "on" ]; then - notify-send.py a --hint boolean:deadd-notification-center:true \ - string:type:unpausePopups - echo "off" > /tmp/dnd_status -fi - |