]> code.delx.au - dotfiles/blobdiff - README.md
gnome-setup.sh
[dotfiles] / README.md
index 023303005613dd1798380e905c54b2b846702c3d..72a4f59a1ec2511b107206f5a0f2da32297b51db 100644 (file)
--- a/README.md
+++ b/README.md
@@ -1,11 +1,11 @@
 # dotfiles
 
-This is a set of configuration files for a bunch of Unix apps I use regularly.
+Configuration files for a bunch of Unix apps I use regularly.
 
 ## Basic setup
 
 ```
-git clone https://delx.net.au/git/dotfiles .dotfiles
+git clone https://code.delx.au/dotfiles .dotfiles
 ```
 
 
@@ -22,14 +22,7 @@ Symlink the config files into your home directory:
 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/
 ```
 
 
@@ -37,48 +30,7 @@ ln -s ../git-hooks hooks
 
 Clone the dotemacs repository:
 ```
-git clone https://delx.net.au/git/dotemacs ~/.emacs.d
-```
-
-
-Initialise the emacs package submodules
-```
-cd ~/.emacs.d
-git submodule init
-git submodule update
-```
-
-
-Set up Emacs daemon to autostart:
-```
-mkdir -p ~/.config/autostart
-ln -sf ~/.dotfiles/.config/autostart/emacs.desktop ~/.config/autostart
-mkdir -p ~/.local/share/applications
-ln -sf ~/.dotfiles/.local/share/applications/emacs.desktop ~/.local/share/applications/
-```
-
-
-## 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
+git clone https://code.delx.au/dotemacs ~/.emacs.d
 ```
 
 
@@ -123,14 +75,12 @@ Graphics acceleration, reduces tearing in video playback:
 layers.acceleration.force-enabled = true
 ```
 
-Enabling xinput2 gives pixel scrolling and fixes [bug #1276449](https://bugzilla.mozilla.org/show_bug.cgi?id=1276449).
+Don't prompt to reset profile if unused for a little while:
 ```
-# bash
-# ~/.xprofile
-export MOZ_USE_XINPUT2=1
+browser.disableResetPrompt = false
 ```
 
-Don't prompt to reset profile if unused for a little while:
+Open links from external apps in new window:
 ```
-browser.disableResetPrompt = false
+browser.link.open_newwindow.override.external = 2
 ```