initial commit
This commit is contained in:
commit
9d98d9f776
3 changed files with 32 additions and 0 deletions
12
README.md
Normal file
12
README.md
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
# dotfiles
|
||||||
|
|
||||||
|
my configs for GNU plus Linux plus Mozilla computers
|
||||||
|
|
||||||
|
Note that `push.sh` overwrites your system's config files, if you aren't a full disk backuper you can `./pull.sh && git stash && ./push.sh` if you aren't sure that you want to be me.
|
||||||
|
|
||||||
|
### Layout
|
||||||
|
|
||||||
|
`synced` - list of tracked files
|
||||||
|
`pull.sh` - updates repository from computer
|
||||||
|
`push.sh` - updates computer from repository
|
||||||
|
`./**` - tracked files
|
8
pull.sh
Executable file
8
pull.sh
Executable file
|
@ -0,0 +1,8 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
for synced in `cat synced`; do
|
||||||
|
echo -n $synced...
|
||||||
|
mkdir -p `dirname -- $synced`
|
||||||
|
cp $HOME/$synced .
|
||||||
|
echo done
|
||||||
|
done
|
12
synced
Normal file
12
synced
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
.config/nvim/init.vim
|
||||||
|
.config/nvim/coc-settings.json
|
||||||
|
.config/alacritty.yml
|
||||||
|
.config/sway/config
|
||||||
|
.config/sway/lock.sh
|
||||||
|
.config/sway/fancelock.sh
|
||||||
|
.config/i3status-rust/config.toml
|
||||||
|
.config/helix/config.toml
|
||||||
|
.config/helix/languages.toml
|
||||||
|
.zshrc
|
||||||
|
.zshenv
|
||||||
|
.vitetris
|
Loading…
Reference in a new issue