From 713d0476c69c06d6baad9568c0d4def8c1e9fae9 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Fri, 25 Feb 2022 06:42:48 -0800 Subject: sway: re-organize the modules Rename 'sway' to 'wm' to make it more generic; rename some of the other modules (e.g. 'wofi' to 'launcher'), for the same reason. --- users/fcuny/desktop/sway/wofi.nix | 77 --------------------------------------- 1 file changed, 77 deletions(-) delete mode 100644 users/fcuny/desktop/sway/wofi.nix (limited to 'users/fcuny/desktop/sway/wofi.nix') diff --git a/users/fcuny/desktop/sway/wofi.nix b/users/fcuny/desktop/sway/wofi.nix deleted file mode 100644 index bc69e0d..0000000 --- a/users/fcuny/desktop/sway/wofi.nix +++ /dev/null @@ -1,77 +0,0 @@ -{ pkgs, config, ... }: - -{ - home.packages = with pkgs; [ - wofi - ]; - - xdg.configFile."wofi/config".text = '' - xoffset=710 - yoffset=275 - show=drun - width=500 - height=500 - always_parse_args=true - show_all=true - print_command=true - layer=overlay - insensitive=true - prompt= - term=${config.wayland.windowManager.sway.config.terminal} - ''; - - xdg.configFile."wofi/style.css".text = '' - window { - margin: 0px; - border: 2px solid #414868; - border-radius: 5px; - background-color: #24283b; - font-family: monospace; - font-size: 12px; - } - - #input { - margin: 5px; - border: 1px solid #24283b; - color: #c0caf5; - background-color: #24283b; - } - - #input image { - color: #c0caf5; - } - - #inner-box { - margin: 5px; - border: none; - background-color: #24283b; - } - - #outer-box { - margin: 5px; - border: none; - background-color: #24283b; - } - - #scroll { - margin: 0px; - border: none; - } - - #text { - margin: 5px; - border: none; - color: #c0caf5; - } - - #entry:selected { - background-color: #414868; - font-weight: normal; - } - - #text:selected { - background-color: #414868; - font-weight: normal; - } - ''; -} -- cgit v1.2.3