Add deployment script for distro agnostic dotfiles
This commit is contained in:
parent
ccac03f685
commit
862e544a71
2 changed files with 7 additions and 1 deletions
|
@ -15,7 +15,7 @@ modify and share this configuration to your heart's content, no attribution requ
|
||||||
├── assets ; Binary assets tracked in git
|
├── assets ; Binary assets tracked in git
|
||||||
│ ├── screenshot.png
|
│ ├── screenshot.png
|
||||||
│ └── wallpaper.jpg
|
│ └── wallpaper.jpg
|
||||||
├── dotfiles ; GNU stow compatible dotfiles directory
|
├── dotfiles ; Distro agnostic dotfiles
|
||||||
│ └── ... ; Stores configurations that do not depend on Nix
|
│ └── ... ; Stores configurations that do not depend on Nix
|
||||||
├── flake.lock
|
├── flake.lock
|
||||||
├── flake.nix ; Entry point
|
├── flake.nix ; Entry point
|
||||||
|
|
6
dotfiles/deploy.sh
Executable file
6
dotfiles/deploy.sh
Executable file
|
@ -0,0 +1,6 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
for f in *; do
|
||||||
|
[ -d "$f" ] && ln -svf "$PWD/$f" "$HOME/.config"
|
||||||
|
done
|
||||||
|
|
Loading…
Reference in a new issue