diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-04-26 22:36:23 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-04-26 22:36:23 +1000 |
| commit | 3c579d0e275cdaf6f2c9589abade94bde7905c82 (patch) | |
| tree | 4b825dc642cb6eb9a060e54bf8d69288fbee4904 /src/utils/types.ts | |
| parent | schemes: fix (diff) | |
| download | caelestia-shell-3c579d0e275cdaf6f2c9589abade94bde7905c82.tar.gz caelestia-shell-3c579d0e275cdaf6f2c9589abade94bde7905c82.tar.bz2 caelestia-shell-3c579d0e275cdaf6f2c9589abade94bde7905c82.zip | |
clean
Remove everything
Diffstat (limited to 'src/utils/types.ts')
| -rw-r--r-- | src/utils/types.ts | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/src/utils/types.ts b/src/utils/types.ts deleted file mode 100644 index d2c1943..0000000 --- a/src/utils/types.ts +++ /dev/null @@ -1,35 +0,0 @@ -import type { astalify } from "astal/gtk3"; -import type AstalHyprland from "gi://AstalHyprland"; - -export type AstalWidget = InstanceType<ReturnType<typeof astalify>>; - -export type Address = `0x${string}`; - -export interface Client { - address: Address; - mapped: boolean; - hidden: boolean; - at: [number, number]; - size: [number, number]; - workspace: { - id: number; - name: string; - }; - floating: boolean; - pseudo: boolean; - monitor: number; - class: string; - title: string; - initialClass: string; - initialTitle: string; - pid: number; - xwayland: boolean; - pinned: boolean; - fullscreen: AstalHyprland.Fullscreen; - fullscreenClient: AstalHyprland.Fullscreen; - grouped: Address[]; - tags: string[]; - swallowing: string; - focusHistoryID: number; - inhibitingIdle: boolean; -} |