home

My NixOS systems configurations.
Log | Files | Refs | LICENSE

commit c73fcf72e088d0da6ed44c6fd661d23e4ae17e08
parent 196ccd25c89d91368c9fbced3b89bb38baeaa9ca
Author: Vincent Demeester <vincent@sbr.pm>
Date:   Wed,  4 Sep 2024 23:59:27 +0200

users/vincent: experimenting sway without any bar

Signed-off-by: Vincent Demeester <vincent@sbr.pm>

Diffstat:
Musers/vincent/desktop/sway.nix | 16++++++++--------
Musers/vincent/desktop/wayland.nix | 158++++++++++++++++++++++++++++++++++++++++----------------------------------------
2 files changed, 87 insertions(+), 87 deletions(-)

diff --git a/users/vincent/desktop/sway.nix b/users/vincent/desktop/sway.nix @@ -68,14 +68,14 @@ in }; }; fonts = fontConf; - bars = [ - { - command = "${pkgs.waybar}/bin/waybar"; - mode = "hide"; - position = "bottom"; - id = "mainBar"; - } - ]; + # bars = [ + # { + # command = "${pkgs.waybar}/bin/waybar"; + # mode = "hide"; + # position = "bottom"; + # id = "mainBar"; + # } + # ]; keybindings = let mod = config.wayland.windowManager.sway.config.modifier; diff --git a/users/vincent/desktop/wayland.nix b/users/vincent/desktop/wayland.nix @@ -10,85 +10,85 @@ }; programs = { - waybar = { - enable = true; - # systemd.enable = true; - style = ./waybar.css; - settings = [{ - layer = "bottom"; - position = "bottom"; - mode = "hide"; - modifier-reset = "release"; - modules-left = [ "sway/workspaces" "sway/mode" "custom/media" ]; - modules-center = [ "clock" "custom/notification" ]; - modules-right = [ "temperature" "pulseaudio" "backlight" "battery#bat0" "tray" ]; - ipc = true; - id = "mainBar"; - "clock" = { - "interval" = 30; - "format" = "{:<b>%H:%M</b>}"; - "tooltip-format" = "<big><b>{:%Y %B}</b></big>\n{calendar}"; - "format-alt" = "{:%A %d %B %Y}"; - }; - "battery#bat0" = { - "bat" = "BAT0"; - "states" = { - "warning" = 30; - "critical" = 15; - }; - "format" = "{icon} {capacity}"; - "format-charging" = " {capacity}"; - "format-plugged" = ""; - "format-alt" = "{icon} {time}"; - "format-full" = ""; - "format-icons" = [ "" "" "" "" "" ]; - }; - "custom/notification" = { - "tooltip" = false; - "format" = "{icon} "; - "format-icons" = { - "notification" = "<span foreground='red'></span>"; - "none" = ""; - "dnd-notification" = "<sup></sup>"; - "dnd-none" = ""; - }; - "return-type" = "json"; - # "exec-if" = "which swaync-client"; - "exec" = "swaync-client -swb"; - "on-click" = "swaync-client -t -sw"; - "on-click-right" = "swaync-client -d -sw"; - "escape" = true; - }; - "pulseaudio" = { - "format" = "{icon} {volume:2}% "; - "format-bluetooth" = "{icon}  {volume}% "; - "format-muted" = " "; - "format-icons" = { - "phone" = [ - " " - " " - " " - " " - ]; - "default" = [ - "" - "" - "" - ]; - }; - "scroll-step" = 10; - "on-click-right" = "${pkgs.pavucontrol}/bin/pavucontrol"; - "on-click" = "${pkgs.pamixer}/bin/pamixer -t"; - }; - "backlight" = { - "format" = "{icon} {percent}% "; - "format-icons" = [ - "" - "" - ]; - }; - }]; - }; + # waybar = { + # enable = true; + # # systemd.enable = true; + # style = ./waybar.css; + # settings = [{ + # layer = "bottom"; + # position = "bottom"; + # mode = "hide"; + # modifier-reset = "release"; + # modules-left = [ "sway/workspaces" "sway/mode" "custom/media" ]; + # modules-center = [ "clock" "custom/notification" ]; + # modules-right = [ "temperature" "pulseaudio" "backlight" "battery#bat0" "tray" ]; + # ipc = true; + # id = "mainBar"; + # "clock" = { + # "interval" = 30; + # "format" = "{:<b>%H:%M</b>}"; + # "tooltip-format" = "<big><b>{:%Y %B}</b></big>\n{calendar}"; + # "format-alt" = "{:%A %d %B %Y}"; + # }; + # "battery#bat0" = { + # "bat" = "BAT0"; + # "states" = { + # "warning" = 30; + # "critical" = 15; + # }; + # "format" = "{icon} {capacity}"; + # "format-charging" = " {capacity}"; + # "format-plugged" = ""; + # "format-alt" = "{icon} {time}"; + # "format-full" = ""; + # "format-icons" = [ "" "" "" "" "" ]; + # }; + # "custom/notification" = { + # "tooltip" = false; + # "format" = "{icon} "; + # "format-icons" = { + # "notification" = "<span foreground='red'></span>"; + # "none" = ""; + # "dnd-notification" = "<sup></sup>"; + # "dnd-none" = ""; + # }; + # "return-type" = "json"; + # # "exec-if" = "which swaync-client"; + # "exec" = "swaync-client -swb"; + # "on-click" = "swaync-client -t -sw"; + # "on-click-right" = "swaync-client -d -sw"; + # "escape" = true; + # }; + # "pulseaudio" = { + # "format" = "{icon} {volume:2}% "; + # "format-bluetooth" = "{icon}  {volume}% "; + # "format-muted" = " "; + # "format-icons" = { + # "phone" = [ + # " " + # " " + # " " + # " " + # ]; + # "default" = [ + # "" + # "" + # "" + # ]; + # }; + # "scroll-step" = 10; + # "on-click-right" = "${pkgs.pavucontrol}/bin/pavucontrol"; + # "on-click" = "${pkgs.pamixer}/bin/pamixer -t"; + # }; + # "backlight" = { + # "format" = "{icon} {percent}% "; + # "format-icons" = [ + # "" + # "" + # ]; + # }; + # }]; + # }; kitty = { enable = true; # shellIntegration.enableZshIntegration = true;