diff --git a/.stow-local-ignore b/.stow-local-ignore deleted file mode 100644 index 6d97d2d..0000000 --- a/.stow-local-ignore +++ /dev/null @@ -1,6 +0,0 @@ -/.git -/.github -/README.md -/.install -hyprland/host -/setup \ No newline at end of file diff --git a/dots/.stow-local-ignore b/dots/.stow-local-ignore new file mode 100644 index 0000000..e0b72f6 --- /dev/null +++ b/dots/.stow-local-ignore @@ -0,0 +1 @@ +zsh \ No newline at end of file diff --git a/hyprland/.stow-local-ignore b/hyprland/.stow-local-ignore new file mode 100644 index 0000000..fe198d7 --- /dev/null +++ b/hyprland/.stow-local-ignore @@ -0,0 +1 @@ +host \ No newline at end of file diff --git a/stow.sh b/stow.sh new file mode 100755 index 0000000..236b4a3 --- /dev/null +++ b/stow.sh @@ -0,0 +1,11 @@ +#!/bin/bash + +stow_dotfiles() { + stow dots + stow -d dots -S zsh -t ~/ + stow hyprland + + echo "Dotfiles stowed successfully!" +} + +stow_dotfiles