diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-01-14 19:53:49 +1100 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-01-14 19:53:49 +1100 |
| commit | c2e03775dba9aedbb52c9bf1135a2290faaa21bf (patch) | |
| tree | 7909f68f820b68407f8c49e74d1464653d385348 /config.ts | |
| parent | launcher: better math error message (diff) | |
| download | caelestia-shell-c2e03775dba9aedbb52c9bf1135a2290faaa21bf.tar.gz caelestia-shell-c2e03775dba9aedbb52c9bf1135a2290faaa21bf.tar.bz2 caelestia-shell-c2e03775dba9aedbb52c9bf1135a2290faaa21bf.zip | |
better config + notifpopups max popups
Use a config file
Diffstat (limited to 'config.ts')
| -rw-r--r-- | config.ts | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/config.ts b/config.ts new file mode 100644 index 0000000..ccfa08a --- /dev/null +++ b/config.ts @@ -0,0 +1,21 @@ +export const bar = { + wsPerGroup: 10, + dateTimeFormat: "%d/%m/%y %R", +}; + +export const launcher = { + maxResults: 15, + fdOpts: ["-a", "-t", "f"], + pins: [ + ["firefox", "waterfox", "google-chrome", "chromium", "brave-browser", "vivaldi-stable", "vivaldi-snapshot"], + ["foot", "alacritty", "kitty", "wezterm"], + ["thunar", "nemo", "nautilus"], + ["codium", "code", "clion", "intellij-idea-ultimate-edition"], + ["spotify-adblock", "spotify", "audacious", "elisa"], + ], +}; + +export const notifpopups = { + maxPopups: -1, + expire: false, +}; |