Initial commit for build of dwmblocks

This commit is contained in:
Alex Selimov 2024-01-25 19:34:10 -05:00
commit e60906dbc6
14 changed files with 416 additions and 0 deletions

12
scripts/bar_music.sh Executable file
View file

@ -0,0 +1,12 @@
#!/bin/bash
#First we get the next appointmen
var=$(mpc current);
if [ "$var" = "" ]; then
echo ""
else
echo "${var:0:30}"
fi