diff options
| author | Max Bossing <max@bossi.ng> | 2025-07-15 21:50:08 +0200 |
|---|---|---|
| committer | Max Bossing <max@bossi.ng> | 2025-07-15 21:50:08 +0200 |
| commit | ec21bcc940dc3925ff957dc1ff555ddd61ee491c (patch) | |
| tree | 16ac4f6c0d740ced8926e54eda828c2a656148b6 | |
| parent | e1400d90cf12e67bc837a43e65e230f9dfbca648 (diff) | |
dots templating, iamb,
| -rw-r--r-- | README.md | 1 | ||||
| -rw-r--r-- | dots.toml | 24 | ||||
| -rw-r--r-- | hermes.dots.toml | 20 | ||||
| -rw-r--r-- | hestia.dots.toml | 19 | ||||
| -rw-r--r-- | iamb/config.toml | 10 |
5 files changed, 35 insertions, 39 deletions
@@ -4,6 +4,7 @@ These are my personal config files. Configs are managed by [`dots`](https://github.com/maxbossing/dots). +`dots.toml`: Common dots for all devices `hestia.dots.toml`: My Workstation `hermes.dots.toml`: My Laptop diff --git a/dots.toml b/dots.toml new file mode 100644 index 0000000..b2669b4 --- /dev/null +++ b/dots.toml @@ -0,0 +1,24 @@ + +[[dot]] +src = "nvim" +dest = ".config/nvim" + +[[dot]] +src = "fish" +dest = ".config/fish" + +[[dot]] +src = "hypr/hyprpaper.conf" +dest = ".config/hypr/hyprpaper.conf" + +[[dot]] +src = "hypr/hyprlock.conf" +dest = ".config/hypr/hyprlock.conf" + +[[dot]] +src = "kitty" +dest = ".config/kitty" + +[[dot]] +src = "iamb" +dest = ".config/iamb" diff --git a/hermes.dots.toml b/hermes.dots.toml index 5d38dab..f20346c 100644 --- a/hermes.dots.toml +++ b/hermes.dots.toml @@ -1,23 +1,3 @@ [[dot]] -src = "nvim" -dest = ".config/nvim" - -[[dot]] -src = "fish" -dest = ".config/fish" - -[[dot]] src = "hypr/hermes.hyprland.conf" dest = ".config/hypr/hyprland.conf" - -[[dot]] -src = "hypr/hyprpaper.conf" -dest = ".config/hypr/hyprpaper.conf" - -[[dot]] -src = "hypr/hyprlock.conf" -dest = ".config/hypr/hyprlock.conf" - -[[dot]] -src = "kitty" -dest = ".config/kitty" diff --git a/hestia.dots.toml b/hestia.dots.toml index c8591d7..58a8912 100644 --- a/hestia.dots.toml +++ b/hestia.dots.toml @@ -1,23 +1,4 @@ [[dot]] -src = "nvim" -dest = ".config/nvim" - -[[dot]] -src = "fish" -dest = ".config/fish" - -[[dot]] src = "hypr/hestia.hyprland.conf" dest = ".config/hypr/hyprland.conf" -[[dot]] -src = "hypr/hyprpaper.conf" -dest = ".config/hypr/hyprpaper.conf" - -[[dot]] -src = "hypr/hyprlock.conf" -dest = ".config/hypr/hyprlock.conf" - -[[dot]] -src = "kitty" -dest = ".config/kitty" diff --git a/iamb/config.toml b/iamb/config.toml new file mode 100644 index 0000000..9faa4bc --- /dev/null +++ b/iamb/config.toml @@ -0,0 +1,10 @@ +default_profile = "user" + +[profiles.user] +user_id="@maxbossing:matrix.org" + +[settings.image_preview] +protocol.type = "kitty" + +[settings.notifications] +enabled = true |
