From b314c9648fef5a0beb028cda54b68febde6721d0 Mon Sep 17 00:00:00 2001 From: Hadi <112569860+anotherhadi@users.noreply.github.com> Date: Tue, 4 Mar 2025 20:57:58 +0100 Subject: [PATCH] remove tofi Former-commit-id: c9aada820353a8c9d58e143135dcbaf755a8f67b --- home/system/tofi/default.nix | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 home/system/tofi/default.nix diff --git a/home/system/tofi/default.nix b/home/system/tofi/default.nix deleted file mode 100644 index 2d20807..0000000 --- a/home/system/tofi/default.nix +++ /dev/null @@ -1,23 +0,0 @@ -# Tofi is a dmeny-like application launcher -{ config, lib, ... }: -let - background = "#${config.lib.stylix.colors.base00}70"; - accent = "#${config.lib.stylix.colors.base0D}"; -in { - programs.tofi = lib.mkForce { - enable = true; - settings = { - border-width = 0; - background-color = background; - prompt-color = accent; - selection-color = accent; - height = "100%"; - num-results = 5; - outline-width = 0; - padding-left = "35%"; - padding-top = "35%"; - result-spacing = 25; - width = "100%"; - }; - }; -}