diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-03-15 20:07:38 +1100 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-03-15 20:07:38 +1100 |
| commit | 088a67fa48458c1ce946f082a33f34e0d6002126 (patch) | |
| tree | bec7b7d8f8db3c3496b21ccae2b4e98cfb24c74f /src/modules/launcher/index.tsx | |
| parent | launcher: wallpaper random by category (diff) | |
| download | caelestia-shell-088a67fa48458c1ce946f082a33f34e0d6002126.tar.gz caelestia-shell-088a67fa48458c1ce946f082a33f34e0d6002126.tar.bz2 caelestia-shell-088a67fa48458c1ce946f082a33f34e0d6002126.zip | |
launcher: remove windows mode
Also change mode colours to primary, secondary and tertiary
Diffstat (limited to 'src/modules/launcher/index.tsx')
| -rw-r--r-- | src/modules/launcher/index.tsx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/modules/launcher/index.tsx b/src/modules/launcher/index.tsx index 3f8645e..973f5cd 100644 --- a/src/modules/launcher/index.tsx +++ b/src/modules/launcher/index.tsx @@ -10,7 +10,6 @@ const getModeIcon = (mode: Mode) => { if (mode === "apps") return "apps"; if (mode === "files") return "folder"; if (mode === "math") return "calculate"; - if (mode === "windows") return "select_window"; return "search"; }; @@ -18,7 +17,6 @@ const getPrettyMode = (mode: Mode) => { if (mode === "apps") return "Apps"; if (mode === "files") return "Files"; if (mode === "math") return "Math"; - if (mode === "windows") return "Windows"; return mode; }; |