From 361615266c5f1b0085453cc7273978e0c1fcc1c3 Mon Sep 17 00:00:00 2001 From: Michael Bradley Date: Fri, 25 Apr 2025 23:54:07 -0400 Subject: [PATCH] Always use direct symlinks unless using Tera --- bombadil.toml | 57 +++++++++++++++++++++++++-------------------------- 1 file changed, 28 insertions(+), 29 deletions(-) diff --git a/bombadil.toml b/bombadil.toml index 5098c09..a86d25d 100644 --- a/bombadil.toml +++ b/bombadil.toml @@ -8,44 +8,43 @@ posthooks = [ ] [settings.dots] -templates = { source = "Templates", target = "Templates" } -scripts = { source = "scripts", target = "scripts" } +templates = { source = "Templates", target = "Templates", direct = true } +scripts = { source = "scripts", target = "scripts", direct = true } -editorconfig = { source = "home/.editorconfig", target = ".editorconfig" } +editorconfig = { source = "home/.editorconfig", target = ".editorconfig", direct = true } -electron = { source = "config/electron-flags.conf", target = ".config/electron-flags.conf" } -discord = { source = "config/electron-flags.conf", target = ".config/discord-flags.conf" } +electron = { source = "config/electron-flags.conf", target = ".config/electron-flags.conf", direct = true } +discord = { source = "config/electron-flags.conf", target = ".config/discord-flags.conf", direct = true } -1password = { source = "autostart/1password.desktop", target = ".config/autostart/1password.desktop" } -megasync = { source = "autostart/megasync.desktop", target = ".config/autostart/megasync.desktop" } - -git = { source = "git/config", target = ".config/git/config" } +1password = { source = "autostart/1password.desktop", target = ".config/autostart/1password.desktop", direct = true } +megasync = { source = "autostart/megasync.desktop", target = ".config/autostart/megasync.desktop", direct = true } # Also needs a one-time `systemctl --user enable --now eww-daemon.service eww-bars.service ip-geolocation.service sunset.timer swww-daemon.service' -eww-daemon = { source = "systemd/eww-daemon.service", target = ".config/systemd/user/eww-daemon.service" } +eww-daemon = { source = "systemd/eww-daemon.service", target = ".config/systemd/user/eww-daemon.service", direct = true } eww-bars = { source = "systemd/eww-bars.service", target = ".config/systemd/user/eww-bars.service" } -ip-geolocation = { source = "systemd/ip-geolocation.service", target = ".config/systemd/user/ip-geolocation.service" } -sunset-service = { source = "systemd/sunset.service", target = ".config/systemd/user/sunset.service" } -sunset-timer = { source = "systemd/sunset.timer", target = ".config/systemd/user/sunset.timer" } -swww-daemon = { source = "systemd/swww-daemon.service", target = ".config/systemd/user/swww-daemon.service" } +ip-geolocation = { source = "systemd/ip-geolocation.service", target = ".config/systemd/user/ip-geolocation.service", direct = true } +sunset-service = { source = "systemd/sunset.service", target = ".config/systemd/user/sunset.service", direct = true } +sunset-timer = { source = "systemd/sunset.timer", target = ".config/systemd/user/sunset.timer", direct = true } +swww-daemon = { source = "systemd/swww-daemon.service", target = ".config/systemd/user/swww-daemon.service", direct = true } -btop = { source = "btop", target = ".config/btop" } -dunst = { source = "dunst", target = ".config/dunst" } -eww = { source = "eww", target = ".config/eww"} -fastfetch = { source = "fastfetch", target = ".config/fastfetch" } -gtk2 = { source = "gtk/gtk-2.0", target = ".config/gtk-2.0" } -gtk3 = { source = "gtk/gtk-3.0", target = ".config/gtk-3.0" } +btop = { source = "btop", target = ".config/btop", direct = true } +dunst = { source = "dunst", target = ".config/dunst", direct = true } +eww = { source = "eww", target = ".config/eww", direct = true } +fastfetch = { source = "fastfetch", target = ".config/fastfetch", direct = true } +gtk2 = { source = "gtk/gtk-2.0", target = ".config/gtk-2.0", direct = true } +gtk3 = { source = "gtk/gtk-3.0", target = ".config/gtk-3.0", direct = true } +git = { source = "git/config", target = ".config/git/config", direct = true } hypr = { source = "hypr", target = ".config/hypr" } -kitty = { source = "kitty", target = ".config/kitty" } -lsd = { source = "lsd", target = ".config/lsd" } -nvim = { source = "nvim", target = ".config/nvim" } -rofi = { source = "rofi", target = ".config/rofi" } -steam = { source = "steam/steam_dev.cfg", target = ".steam/steam/steam_dev.cfg" } -swaylock = { source = "swaylock", target = ".config/swaylock" } +kitty = { source = "kitty", target = ".config/kitty", direct = true } +lsd = { source = "lsd", target = ".config/lsd", direct = true } +nvim = { source = "nvim", target = ".config/nvim", direct = true } +rofi = { source = "rofi", target = ".config/rofi", direct = true } +steam = { source = "steam/steam_dev.cfg", target = ".steam/steam/steam_dev.cfg", direct = true } +swaylock = { source = "swaylock", target = ".config/swaylock", direct = true } uwsm = { source = "uwsm", target = ".config/uwsm" } -vim = { source = "vim/vimrc", target = ".config/vim/vimrc" } -yazi = { source = "yazi", target = ".config/yazi" } -zsh = { source = "zsh", target = ".config/zsh" } +vim = { source = "vim/vimrc", target = ".config/vim/vimrc", direct = true } +yazi = { source = "yazi", target = ".config/yazi", direct = true } +zsh = { source = "zsh", target = ".config/zsh", direct = true } [profiles.chonk] vars = [ "chonk.toml" ]