diff options
author | Aaditya Dhruv <[email protected]> | 2022-07-11 12:09:15 -0700 |
---|---|---|
committer | Aaditya Dhruv <[email protected]> | 2022-07-11 12:09:15 -0700 |
commit | 797d1cec7be199a6c72d21ed0d51329e26005602 (patch) | |
tree | 6c172089a920422cdbae53bd3b445a7806922b46 | |
parent | a5203f40977dbced1dd470d1992f3a567aca0007 (diff) |
auto install and zsh mv -> cp fix
-rw-r--r-- | auto-setup.sh | 4 | ||||
-rw-r--r-- | zsh-setup.sh | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/auto-setup.sh b/auto-setup.sh new file mode 100644 index 0000000..82b20a0 --- /dev/null +++ b/auto-setup.sh @@ -0,0 +1,4 @@ +mkdir ~/.config +cp -r .config/* ~/.config/ +cp -r .screenlayout ~/ +cp -r .wallpapers ~/ diff --git a/zsh-setup.sh b/zsh-setup.sh index 83c2157..d4d7528 100644 --- a/zsh-setup.sh +++ b/zsh-setup.sh @@ -9,4 +9,4 @@ git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM: git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k -mv .zshrc .p10k ~/ +cp .zshrc .p10k ~/ |