18 lines
577 B
Plaintext
18 lines
577 B
Plaintext
|
# Read `man 5 sway-bar` for more information about this section.
|
||
|
bar {
|
||
|
position bottom
|
||
|
|
||
|
# When the status_command prints a new line to stdout, swaybar updates.
|
||
|
# The default just shows the current date and time.
|
||
|
#status_command while date +'%Y-%m-%d %I:%M:%S %p'; do sleep 1; done
|
||
|
status_command while ~/.config/sway/status.sh; do sleep 1; done
|
||
|
|
||
|
colors {
|
||
|
statusline #888888
|
||
|
background #000000
|
||
|
focused_workspace #888888 #888888 #000000
|
||
|
active_workspace #888888 #888888 #000000
|
||
|
inactive_workspace #6B313D #6B313D #bbbbbb
|
||
|
}
|
||
|
}
|