diff --git a/config/waybar/style.css b/config/waybar/style.css index 0a5bc3b..1286bc2 100644 --- a/config/waybar/style.css +++ b/config/waybar/style.css @@ -1,4 +1,7 @@ * { + background-color: @background; + color: @foreground; + border: none; border-radius: 0; min-height: 0; @@ -6,14 +9,18 @@ font-size: 12px; } -#workspaces { - margin-left: 7px; +.modules-left { + margin-left: 8px; +} + +.modules-right { + margin-right: 8px; } #workspaces button { all: initial; - padding: 2px 6px; - margin-right: 3px; + padding: 0 6px; + margin: 0 1.5px; } #custom-dropbox, @@ -26,7 +33,7 @@ #clock, #custom-power-menu { min-width: 12px; - margin-right: 13px; + margin: 0 10px; } #custom-expand-icon { diff --git a/install/network.sh b/install/network.sh index 5f06ce8..66b6c63 100644 --- a/install/network.sh +++ b/install/network.sh @@ -4,3 +4,13 @@ if ! command -v iwd &>/dev/null; then yay -S --noconfirm --needed iwd sudo systemctl enable --now iwd.service fi + +# Fix systemd-networkd-wait-online timeout for multiple interfaces +# Wait for any interface to be online rather than all interfaces +# https://wiki.archlinux.org/title/Systemd-networkd#Multiple_interfaces_that_are_not_connected_all_the_time +sudo mkdir -p /etc/systemd/system/systemd-networkd-wait-online.service.d +sudo tee /etc/systemd/system/systemd-networkd-wait-online.service.d/wait-for-only-one-interface.conf >/dev/null </dev/null <