From 1f87be591c7522a4ab5fa329a44fdbc1aa5bb453 Mon Sep 17 00:00:00 2001 From: cho Date: Mon, 10 Apr 2023 14:51:27 +0700 Subject: [PATCH] add sway bar config --- home/default/.config/sway/bar | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 home/default/.config/sway/bar diff --git a/home/default/.config/sway/bar b/home/default/.config/sway/bar new file mode 100644 index 0000000..8dd0be5 --- /dev/null +++ b/home/default/.config/sway/bar @@ -0,0 +1,17 @@ +# 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 + } +}