diff --git a/README.org b/README.org index 08f7acb..b7c5ad7 100644 --- a/README.org +++ b/README.org @@ -531,23 +531,23 @@ killall waybar "modules-left": [ "custom/power-menu", "dwl/tags", - "tray", - ], - "modules-center": [ - "group/dunst", - "pulseaudio", "group/media-playing", ], + "modules-center": [ + "tray", + ], "modules-right": [ + "pulseaudio", "custom/system76-power", "cpu", "memory", "disk", "battery", "clock", + "group/dunst", ], "group/media-playing": { - "orientation": "horizontal", + "orientation": "inherit", "modules": [ "custom/media-playing-change", "custom/media-playing-prev", @@ -556,7 +556,7 @@ killall waybar ], }, "group/dunst": { - "orientation": "horizontal", + "orientation": "inherit", "modules": [ "custom/dunst-status", "custom/dunst-history-view", @@ -607,7 +607,7 @@ window#waybar { #+BEGIN_SRC css :tangle waybar/style.css #battery { - background: #50fa7b; + background: #ff79c6; color: #282a36; } #+END_SRC @@ -629,7 +629,7 @@ window#waybar { #+BEGIN_SRC css :tangle waybar/style.css #cpu { - background: #ff79c6; + background: #ffb86c; color: #282a36; } #+END_SRC @@ -855,19 +855,19 @@ fi #+BEGIN_SRC css :tangle waybar/style.css #custom-media-playing-change { - background: #f1fa8c; + background: #50fa7b; color: #282a36; } #custom-media-playing-prev { - background: #f1fa8c; + background: #50fa7b; color: #282a36; } #custom-media-playing-play-pause { - background: #f1fa8c; + background: #50fa7b; color: #282a36; } #custom-media-playing-next { - background: #f1fa8c; + background: #50fa7b; color: #282a36; } #+END_SRC @@ -1017,7 +1017,7 @@ echo '{"text":"'$mediaSourceIcon'","tooltip":"󰝚\t'$title'\r󰠃\t'$artist'\r #+BEGIN_SRC css :tangle waybar/style.css #pulseaudio { - background: #8be9fd; + background: #ff5555; color: #282a36; } #+END_SRC @@ -1040,7 +1040,7 @@ echo '{"text":"'$mediaSourceIcon'","tooltip":"󰝚\t'$title'\r󰠃\t'$artist'\r #+BEGIN_SRC css :tangle waybar/style.css #custom-system76-power { - background: #ffb86c; + background: #50fa7b; color: #282a36; } #+END_SRC diff --git a/waybar/config.jsonc b/waybar/config.jsonc index 7765e8e..408f791 100644 --- a/waybar/config.jsonc +++ b/waybar/config.jsonc @@ -15,23 +15,23 @@ "modules-left": [ "custom/power-menu", "dwl/tags", - "tray", - ], - "modules-center": [ - "group/dunst", - "pulseaudio", "group/media-playing", ], + "modules-center": [ + "tray", + ], "modules-right": [ + "pulseaudio", "custom/system76-power", "cpu", "memory", "disk", "battery", "clock", + "group/dunst", ], "group/media-playing": { - "orientation": "horizontal", + "orientation": "inherit", "modules": [ "custom/media-playing-change", "custom/media-playing-prev", @@ -40,7 +40,7 @@ ], }, "group/dunst": { - "orientation": "horizontal", + "orientation": "inherit", "modules": [ "custom/dunst-status", "custom/dunst-history-view", diff --git a/waybar/style.css b/waybar/style.css index c25d428..2cebd5a 100644 --- a/waybar/style.css +++ b/waybar/style.css @@ -11,12 +11,12 @@ window#waybar { } #battery { - background: #50fa7b; + background: #ff79c6; color: #282a36; } #cpu { - background: #ff79c6; + background: #ffb86c; color: #282a36; } @@ -70,19 +70,19 @@ window#waybar { } #custom-media-playing-change { - background: #f1fa8c; + background: #50fa7b; color: #282a36; } #custom-media-playing-prev { - background: #f1fa8c; + background: #50fa7b; color: #282a36; } #custom-media-playing-play-pause { - background: #f1fa8c; + background: #50fa7b; color: #282a36; } #custom-media-playing-next { - background: #f1fa8c; + background: #50fa7b; color: #282a36; } @@ -92,12 +92,12 @@ window#waybar { } #pulseaudio { - background: #8be9fd; + background: #ff5555; color: #282a36; } #custom-system76-power { - background: #ffb86c; + background: #50fa7b; color: #282a36; }