This my configuration files as managed by dotbot.
Before doing anything initialize/update the submodules
git submodule update --init --recursive
or with older git
git submodule init
git submodule update
cd todo.actions.d
git submodule init
git submodule update
cd -
Then run
$ ./install
Re-running should not do anything.
- Things in
tools
are not run sway-wrapper
which sets up environment variables for applications to use wayland- gnome-terminal-colors-solarized - run
./gnome-terminal-colors-solarized/set_dark.sh
and go through the process ./configure-gnome-terminal
is not automatically run- Split vpn tunneling
- Copying
sys/etc/ld.so.conf.d/usr-local.conf
into/etc/ld.so.conf.d/
and runningldconfig
. This adds/usr/local/lib
to yourLD_LIBRARY_PATH
. If ldconfig gives a message about/etc/ld.so.conf
missing, copy that file over as well.
After running ssh-keygen
, the key can be copied to the clipboard using
$ xclip -sel c < ~/.ssh/id_rsa.pub
These instructions are inspired/modified from mantid.
git submodule foreach git fetch -p -t
- go into each (updated) submodule and decide whether or not to move what revision to use. This is generally done by either:
git tag
to list the tags thengit checkout tagname
git rebase -v origin/master
git commit <submodule directory names without a trailing slash>