From 5c957e70166c6a9f2269da11666a478ea24b21e6 Mon Sep 17 00:00:00 2001 From: hesam-init Date: Fri, 23 Feb 2024 23:36:50 +0330 Subject: [PATCH] fix: stow shell file --- .stow-local-ignore | 6 ------ dots/.stow-local-ignore | 1 + hyprland/.stow-local-ignore | 1 + stow.sh | 11 +++++++++++ 4 files changed, 13 insertions(+), 6 deletions(-) delete mode 100644 .stow-local-ignore create mode 100644 dots/.stow-local-ignore create mode 100644 hyprland/.stow-local-ignore create mode 100755 stow.sh 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