blob: b72386f1c41841173b7b8b51dfaff5fef7b6be26 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#! /bin/sh
./tsarc config font "Hack Nerd Font Mono:style=Regular"
./tsarc create test_comp
./tsarc set test_comp -text "Testing spaces"
./tsarc create sep
./tsarc set sep -text " | "
./tsarc create date
./tsarc set date -text "$(date)"
./tsarc layout \
-left test_comp sep date \
-right test_comp \
-center date
|