diff options
Diffstat (limited to 'home/apps/wofi')
| -rw-r--r-- | home/apps/wofi/default.nix | 2 | ||||
| -rw-r--r-- | home/apps/wofi/style.nix | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/home/apps/wofi/default.nix b/home/apps/wofi/default.nix index 2de9f45..b528f65 100644 --- a/home/apps/wofi/default.nix +++ b/home/apps/wofi/default.nix @@ -7,7 +7,7 @@ cfg = config.apps.wofi; in { config = mkIf cfg.enable { - default.appLauncher = lib.mkDefault "wofi --show drun --prompt 'Seach Programs'"; + default.appLauncher = lib.mkOverride 800 "wofi --show drun --prompt 'Seach Programs' --allow-images --no-actions --normal-window"; programs.wofi = { enable = true; diff --git a/home/apps/wofi/style.nix b/home/apps/wofi/style.nix index 75a0a21..8d1fb75 100644 --- a/home/apps/wofi/style.nix +++ b/home/apps/wofi/style.nix @@ -18,7 +18,7 @@ in '' /* Window */ window { margin: 0px; - border: ${borderWidth} solid ${primary}; + border: none; border-radius: ${outerRadius}; background-color: ${base}; } |