Here's where I keep a lot of my configuration stuff.
-
Generate an SSH Key
$ ssh-keygen -t rsa -b 4096 -C "[email protected]"
-
Upload the SSH key to GitHub.
-
Clone this repository.
$ cd ~ $ mkdir projects $ cd projects $ git clone [email protected]:rockymeza/dotfiles $ cd dotfiles
-
Delete some default files.
$ rm ~/.bashrc $ rm -r ~/Music ~/Pictures # etc.
-
Password-less sudo
$ sudo visudo # look for the line about %wheel and uncomment it
-
Run the
install.sh
script. It will link up the dotfiles and install lots of packages.$ ./install.sh
-
Run yeganesh a couple of times in order for it to learn about your programs.
$ yeganesh -x (Hit Esc) $ yeganesh -x (Hit Esc)
-
Kill the
gdm
process so that it can pick up on xmonad. (Note this will log out out).$ sudo pkill gdm