From 8a028efe50cd0e9435070de03f9baf845381a1f9 Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Sat, 24 Jun 2023 01:06:00 -0400 Subject: [PATCH] meta: Remove hyprland-autoname-workspaces Now that waybar supports fullscreen indicators, I am no longer interested in maintaining a list of application names. Although this was cool, it doesn't scale and adds complexity. --- home/default.nix | 1 - home/hyprland-autoname-workspaces.nix | 50 --------------------------- 2 files changed, 51 deletions(-) delete mode 100644 home/hyprland-autoname-workspaces.nix diff --git a/home/default.nix b/home/default.nix index ac17d803..836631ea 100644 --- a/home/default.nix +++ b/home/default.nix @@ -11,7 +11,6 @@ ./gtk.nix ./htop.nix ./hyprland.nix - ./hyprland-autoname-workspaces.nix ./joshuto.nix ./kitty.nix ./librewolf.nix diff --git a/home/hyprland-autoname-workspaces.nix b/home/hyprland-autoname-workspaces.nix deleted file mode 100644 index a0537b1d..00000000 --- a/home/hyprland-autoname-workspaces.nix +++ /dev/null @@ -1,50 +0,0 @@ -{ - xdg.configFile."hyprland-autoname-workspaces/config.toml".text = /* toml */ '' - version = "1.1.0" - - [class] - kitty = "端\n末" - thunar = "フ\nァ\nイ\nル" - librewolf = "ウ\nェ\nブ" - "VirtualBox Machine" = "ブ\nイ\nエ\nム" - "VirtualBox Manager" = "仮\n想\n機\n械" - anki = "暗\n記" - Logseq = "知\n識\n管\n理" - mullvadbrowser = "秘\n密" - "Signal Beta" = "メ\nッ\nセ\nー\nジ" - srb2 = "ソ\nニ\nッ\nク" - DEFAULT = "〜" - - [title_in_class."(kitty)"] - "(?i)nvim" = "ヴ\nィ\nム" - "(?i)ncmpcpp" = "音\n楽" - - [workspaces_name] - 1 = "一" - 2 = "二" - 3 = "三" - 4 = "四" - 5 = "五" - 6 = "六" - 7 = "七" - 8 = "八" - 9 = "九" - 10 = "十" - - [exclude] - "(?i)fcitx" = ".*" - - [format] - dedup = false - dedup_inactive_fullscreen = false - delim = "\n" - - workspace = "{id}{name}{delim}{clients}" - workspace_empty = "{id}{name}" - - client = "{delim}{icon}" - - client_active = "{icon}" - client_fullscreen = "{delim}{icon}" - ''; -}