blob: 28f8d0ccf6f1fe26719e27c4d1d9f730dbf3e1a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#! /bin/sh
# Put any monospace font here
tsarc config font "Liberation Mono:style=Regular:size=9"
tsarc config height 16
tsarc config padding 4
tsarc config bg #FFFFFF
tsarc config bg #FF0000
tsarc set test_comp -text "Testing spaces"
tsarc set sep -text " | "
tsarc layout \
-left test_comp sep date \
-right test_comp \
-center date
while true; do
tsarc set date -text "$(date)"
sleep 1
done
|