This commit is contained in:
Manuel Palenzuela 2019-10-21 19:47:36 +01:00
commit a87e9dff44
2 changed files with 15 additions and 3 deletions

2
dwmbar
View file

@ -1,7 +1,7 @@
#!/bin/bash
VERSION="0.0.1"
RC_LOCATION="/home/$USER/.config/dwmbar/dwmbarrc"
RC_LOCATION="./dwmbarrc"
if [[ -f $DEFAULT_RC_LOCATION ]]; then
>&2 echo "No dwmbarrc found."

View file

@ -1,10 +1,22 @@
#!/bin/bash
modules(){
MODULES_DIR="modules/"
SEPARATOR=" | "
MODULES="test archupdates weather date time"
run_modules(){
for module in $MODULES; do
[[ ! "$OUTPUT" = "" ]] && OUTPUT="$OUTPUT$SEPARATOR"
OUTPUT="$OUTPUT$(exec $MODULES_DIR$module)"
done
}
run(){
echo "Test"
run_modules
echo $OUTPUT
}
run