]> code.delx.au - dotfiles/blobdiff - README.md
Updated README
[dotfiles] / README.md
index 4537283ba65f14828f45ac30395a5af7b5656f97..5e13b2a6148d45d5e737e5183ffd1a85e527dbc3 100644 (file)
--- a/README.md
+++ b/README.md
@@ -5,7 +5,7 @@ This is a set of configuration files for a bunch of Unix apps I use regularly.
 ## Basic setup
 
 ```
-git clone http://delx.net.au/git/dotfiles .dotfiles
+git clone https://delx.net.au/git/dotfiles .dotfiles
 ```
 
 
@@ -13,37 +13,30 @@ Make a backup of any existing files:
 ```
 cd
 mkdir -p backup
-mv .bash .bash_profile .bashrc .gitconfig .inputrc .pythonrc.py .screenrc .vim .vimrc backup/
+mv .bash .bash_profile .bashrc .gitconfig .inputrc .pythonrc.py .screenrc .vimrc backup/
 ```
 
 
 Symlink the config files into your home directory:
 ```
-ln -sf ~/.dotfiles/{.bash,.bash_profile,.bashrc,.gitconfig,.inputrc,.pythonrc.py,.screenrc,.vim,.vimrc} ~/
+ln -sf ~/.dotfiles/{.bash,.bash_profile,.bashrc,.gitconfig,.inputrc,.pythonrc.py,.screenrc,.vimrc} ~/
 ln -sf ~/.dotfiles/.gitignore_global ~/.gitignore
 ln -sf ~/.dotfiles/.ssh/config ~/.ssh/
-```
-
-
-Symlink the git hooks
-```
-cd ~/.dotfiles/.git/
-rm -rf hooks
-ln -s ../git-hooks hooks
+mkdir ~/.config/environment.d && ln -sf ~/.dotfiles/.config/environment.d/* ~/.config/environment.d/
 ```
 
 
 ## Emacs setup
 
-Symlink the emacs config:
+Clone the dotemacs repository:
 ```
-ln -sf ~/.dotfiles/.emacs.d ~/
+git clone https://delx.net.au/git/dotemacs ~/.emacs.d
 ```
 
 
 Initialise the emacs package submodules
 ```
-cd ~/.dotfiles
+cd ~/.emacs.d
 git submodule init
 git submodule update
 ```
@@ -58,30 +51,6 @@ ln -sf ~/.dotfiles/.local/share/applications/emacs.desktop ~/.local/share/applic
 ```
 
 
-## xmonad setup
-
-Symlink the xmonad config:
-```
-mkdir -p ~/.xmonad
-ln -sf ~/.dotfiles/.xmonad/* ~/.xmonad/
-```
-
-
-Set up xmonad to autostart:
-```
-mkdir -p ~/.config/autostart
-ln -sf ~/.config/autostart/{xmonad.desktop,Kupfer.desktop} ~/.config/autostart
-```
-
-
-## XFCE setup
-
-```
-xfconf-query -n -t bool -c xfce4-session -p /startup/ssh-agent/enabled -s true
-xfconf-query -n -t string -c xfce4-session -p /startup/ssh-agent/type -s ssh-agent
-```
-
-
 ## Font setup
 
 Symlink the font config:
@@ -117,3 +86,13 @@ Send DNS through SOCKS proxy:
 ```
 network.proxy.socks_remote_dns = true
 ```
+
+Graphics acceleration, reduces tearing in video playback:
+```
+layers.acceleration.force-enabled = true
+```
+
+Don't prompt to reset profile if unused for a little while:
+```
+browser.disableResetPrompt = false
+```