walker and added icons

This commit is contained in:
kenji
2025-12-24 17:46:04 -06:00
parent 882063c6c6
commit 7d5a24c7f8
4 changed files with 26 additions and 1 deletions
+2 -1
View File
@@ -17,7 +17,8 @@
"SUPER SHIFT, F, Toggle Maximized Fullscreen, fullscreen, 1"
# apps
"SUPER, W, Open browser, exec, uwsm app -- firefox" # FIXME: must be xdg-open
"SUPER, W, Open Browser, exec, uwsm app -- firefox" # FIXME: must be xdg-open
"SUPER, SPACE, App Launcher, exec, uwsm app -- walker"
# [Workspaces] Toggle between most recent workspaces
"SUPER, Tab, Cycle workspaces, workspace, previous"
+13
View File
@@ -1,5 +1,18 @@
{
services.walker = {
enable = true;
settings = {
app_launch_prefix = "";
as_window = false;
close_when_open = false;
disable_click_to_close = false;
force_keyboard_focus = false;
hotreload_theme = false;
locale = "";
monitor = "";
terminal_title_flag = "";
theme = "default";
timeout = 0;
};
};
}
+5
View File
@@ -0,0 +1,5 @@
{
imports = [
../../system/gtk.nix
];
}
+6
View File
@@ -0,0 +1,6 @@
{pkgs, ...}: {
gtk.iconTheme = {
name = "Papirus-Dark";
package = pkgs.papirus-icon-theme;
};
}