home: wm: i3: make 'rofi-bluetooth' ignore case
All checks were successful
ci/woodpecker/push/check Pipeline was successful
All checks were successful
ci/woodpecker/push/check Pipeline was successful
The options given to the script are piped straight to `rofi -dmenu`, which apparently needs the `-i` switch to be case insensitive.
This commit is contained in:
parent
55362b1db8
commit
e41bacc2fc
|
@ -197,7 +197,7 @@ in
|
||||||
inherit (config.my.home.bluetooth) enable;
|
inherit (config.my.home.bluetooth) enable;
|
||||||
prog = lib.getExe pkgs.rofi-bluetooth;
|
prog = lib.getExe pkgs.rofi-bluetooth;
|
||||||
in
|
in
|
||||||
lib.mkIf enable "exec ${prog}";
|
lib.mkIf enable "exec ${prog} -i";
|
||||||
})
|
})
|
||||||
(
|
(
|
||||||
# Changing container focus
|
# Changing container focus
|
||||||
|
|
Loading…
Reference in a new issue