Patched DWM Flexipatch Build

- Wrote entire dwm-flexipatch build as org document
- Moved README and README.md into README.org
- Setup keybindings, colors, etc. for dwm-flexipatch
This commit is contained in:
Sravan Balaji
2021-06-15 21:05:31 -04:00
parent a42a81a711
commit 56537aa159
11 changed files with 8263 additions and 2261 deletions

View File

@@ -0,0 +1,16 @@
#!/bin/bash
# Check if dunst is running
if pgrep -x "dunst" > /dev/null
then
is_paused=$(dunstctl is-paused)
if [[ $is_paused == 'false' ]]; then
status_icon=" on"
elif [[ $is_paused == 'true' ]]; then
status_icon=" off"
fi
else
status_icon=" off"
fi
echo $status_icon