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/modes.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/modes.tsx')
| -rw-r--r-- | src/modules/launcher/modes.tsx | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/src/modules/launcher/modes.tsx b/src/modules/launcher/modes.tsx index 3f6e03e..0db7cd5 100644 --- a/src/modules/launcher/modes.tsx +++ b/src/modules/launcher/modes.tsx @@ -218,24 +218,8 @@ class Math extends Widget.Box implements LauncherContent { } } -@register() -class Windows extends Widget.Box implements LauncherContent { - constructor() { - super({ name: "windows", className: "windows" }); - } - - updateContent(search: string): void { - throw new Error("Method not implemented."); - } - - handleActivate(search: string): void { - throw new Error("Method not implemented."); - } -} - export default () => ({ apps: new Apps(), files: new Files(), math: new Math(), - windows: new Windows(), }); |