From 4ce7ab874f8ddc2aae9265417871ed2a47a44749 Mon Sep 17 00:00:00 2001 From: kenji Date: Fri, 26 Dec 2025 13:05:38 -0600 Subject: [PATCH] feat: disabled some hints --- apps/walker/home.nix | 3 +- apps/walker/style.nix | 64 +++++++++++++++++++++++++++++-------------- 2 files changed, 45 insertions(+), 22 deletions(-) diff --git a/apps/walker/home.nix b/apps/walker/home.nix index b036d4e..cf17f39 100644 --- a/apps/walker/home.nix +++ b/apps/walker/home.nix @@ -18,6 +18,7 @@ # CSS Implementation using Stylix Colors config = { + hide_action_hints = true; icons.theme = config.gtk.iconTheme.name; placeholders.default = { @@ -35,8 +36,6 @@ prefix = "_"; } ]; - - keybinds.quick_activate = ["F1" "F2" "F3"]; }; }; } diff --git a/apps/walker/style.nix b/apps/walker/style.nix index f895271..151dce5 100644 --- a/apps/walker/style.nix +++ b/apps/walker/style.nix @@ -4,10 +4,14 @@ in { programs.walker = { theme.style = '' + * { + all: unset; + } + * { font-family: monospace; font-size: 18px; - color: ${colors.base05}; /* Text */ + color: ${colors.base05}; } scrollbar { @@ -23,26 +27,27 @@ in { } .box-wrapper { - background: ${colors.base00}; /* Surface0/Base */ + background: alpha(${colors.base00}, 0.95); padding: 20px; - border: 2px solid ${colors.base0E}; /* Lavender/Accent Border */ - border-radius: 12px; + border: 2px solid ${colors.base0E}; + } + + .preview-box { + } + + .box { } .search-container { - background: ${colors.base01}; /* Surface1 */ + background: ${colors.base00}; padding: 10px; - border-radius: 8px; - margin-bottom: 10px; } .input placeholder { opacity: 0.5; - color: ${colors.base03}; } .input { - color: ${colors.base05}; } .input:focus, @@ -51,31 +56,49 @@ in { outline: none; } + .content-container { + } + + .placeholder { + } + + .scroll { + } + + .list { + } + + child, + child > * { + } + child:hover .item-box { - background: ${colors.base02}; /* Surface2/Selection wrapper */ - border-radius: 8px; } child:selected .item-box { - background: ${colors.base0E}; /* Lavender selection */ - border-radius: 8px; } child:selected .item-box * { - color: ${colors.base00}; /* Text becomes dark on accent background */ + color: ${colors.base0D}; } .item-box { - padding: 5px 14px; + padding-left: 14px; } .item-text-box { - padding: 5px 0; + all: unset; + padding: 14px 0; + } + + .item-text { } .item-subtext { - font-size: 12px; - opacity: 0.7; + font-size: 0px; + min-height: 0px; + margin: 0px; + padding: 0px; } .item-image { @@ -91,8 +114,9 @@ in { background: ${colors.base01}; padding: 10px; margin-top: 10px; - border-radius: 8px; - color: ${colors.base0E}; + } + + .preview { } ''; };