diff options
| author | Manuel Palenzuela <manuelpalenzuelamerino@gmail.com> | 2019-10-21 19:47:36 +0100 |
|---|---|---|
| committer | Manuel Palenzuela <manuelpalenzuelamerino@gmail.com> | 2019-10-21 19:47:36 +0100 |
| commit | a87e9dff442349acbc3656ec64fabd6ec286e888 (patch) | |
| tree | 82c544aab6b0e93348e1a632d129f33f3c6494ee /dwmbarrc | |
| parent | 21c6c1fcc85eca37c7c8b75dc3317d479ce857b1 (diff) | |
| parent | 6f0196f81fd3455532dd87fd31108ec85b85b69e (diff) | |
Merge branch 'master' of https://github.com/thytom/dwmbar
Diffstat (limited to 'dwmbarrc')
| -rwxr-xr-x | dwmbarrc | 16 |
1 files changed, 14 insertions, 2 deletions
@@ -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 |
