From ad859e92853b2c946246289047f5e4f184f6704d Mon Sep 17 00:00:00 2001 From: rocketcamel Date: Sun, 4 May 2025 20:57:35 -0700 Subject: [PATCH] fix: volumeicon not starting --- nix/modules/i3.nix | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/nix/modules/i3.nix b/nix/modules/i3.nix index 6d3705c..3cd73fc 100644 --- a/nix/modules/i3.nix +++ b/nix/modules/i3.nix @@ -64,6 +64,9 @@ ''; xsession.windowManager.i3 = { enable = true; + extraConfig = '' + exec --no-startup-id sleep 2 && volumeicon + ''; config = { modifier = "Mod4"; defaultWorkspace = "workspace number 1"; @@ -78,11 +81,11 @@ "XF86MonBrightnessUp" = "exec brightnessctl s +5%"; "XF86MonBrightnessDown" = "exec brightnessctl s 5%-"; }; - startup = [ - { - command = "exec --no-startup-id volumeicon"; - } - ]; + #startup = [ + # { + # command = "volumeicon"; + # } + #]; }; }; };