Tweak fuzzel config a little
This commit is contained in:
parent
90ddf858da
commit
f5c2807b5f
|
@ -7,7 +7,7 @@ in with lib; {
|
||||||
swaylock-command = ''
|
swaylock-command = ''
|
||||||
${swaylock-package}/bin/swaylock --screenshots --grace 30 --indicator --clock --timestr "%-I:%M:%S %p" --datestr "%A %Y-%M-%d" --effect-blur 20x3'';
|
${swaylock-package}/bin/swaylock --screenshots --grace 30 --indicator --clock --timestr "%-I:%M:%S %p" --datestr "%A %Y-%M-%d" --effect-blur 20x3'';
|
||||||
fuzzel-command = ''
|
fuzzel-command = ''
|
||||||
fuzzel -f "Iosevka Sans Quasi" -b "181818dd" -S "b9b9b9ff" -s "252525dd" -t "777777ff" -B 5 -r 5 -C "70b433dd"'';
|
fuzzel -f "Iosevka Sans Quasi:size=16" -b "181818cc" -S "b9b9b9ff" -s "252525cc" -t "777777ff" -B 5 -r 5 -C "70b433cc" --width=80 --lines=25'';
|
||||||
notif-package =
|
notif-package =
|
||||||
inputs.nixpkgs-unstable.legacyPackages.${pkgs.system}.swaynotificationcenter;
|
inputs.nixpkgs-unstable.legacyPackages.${pkgs.system}.swaynotificationcenter;
|
||||||
shortcuts = inputs.self.packages.${pkgs.system}.shortcuts;
|
shortcuts = inputs.self.packages.${pkgs.system}.shortcuts;
|
||||||
|
@ -142,7 +142,7 @@ in with lib; {
|
||||||
# bind = $mainMod, M, exit,
|
# bind = $mainMod, M, exit,
|
||||||
bind = $mainMod, E, exec, dolphin
|
bind = $mainMod, E, exec, dolphin
|
||||||
bind = $mainMod, V, togglefloating,
|
bind = $mainMod, V, togglefloating,
|
||||||
bind = $mainMod, R, exec, ${fuzzel-command}
|
bind = $mainMod, R, exec, ${fuzzel-command} --prompt='❯ '
|
||||||
bind = $mainMod, P, pseudo, # dwindle
|
bind = $mainMod, P, pseudo, # dwindle
|
||||||
bind = $mainMod, B, togglesplit, # dwindle
|
bind = $mainMod, B, togglesplit, # dwindle
|
||||||
bind = $mainMod, Z, exec, ${swaylock-command}
|
bind = $mainMod, Z, exec, ${swaylock-command}
|
||||||
|
@ -258,7 +258,7 @@ in with lib; {
|
||||||
|
|
||||||
# Clipboard history management
|
# Clipboard history management
|
||||||
exec-once=wl-paste --watch cliphist store
|
exec-once=wl-paste --watch cliphist store
|
||||||
bind = $mainMod, X, exec, cliphist list | ${fuzzel-command} --dmenu | cliphist decode | wl-copy
|
bind = $mainMod, X, exec, cliphist list | ${fuzzel-command} --prompt=' ❯ ' --dmenu | cliphist decode | wl-copy
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -308,7 +308,8 @@ in with lib; {
|
||||||
text = ''
|
text = ''
|
||||||
directories = ["~/.config/shortcuts/shortcuts", "${shortcuts}/shortcuts"]
|
directories = ["~/.config/shortcuts/shortcuts", "${shortcuts}/shortcuts"]
|
||||||
picker_command = "${
|
picker_command = "${
|
||||||
builtins.replaceStrings [ ''"'' ] [ ''\"'' ] fuzzel-command
|
builtins.replaceStrings [ ''"'' ] [ ''\"'' ]
|
||||||
|
(fuzzel-command + " --prompt=' ❯ ' ")
|
||||||
} --dmenu"
|
} --dmenu"
|
||||||
'';
|
'';
|
||||||
onChange = ''
|
onChange = ''
|
||||||
|
@ -448,7 +449,7 @@ in with lib; {
|
||||||
];
|
];
|
||||||
"custom/launcher" = {
|
"custom/launcher" = {
|
||||||
format = "";
|
format = "";
|
||||||
on-click = fuzzel-command;
|
on-click = fuzzel-command + " --prompt='❯ ' ";
|
||||||
on-click-right = "killall fuzzel";
|
on-click-right = "killall fuzzel";
|
||||||
};
|
};
|
||||||
"idle_inhibitor" = {
|
"idle_inhibitor" = {
|
||||||
|
|
Loading…
Reference in New Issue