From e41bacc2fc54cc2a16ef76ba459aaf22947f9fcd Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Sat, 2 Dec 2023 14:22:44 +0000 Subject: [PATCH] home: wm: i3: make 'rofi-bluetooth' ignore case The options given to the script are piped straight to `rofi -dmenu`, which apparently needs the `-i` switch to be case insensitive. --- modules/home/wm/i3/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/home/wm/i3/default.nix b/modules/home/wm/i3/default.nix index b9661f3..69246f0 100644 --- a/modules/home/wm/i3/default.nix +++ b/modules/home/wm/i3/default.nix @@ -197,7 +197,7 @@ in inherit (config.my.home.bluetooth) enable; prog = lib.getExe pkgs.rofi-bluetooth; in - lib.mkIf enable "exec ${prog}"; + lib.mkIf enable "exec ${prog} -i"; }) ( # Changing container focus