summaryrefslogtreecommitdiff
path: root/home-modules/desktop
diff options
context:
space:
mode:
Diffstat (limited to 'home-modules/desktop')
-rw-r--r--home-modules/desktop/default.nix8
-rw-r--r--home-modules/desktop/hyprland.nix407
-rw-r--r--home-modules/desktop/wayland/default.nix8
-rw-r--r--home-modules/desktop/wayland/mako.nix14
-rw-r--r--home-modules/desktop/wayland/waybar.nix220
5 files changed, 359 insertions, 298 deletions
diff --git a/home-modules/desktop/default.nix b/home-modules/desktop/default.nix
index d02f217..6e88a5c 100644
--- a/home-modules/desktop/default.nix
+++ b/home-modules/desktop/default.nix
@@ -1,4 +1,8 @@
-{pkgs, hostconfig, ...}: {
- imports = [./wayland ./hyprland.nix];
+{ pkgs, hostconfig, ... }:
+{
+ imports = [
+ ./wayland
+ ./hyprland.nix
+ ];
}
diff --git a/home-modules/desktop/hyprland.nix b/home-modules/desktop/hyprland.nix
index 6f36b2f..f714650 100644
--- a/home-modules/desktop/hyprland.nix
+++ b/home-modules/desktop/hyprland.nix
@@ -1,4 +1,10 @@
-{lib, pkgs, config, hostconfig , ...}:
+{
+ lib,
+ pkgs,
+ config,
+ hostconfig,
+ ...
+}:
with lib;
{
config = mkIf hostconfig.addons.desktop.hyprland.enable {
@@ -7,248 +13,261 @@ with lib;
wofi
hyprshot
networkmanagerapplet
- xdg-desktop-portal-gnome
+ xdg-desktop-portal-gnome
xdg-desktop-portal-hyprland
wl-clipboard
brightnessctl
];
- services.hyprpolkitagent.enable = true;
+ services.hyprpolkitagent.enable = true;
homeprogs.waybar.enable = true;
homeprogs.mako.enable = true;
# Environment variables for hyprland.
# This can be used to configure wayland/hyprland-specific things
home.file.".config/uwsm/env-hyprland".text = ''
- export XDG_SESSION_TYPE=wayland
- export GDK_BACKEND=wayland
- export GTK_USE_PORTAL=1
- export QT_QPA_PLATFORM=wayland;xcb
- export QT_STYLE_OVERRIDE=kvantum
- export QT_QPA_PLATFORM_THEME=kvantum
- export QT_WAYLAND_DISABLE_WINDOWDECORATION=1
- export QT_AUTO_SCREEN_SCALE_FACTOR=1
- export MOZ_ENABLE_WAYLAND=1
- export -n GTK_IM_MODULE
+ export XDG_SESSION_TYPE=wayland
+ export GDK_BACKEND=wayland
+ export GTK_USE_PORTAL=1
+ export QT_QPA_PLATFORM=wayland;xcb
+ export QT_STYLE_OVERRIDE=kvantum
+ export QT_QPA_PLATFORM_THEME=kvantum
+ export QT_WAYLAND_DISABLE_WINDOWDECORATION=1
+ export QT_AUTO_SCREEN_SCALE_FACTOR=1
+ export MOZ_ENABLE_WAYLAND=1
+ export -n GTK_IM_MODULE
'';
- # Hyprland
+ # Hyprland
wayland.windowManager.hyprland = {
- systemd.enable = false;
- enable = true;
- xwayland.enable = true;
- settings = {
- exec-once = map (s: "uwsm app -- " + s) [
- "kitty &"
- "waybar &"
- "nm-applet &"
- "blueman-tray &"
- "blueman-applet &"
- "hyprctl setcursor Catppuccin-Mocha-Dark-Cursors 24"
- "kdeconnect-indicator &"
- # "fcitx5 -d"
- ] ++ [
+ systemd.enable = false;
+ enable = true;
+ xwayland.enable = true;
+ settings = {
+ exec-once =
+ map (s: "uwsm app -- " + s) [
+ "kitty &"
+ "waybar &"
+ "nm-applet &"
+ "blueman-tray &"
+ "blueman-applet &"
+ "hyprctl setcursor Catppuccin-Mocha-Dark-Cursors 24"
+ "kdeconnect-indicator &"
+ # "fcitx5 -d"
+ ]
+ ++ [
"systemctl --user start hypridle.service"
"systemctl --user start hyprpaper.service"
"systemctl --user start hyprpolkitagent.service"
"uwsm finalize QT_QPA_PLATFORM QT_PLUGIN_PATH"
- ];
- general = {
- gaps_in = 3;
- gaps_out = 8;
- border_size = 1;
+ ];
+ general = {
+ gaps_in = 3;
+ gaps_out = 8;
+ border_size = 1;
- "col.active_border" = "rgba(ed45b8ee) rgba(611449ee) 45deg";
- "col.inactive_border" = "rgba(595959aa)";
+ "col.active_border" = "rgba(ed45b8ee) rgba(611449ee) 45deg";
+ "col.inactive_border" = "rgba(595959aa)";
+
+ resize_on_border = true;
+ allow_tearing = true;
+ layout = "dwindle";
+ };
+
+ animations = {
+ enabled = true;
+ bezier = "myBezier, 0.05, 0.9, 0.1, 1.05";
+ animation = [
+ "windows, 1, 7, myBezier"
+ "windowsOut, 1, 7, default, popin 80%"
+ "border, 1, 10, default"
+ "borderangle, 1, 8, default"
+ "fade, 1, 7, default"
+ "workspaces, 1, 6, default"
+ ];
+ };
- resize_on_border = true;
- allow_tearing = true;
- layout = "dwindle";
- };
+ decoration = {
+ rounding = 10;
- animations = {
- enabled = true;
- bezier = "myBezier, 0.05, 0.9, 0.1, 1.05";
- animation = [
- "windows, 1, 7, myBezier"
- "windowsOut, 1, 7, default, popin 80%"
- "border, 1, 10, default"
- "borderangle, 1, 8, default"
- "fade, 1, 7, default"
- "workspaces, 1, 6, default"
- ];
- };
-
- decoration = {
- rounding = 10;
+ # Change transparency of focused and unfocused windows
+ active_opacity = "1.0";
+ inactive_opacity = "1.0";
- # Change transparency of focused and unfocused windows
- active_opacity = "1.0";
- inactive_opacity = "1.0";
+ # drop_shadow = true;
+ # shadow_range = 4;
+ # shadow_render_power = 3;
+ # "col.shadow" = "rgba(1a1a1aee)";
- # drop_shadow = true;
- # shadow_range = 4;
- # shadow_render_power = 3;
- # "col.shadow" = "rgba(1a1a1aee)";
+ # https://wiki.hyprland.org/Configuring/Variables/#blur
+ blur = {
+ enabled = true;
+ size = 3;
+ passes = 1;
- # https://wiki.hyprland.org/Configuring/Variables/#blur
- blur = {
- enabled = true;
- size = 3;
- passes = 1;
-
- vibrancy = "0.1696";
- };
- };
- dwindle = {
- pseudotile = true;
- preserve_split = true;
- };
+ vibrancy = "0.1696";
+ };
+ };
+ dwindle = {
+ pseudotile = true;
+ preserve_split = true;
+ };
- #master = {
- # new_is_master = true;
- #};
- input = {
- kb_layout = "pl";
- kb_variant = "";
- kb_model = "";
- kb_options = "";
- kb_rules = "";
+ #master = {
+ # new_is_master = true;
+ #};
+ input = {
+ kb_layout = "pl";
+ kb_variant = "";
+ kb_model = "";
+ kb_options = "";
+ kb_rules = "";
- follow_mouse = 1;
+ follow_mouse = 1;
- sensitivity = 0; # -1.0 - 1.0, 0 means no modification.
+ sensitivity = 0; # -1.0 - 1.0, 0 means no modification.
- touchpad = {
- natural_scroll = true;
- };
+ touchpad = {
+ natural_scroll = true;
};
- # Deprecated
- # gestures = {
- # workspace_swipe = true;
- # };
- misc = {
- force_default_wallpaper = "-1"; # Set to 0 or 1 to disable the anime mascot wallpapers
- disable_hyprland_logo = false; # If true disables the random hyprland logo / anime girl background. :(
- };
- monitor= [ ",preferred,auto,1" ];
-
- # Mod key
- "$mod" = "SUPER";
-
- # Programs
- "$terminal" = "kitty";
- "$fileManager" = "thunar";
- "$menu" = "wofi --show drun";
- "$screenshot" = "hyprshot -m region -f screenshots/screenshot_$(date +'%y-%m-%d_%H-%M-%S').png";
+ };
+ # Deprecated
+ # gestures = {
+ # workspace_swipe = true;
+ # };
+ misc = {
+ force_default_wallpaper = "-1"; # Set to 0 or 1 to disable the anime mascot wallpapers
+ disable_hyprland_logo = false; # If true disables the random hyprland logo / anime girl background. :(
+ };
+ monitor = [ ",preferred,auto,1" ];
+
+ # Mod key
+ "$mod" = "SUPER";
- bind = [
- # Example binds, see https://wiki.hyprland.org/Configuring/Binds/ for more
- "$mod, RETURN, exec, $terminal"
- "$mod, Q, killactive,"
- "$mod SHIFT, M, exec, uwsm stop"
- "$mod, E, exec, uwsm app -- $fileManager"
- "$mod, V, togglefloating,"
- "$mod, R, exec, uwsm app -- $menu"
- "$mod, P, pseudo"
- "$mod, J, togglesplit"
- "$mod, L, exec, uwsm app -- hyprlock"
- ",Print, exec, uwsm app -- $screenshot "
+ # Programs
+ "$terminal" = "kitty";
+ "$fileManager" = "thunar";
+ "$menu" = "wofi --show drun";
+ "$screenshot" = "hyprshot -m region -f screenshots/screenshot_$(date +'%y-%m-%d_%H-%M-%S').png";
- # Move focus with mod + arrow keys
- "$mod, left, movefocus, l"
- "$mod, right, movefocus, r"
- "$mod, up, movefocus, u"
- "$mod, down, movefocus, d"
+ bind = [
+ # Example binds, see https://wiki.hyprland.org/Configuring/Binds/ for more
+ "$mod, RETURN, exec, $terminal"
+ "$mod, Q, killactive,"
+ "$mod SHIFT, M, exec, uwsm stop"
+ "$mod, E, exec, uwsm app -- $fileManager"
+ "$mod, V, togglefloating,"
+ "$mod, R, exec, uwsm app -- $menu"
+ "$mod, P, pseudo"
+ "$mod, J, togglesplit"
+ "$mod, L, exec, uwsm app -- hyprlock"
+ ",Print, exec, uwsm app -- $screenshot "
- # Example special workspace (scratchpad)
- "$mod, S, togglespecialworkspace, magic"
- "$mod SHIFT, S, movetoworkspace, special:magic"
+ # Move focus with mod + arrow keys
+ "$mod, left, movefocus, l"
+ "$mod, right, movefocus, r"
+ "$mod, up, movefocus, u"
+ "$mod, down, movefocus, d"
- # Scroll through existing workspaces with mod + scroll
- "$mod, mouse_down, workspace, e+1"
- "$mod, mouse_up, workspace, e-1"
- ] ++ (
+ # Example special workspace (scratchpad)
+ "$mod, S, togglespecialworkspace, magic"
+ "$mod SHIFT, S, movetoworkspace, special:magic"
+
+ # Scroll through existing workspaces with mod + scroll
+ "$mod, mouse_down, workspace, e+1"
+ "$mod, mouse_up, workspace, e-1"
+ ]
+ ++ (
# workspaces
- builtins.concatLists (builtins.genList (
- x: let
- ws = let
- c = (x + 1) / 10;
- in
+ builtins.concatLists (
+ builtins.genList (
+ x:
+ let
+ ws =
+ let
+ c = (x + 1) / 10;
+ in
builtins.toString (x + 1 - (c * 10));
- in [
+ in
+ [
# binds $mod + [shift +] {1..10} to [move to] workspace {1..10}
"$mod, ${ws}, workspace, ${toString (x + 1)}"
"$mod SHIFT, ${ws}, movetoworkspace, ${toString (x + 1)}"
-
+
# Move workspace {1..10} to current monitor
- "CTRL ALT $mod , ${ws}, focusworkspaceoncurrentmonitor, ${toString(x + 1)}"
+ "CTRL ALT $mod , ${ws}, focusworkspaceoncurrentmonitor, ${toString (x + 1)}"
]
- )
- 10)
- ) ++ (
- # Monitor {0..4} --> Key {1..5}
- builtins.concatLists (builtins.genList (
- x: let
- mon = builtins.toString(x);
- key = builtins.toString(x + 1);
- in [
-
+ ) 10
+ )
+ )
+ ++ (
+ # Monitor {0..4} --> Key {1..5}
+ builtins.concatLists (
+ builtins.genList (
+ x:
+ let
+ mon = builtins.toString (x);
+ key = builtins.toString (x + 1);
+ in
+ [
+
# Move current workspace to a monitor {1..4}
"CTRL ALT SHIFT $mod, ${key}, movecurrentworkspacetomonitor, ${mon} "
- ]
- ) 4));
+ ]
+ ) 4
+ )
+ );
- bindm = [
- "$mod, mouse:272, movewindow"
- "$mod, mouse:273, resizewindow"
- ];
-
- bindl = [
- "$mod, O, exec, sleep 1 && hyprctl dispatch dpms toggle"
- ] ++ (lib.optionals config.homeapps.presets.multimedia.enable [
- # Playerctl binds if playerctl is enabled
- " , XF86AudioNext, exec, playerctl next"
- " , XF86AudioPause, exec, playerctl play-pause"
- " , XF86AudioPlay, exec, playerctl play-pause"
- " , XF86AudioPrev, exec, playerctl previous"
- ]);
+ bindm = [
+ "$mod, mouse:272, movewindow"
+ "$mod, mouse:273, resizewindow"
+ ];
- bindel = [
- # Laptop multimedia keys for volume and LCD brightness
- " ,XF86AudioRaiseVolume, exec, wpctl set-volume -l 1 @DEFAULT_AUDIO_SINK@ 5%+"
- " ,XF86AudioLowerVolume, exec, wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%-"
- " ,XF86AudioMute, exec, wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle"
- " ,XF86AudioMicMute, exec, wpctl set-mute @DEFAULT_AUDIO_SOURCE@ toggle"
- " ,XF86MonBrightnessUp, exec, brightnessctl -e4 -n2 set 5%+"
- " ,XF86MonBrightnessDown, exec, brightnessctl -e4 -n2 set 5%-"
- ];
+ bindl = [
+ "$mod, O, exec, sleep 1 && hyprctl dispatch dpms toggle"
+ ]
+ ++ (lib.optionals config.homeapps.presets.multimedia.enable [
+ # Playerctl binds if playerctl is enabled
+ " , XF86AudioNext, exec, playerctl next"
+ " , XF86AudioPause, exec, playerctl play-pause"
+ " , XF86AudioPlay, exec, playerctl play-pause"
+ " , XF86AudioPrev, exec, playerctl previous"
+ ]);
+ bindel = [
+ # Laptop multimedia keys for volume and LCD brightness
+ " ,XF86AudioRaiseVolume, exec, wpctl set-volume -l 1 @DEFAULT_AUDIO_SINK@ 5%+"
+ " ,XF86AudioLowerVolume, exec, wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%-"
+ " ,XF86AudioMute, exec, wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle"
+ " ,XF86AudioMicMute, exec, wpctl set-mute @DEFAULT_AUDIO_SOURCE@ toggle"
+ " ,XF86MonBrightnessUp, exec, brightnessctl -e4 -n2 set 5%+"
+ " ,XF86MonBrightnessDown, exec, brightnessctl -e4 -n2 set 5%-"
+ ];
- windowrulev2 = [
- "suppressevent maximize, class:.*" # You'll probably like this.
- ];
+ windowrulev2 = [
+ "suppressevent maximize, class:.*" # You'll probably like this.
+ ];
- source = [
- "~/.config/hypr/hypr_test.conf"
- ];
- };
- };
+ source = [
+ "~/.config/hypr/hypr_test.conf"
+ ];
+ };
+ };
services.hyprpaper = {
- enable = true;
+ enable = true;
settings = {
ipc = "on";
splash = false;
splash_offset = 2.0;
preload = [ "${./wallpaper.png}" ];
- wallpaper= [ ",${./wallpaper.png}" ];
+ wallpaper = [ ",${./wallpaper.png}" ];
};
- };
+ };
programs.hyprlock = {
- enable=true;
+ enable = true;
settings = {
general = {
disable_loading_bar = true;
@@ -283,25 +302,25 @@ with lib;
};
};
- services.hypridle.enable = true;
+ services.hypridle.enable = true;
services.hypridle.settings = {
general = {
- lock_cmd ="pidof hyprlock || hyprlock";
- before_sleep_cmd="loginctl lock-session";
- ignore_dbus_inhibit=false;
- after_sleep_cmd="hyprctl_dispatch dpms on";
+ lock_cmd = "pidof hyprlock || hyprlock";
+ before_sleep_cmd = "loginctl lock-session";
+ ignore_dbus_inhibit = false;
+ after_sleep_cmd = "hyprctl_dispatch dpms on";
};
listener = [
{
timeout = 120;
- on-timeout = "hyprlock";
- }
+ on-timeout = "hyprlock";
+ }
{
timeout = 300;
on-timeout = "hyprctl dispatch dpms off";
- on-resume = "hyprctl dispatch dpms on";
+ on-resume = "hyprctl dispatch dpms on";
}
];
};
- };
+ };
}
diff --git a/home-modules/desktop/wayland/default.nix b/home-modules/desktop/wayland/default.nix
index 9be2fe9..ebf5439 100644
--- a/home-modules/desktop/wayland/default.nix
+++ b/home-modules/desktop/wayland/default.nix
@@ -1,3 +1,7 @@
-{pkgs, hostconfig, ...}: {
- imports = [./waybar.nix ./mako.nix];
+{ pkgs, hostconfig, ... }:
+{
+ imports = [
+ ./waybar.nix
+ ./mako.nix
+ ];
}
diff --git a/home-modules/desktop/wayland/mako.nix b/home-modules/desktop/wayland/mako.nix
index 15c7969..7dac41c 100644
--- a/home-modules/desktop/wayland/mako.nix
+++ b/home-modules/desktop/wayland/mako.nix
@@ -1,12 +1,18 @@
-{pkgs, config, hostconfig, lib,...}: {
+{
+ pkgs,
+ config,
+ hostconfig,
+ lib,
+ ...
+}:
+{
options.homeprogs.mako.enable = lib.mkEnableOption "Enable Mako notification manager";
config = lib.mkIf config.homeprogs.mako.enable {
services.mako = {
enable = true;
};
- xdg.configFile."mako/config".source = ./mako.ini;
-
- };
+ xdg.configFile."mako/config".source = ./mako.ini;
+ };
}
diff --git a/home-modules/desktop/wayland/waybar.nix b/home-modules/desktop/wayland/waybar.nix
index 5f3c532..6088cee 100644
--- a/home-modules/desktop/wayland/waybar.nix
+++ b/home-modules/desktop/wayland/waybar.nix
@@ -1,120 +1,141 @@
-{pkgs, hostconfig, lib, config,...}: {
+{
+ pkgs,
+ hostconfig,
+ lib,
+ config,
+ ...
+}:
+{
options.homeprogs.waybar.enable = lib.mkEnableOption "Enable waybar";
config = lib.mkIf config.homeprogs.waybar.enable {
- programs.waybar = {
- enable = true;
- settings = [{
- layer = "top";
- position = "top";
- height = 30;
- spacing = 6;
- modules-left = [
- "hyprland/workspaces"
- "hyprland/window"
- ];
+ programs.waybar = {
+ enable = true;
+ settings = [
+ {
+ layer = "top";
+ position = "top";
+ height = 30;
+ spacing = 6;
+ modules-left = [
+ "hyprland/workspaces"
+ "hyprland/window"
+ ];
- modules-center = [
- "clock"
- "hyprland/language"
- "tray"
- "battery"
- ];
+ modules-center = [
+ "clock"
+ "hyprland/language"
+ "tray"
+ "battery"
+ ];
- modules-right = [
- "idle_inhibitor"
- "wireplumber"
- "network"
- "cpu"
- "memory"
- "disk"
- "temperature"
- "backlight"
- ];
- wireplumber = {
- scroll-step = 1; #%, can be a float
+ modules-right = [
+ "idle_inhibitor"
+ "wireplumber"
+ "network"
+ "cpu"
+ "memory"
+ "disk"
+ "temperature"
+ "backlight"
+ ];
+ wireplumber = {
+ scroll-step = 1; # %, can be a float
format = "{volume}% ";
format-muted = "Muted";
on-click = "wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle";
- on-click-right = "pavucontrol";
- };
+ on-click-right = "pavucontrol";
+ };
- network = {
+ network = {
# interface = "wlp2*"; # (Optional) To force the use of this interface
format-wifi = "({signalStrength}%) ";
format-ethernet = "{ifname} ";
tooltip-format = "{ifname} via {gwaddr} ";
format-linked = "{ifname} (No IP) ";
format-disconnected = "Disconnected ⚠";
- format-alt= "{essid}: {ipaddr}/{cidr}";
- };
+ format-alt = "{essid}: {ipaddr}/{cidr}";
+ };
- "hyprland/workspaces" = {
- all-outputs = false;
- active-only = false;
- format = "{name}";
- format-icons = {
- urgent = "";
- focused = "";
- default = "";
- };
- };
-
- "hyprland/window" = {
- max-length = 200;
- separate-outputs = true;
- };
+ "hyprland/workspaces" = {
+ all-outputs = false;
+ active-only = false;
+ format = "{name}";
+ format-icons = {
+ urgent = "";
+ focused = "";
+ default = "";
+ };
+ };
+ "hyprland/window" = {
+ max-length = 200;
+ separate-outputs = true;
+ };
- keyboard-state = {
- numlock = false;
- format = "{name} {icon}";
- format-icons = {
+ keyboard-state = {
+ numlock = false;
+ format = "{name} {icon}";
+ format-icons = {
locked = "";
unlocked = "";
+ };
};
- };
- idle_inhibitor = {
- format = "{icon}";
- format-icons = {
+ idle_inhibitor = {
+ format = "{icon}";
+ format-icons = {
activated = "";
deactivated = "";
+ };
};
- };
- tray = {
- icon-size = 21;
- spacing = 10;
- };
- clock = {
- timezone = "Europe/Amsterdam";
- tooltip-format = "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>";
- format-alt = "{:%Y-%m-%d}";
- };
- cpu = {
- format = "{usage}% ";
- tooltip = false;
- };
- memory = {
- format = "{}% ";
- };
- temperature = {
- thermal-zone = 1;
- # hwmon-path = "/sys/class/hwmon/hwmon2/temp1_input";
- critical-threshold = 80;
- # format-critical = "{temperatureC}°C {icon}";
- format = "{temperatureC}°C {icon}";
- format-icons = ["" "" ""];
- };
- "backlight" = {
- # device = "acpi_video1";
- format = "{percent}{icon}";
- format-icons = ["" "" "" "" "" "" "" "" ""];
- };
- battery = {
+ tray = {
+ icon-size = 21;
+ spacing = 10;
+ };
+ clock = {
+ timezone = "Europe/Amsterdam";
+ tooltip-format = "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>";
+ format-alt = "{:%Y-%m-%d}";
+ };
+ cpu = {
+ format = "{usage}% ";
+ tooltip = false;
+ };
+ memory = {
+ format = "{}% ";
+ };
+ temperature = {
+ thermal-zone = 1;
+ # hwmon-path = "/sys/class/hwmon/hwmon2/temp1_input";
+ critical-threshold = 80;
+ # format-critical = "{temperatureC}°C {icon}";
+ format = "{temperatureC}°C {icon}";
+ format-icons = [
+ ""
+ ""
+ ""
+ ];
+ };
+ "backlight" = {
+ # device = "acpi_video1";
+ format = "{percent}{icon}";
+ format-icons = [
+ ""
+ ""
+ ""
+ ""
+ ""
+ ""
+ ""
+ ""
+ ""
+ ];
+ };
+ battery = {
states = {
- # good = 95;
- warning = 30;
- critical = 15;
+ # good = 95;
+ warning = 30;
+ critical = 15;
};
format = "{capacity}% {icon}";
format-charging = "{capacity}% ";
@@ -122,10 +143,17 @@
format-alt = "{time} {icon}";
# format-good = ""; // An empty format will hide the module
# format-full = "";
- format-icons = ["" "" "" "" ""];
- };
- }];
+ format-icons = [
+ ""
+ ""
+ ""
+ ""
+ ""
+ ];
+ };
+ }
+ ];
style = ./waybar.css;
- };
+ };
};
}