diff options
| author | ne_mene <[email protected]> | 2026-03-01 21:33:52 +0100 |
|---|---|---|
| committer | ne_mene <[email protected]> | 2026-03-01 21:33:52 +0100 |
| commit | 66625e33aa2a4b1eedb4e2a46d2092999d8d9da4 (patch) | |
| tree | 64d03d16538f645411e48c4b0ee72aeda01409a0 /examplebar.sh | |
| parent | 8ed3b9bfb2108ec51121160533e8bd93b356cc98 (diff) | |
| parent | 02c3289e75fa3926916465a47bbc0b889d105c4f (diff) | |
scary merge
Diffstat (limited to 'examplebar.sh')
| -rwxr-xr-x | examplebar.sh | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/examplebar.sh b/examplebar.sh index b72386f..4a30fcd 100755 --- a/examplebar.sh +++ b/examplebar.sh @@ -1,6 +1,7 @@ #! /bin/sh -./tsarc config font "Hack Nerd Font Mono:style=Regular" +# Put any monospace font here +./tsarc config font "Liberation Mono:style=Regular" ./tsarc create test_comp ./tsarc set test_comp -text "Testing spaces" @@ -9,9 +10,13 @@ ./tsarc set sep -text " | " ./tsarc create date -./tsarc set date -text "$(date)" ./tsarc layout \ -left test_comp sep date \ -right test_comp \ -center date + +while true; do + ./tsarc set date -text "$(date)" + sleep 1 +done |
