1
0
mirror of https://github.com/alrayyes/dotfiles/ synced 2023-11-14 15:56:30 +00:00

Refacatored install script incorporating shellcheck recommendations

This commit is contained in:
Ryan Kes 2019-11-10 20:50:18 +01:00
parent b9003fad53
commit 431b1a0640
2 changed files with 9 additions and 4 deletions

View File

@ -12,7 +12,12 @@ A repository of my personal configuration files.
./install.sh ./install.sh
``` ```
# Packages Configured # Find & delete orphaned symlinks
```shell
./clean-dead-symlinks
```
# Packages configured
* [dunst](https://dunst-project.org/) * [dunst](https://dunst-project.org/)
* [firejail](https://firejail.wordpress.com/) * [firejail](https://firejail.wordpress.com/)
@ -33,7 +38,7 @@ A repository of my personal configuration files.
* [weechat](https://weechat.org/) * [weechat](https://weechat.org/)
* [zsh](https://www.zsh.org/) * [zsh](https://www.zsh.org/)
# Custom Packages configured # Custom packages configured
These are custom packages I use (mostly [suckless](https://suckless.org/)). These are custom packages I use (mostly [suckless](https://suckless.org/)).

View File

@ -1,6 +1,6 @@
#!/usr/bin/env bash #!/usr/bin/env bash
for d in `ls -d */ | cut -f1 -d '/'`; for d in $(find -- */ -maxdepth 0 -type d | cut -f1 -d '/');
do do
( stow -t $HOME $d ) ( stow -t "$HOME" "$d" )
done done