README.md (815B)
1 # Dotfiles 2 3 Configuration for various bits of software I use. 4 5 This is tailored primarily for an OpenBSD desktop. 6 7 I am typically using a ksh-based shell, hence no `.bashrc` or similar. Shell 8 configuration is in `~/.config/shrc` and sourced using the `ENV` environment 9 variable from `~/.xsession`. 10 11 The `.Xresources` file is not necessarily used as terminal configuration if the 12 terminal I'm using doesn't support it. In that case it just acts as a reference 13 for my preferred terminal colour scheme(s). 14 15 ## Installation 16 17 Run the script `setup.sh` which clones the dotfiles repository, makes the 18 directories I need, and does some other miscellaneous stuff. 19 20 The script is intended to be run on a fresh install using a command such as: 21 22 ``` 23 ftp -o - https://git.sr.ht/~jbauer/dotfiles/blob/master/setup.sh | sh - 24 ```