1
1
Fork 0

Compare commits

..

No commits in common. "d74f26e5a75fa2cadfaeeb0fc7edf87b1b503fd0" and "04369dbfbd57f98fad9b6cc527d78ba7741d9f42" have entirely different histories.

2 changed files with 16 additions and 11 deletions

View file

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

View file

@ -69,7 +69,7 @@ in {
emojis = {
placeholder = "Unicode";
switcher_only = true;
switcher_only = false;
};
finder = {
@ -98,10 +98,16 @@ in {
'';
# https://github.com/abenz1267/walker/blob/master/internal/config/layout.default.json
layout.ui.window.box.scroll.list = {
max_height = 500 / config.custom.scale;
min_width = 750 / config.custom.scale;
layout.ui.window.box = rec {
height = 300 / config.custom.scale;
width = 1000 / config.custom.scale;
scroll.list = {
max_height = height;
max_width = width;
min_width = width;
# Icon resolution
item = {
text.sub.hide = true; # Subtext
@ -113,6 +119,7 @@ in {
};
};
};
};
# 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=