dotfiles
dotfiles copied to clipboard
How would you manage directories with both system-wide and user specific files?
Hi,
How would you manage directories with both system-wide and user specific files?
A directory like xorg.
A solution might be:
$ pwd
~/dotfiles
$ stow -t /etc -d xorg etc
$ stow -t ~/.config -d xorg .config
Not really pretty. Is there any better way to get around this?
I was wondering the exact same thing!