1
1
Fork 0

Compare commits

..

2 commits

Author SHA1 Message Date
d74f26e5a7
walker: fix layout
Signed-off-by: Myned <dev@bjork.tech>
2024-10-14 18:55:27 -05:00
57051fcf55
hyprland: add emoji picker bind
Signed-off-by: Myned <dev@bjork.tech>
2024-10-14 18:55:19 -05:00
2 changed files with 11 additions and 16 deletions

View file

@ -32,6 +32,7 @@ with lib; let
rm = "${pkgs.coreutils}/bin/rm"; rm = "${pkgs.coreutils}/bin/rm";
screenshot = "~/.local/bin/screenshot"; screenshot = "~/.local/bin/screenshot";
sleep = "${pkgs.coreutils}/bin/sleep"; sleep = "${pkgs.coreutils}/bin/sleep";
smile = "${pkgs.smile}/bin/smile";
steam = "${config.programs.steam.package}/bin/steam"; steam = "${config.programs.steam.package}/bin/steam";
swayosd-client = "${pkgs.swayosd}/bin/swayosd-client"; swayosd-client = "${pkgs.swayosd}/bin/swayosd-client";
systemctl = "${pkgs.systemd}/bin/systemctl"; systemctl = "${pkgs.systemd}/bin/systemctl";
@ -140,6 +141,7 @@ in {
(key "Escape" "Super" "togglefloating" null) (key "Escape" "Super" "togglefloating" null)
(key "Escape" "Super+Alt" "exec" "lifx state --color red") (key "Escape" "Super+Alt" "exec" "lifx state --color red")
(key "Escape" "Super+Shift" "centerwindow" null) (key "Escape" "Super+Shift" "centerwindow" null)
(key "Grave" "Super" "exec" smile)
(key "Left" "Super" "movewindow" "l") (key "Left" "Super" "movewindow" "l")
(key "Left" "Super+Alt" "exec" "${left} --scroll kensington-orbit-wireless-tb-mouse") (key "Left" "Super+Alt" "exec" "${left} --scroll kensington-orbit-wireless-tb-mouse")
(key "Left" "Super+Shift" "movewindoworgroup" "l") (key "Left" "Super+Shift" "movewindoworgroup" "l")

View file

@ -69,7 +69,7 @@ in {
emojis = { emojis = {
placeholder = "Unicode"; placeholder = "Unicode";
switcher_only = false; switcher_only = true;
}; };
finder = { finder = {
@ -98,16 +98,10 @@ in {
''; '';
# https://github.com/abenz1267/walker/blob/master/internal/config/layout.default.json # https://github.com/abenz1267/walker/blob/master/internal/config/layout.default.json
layout.ui.window.box = rec { layout.ui.window.box.scroll.list = {
height = 300 / config.custom.scale; max_height = 500 / config.custom.scale;
width = 1000 / config.custom.scale; min_width = 750 / config.custom.scale;
scroll.list = {
max_height = height;
max_width = width;
min_width = width;
# Icon resolution
item = { item = {
text.sub.hide = true; # Subtext text.sub.hide = true; # Subtext
@ -119,7 +113,6 @@ in {
}; };
}; };
}; };
};
# HACK: Allow child processes to live, otherwise applications launched through service are killed on stop # HACK: Allow child processes to live, otherwise applications launched through service are killed on stop
# https://www.freedesktop.org/software/systemd/man/latest/systemd.kill.html#KillMode= # https://www.freedesktop.org/software/systemd/man/latest/systemd.kill.html#KillMode=