diff options
Diffstat (limited to 'init.sh')
-rwxr-xr-x | init.sh | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -0,0 +1,5 @@ +#!/bin/sh + +find . -type d -mindepth 1 -maxdepth 1 -not -path '*/.*' \ + | sed "s/^\.\///" \ + | while read dir; do stow --no-folding "$dir"; done |