my dotz
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add custom status bar;

j3s 0f77266e 7f57f860

+10 -1
+1 -1
.config/sway/config
··· 220 220 221 221 # When the status_command prints a new line to stdout, swaybar updates. 222 222 # The default just shows the current date and time. 223 - status_command while date +'%Y-%m-%d %l:%M:%S %p'; do sleep 1; done 223 + status_command statusbar 224 224 225 225 colors { 226 226 statusline #ffffff
+9
bin/statusbar
··· 1 + #!/bin/sh 2 + 3 + while true 4 + do 5 + time=$(date +"%A %Y-%m-%d %I:%M %p") 6 + time="$time $(date -u +"(%H:%M UTC)")" 7 + printf "%s\n" "${time}" 8 + sleep 10 9 + done