1
1
Fork 0

menu: fix and modify walker

Signed-off-by: Myned <dev@bjork.tech>
This commit is contained in:
Myned 2024-09-24 18:23:22 -05:00
parent 5a95ba0524
commit 816f84059d
Signed by: myned
GPG key ID: C7224454F7881A34
2 changed files with 13 additions and 7 deletions

View file

@ -108,11 +108,11 @@ in {
(key "Control_L" "Super+Ctrl+Alt+Shift" "layoutmsg" "removemaster") (key "Control_L" "Super+Ctrl+Alt+Shift" "layoutmsg" "removemaster")
(key "Control_L" "Super+Ctrl+Shift" "layoutmsg" "addmaster") (key "Control_L" "Super+Ctrl+Shift" "layoutmsg" "addmaster")
(key "Shift_L" "Super+Shift" "workspace" "previous") (key "Shift_L" "Super+Shift" "workspace" "previous")
(key "Super_L" "Super" "exec" "${menu} --applications") (key "Super_L" "Super" "exec" "${menu}")
(key "Super_L" "Super+Alt" "exec" "${menu} --passwords") (key "Super_L" "Super+Alt" "exec" "${menu} --passwords")
(key "Super_L" "Super+Ctrl" "exec" "${menu} --calculator") (key "Super_L" "Super+Ctrl" "exec" "${menu} --calculator")
(key "Super_L" "Super+Ctrl+Shift" "exec" "${menu} --networks") (key "Super_L" "Super+Ctrl+Shift" "exec" "${menu} --networks")
(key "Super_L" "Super+Shift" "exec" "${menu} --runner") (key "Super_L" "Super+Shift" "exec" "${menu} --search")
]; ];
# Regular binds # Regular binds

View file

@ -28,7 +28,10 @@ in {
# https://github.com/abenz1267/walker/blob/master/internal/config/config.default.json # https://github.com/abenz1267/walker/blob/master/internal/config/config.default.json
config = { config = {
activation_mode.disabled = true; # Key chords activation_mode.disabled = true; # Key chords
ignore_mouse = true; # Hover interrupts keyboard selections
# BUG: Hover interrupts keyboard selections
ignore_mouse = true;
search.placeholder = ""; search.placeholder = "";
disabled = [ disabled = [
@ -39,17 +42,17 @@ in {
# https://github.com/abenz1267/walker/wiki/Modules # https://github.com/abenz1267/walker/wiki/Modules
# https://www.nerdfonts.com/cheat-sheet # https://www.nerdfonts.com/cheat-sheet
builtins = { builtins = {
calculator.switcher_only = false; calc.switcher_only = true;
clipboard.switcher_only = true; clipboard.switcher_only = true;
commands.switcher_only = true; commands.switcher_only = true;
custom_commands.switcher_only = true; custom_commands.switcher_only = true;
runner.switcher_only = true; runner.switcher_only = false;
ssh.switcher_only = true; ssh.switcher_only = true;
windows.switcher_only = true; windows.switcher_only = true;
applications = { applications = {
# BUG: Ghost entries are still visible # BUG: Ghost entries are still visible with single module
#// actions = false; # Desktop file actions actions = false; # Desktop file actions
switcher_only = false; switcher_only = false;
}; };
@ -71,6 +74,9 @@ in {
}; };
websearch = { websearch = {
# TODO: Implement custom search engine
engines = ["duckduckgo"];
placeholder = "Search"; placeholder = "Search";
switcher_only = true; switcher_only = true;
}; };