Initial commit

This commit is contained in:
2023-02-21 12:15:57 -08:00
commit a8d9901a57
9 changed files with 436 additions and 0 deletions

14
scripts/dwmblocks-volume Executable file
View File

@ -0,0 +1,14 @@
#!/usr/bin/env zsh
let volume="$(pamixer --get-volume)"
local icon
if [[ "$(pamixer --get-mute)" = "true" ]]; then
icon='ﱝ'
elif ((${volume} > 50)); then
icon='墳'
elif ((${volume} > 0)); then
icon='奔'
else
icon='奄'
fi
printf '%s%3d%%\n' "${icon}" "${volume}"