Taylor Bockman
28410441fc
|
9 years ago | |
---|---|---|
.. | ||
99_physlock_on_hibernate_and_suspend | 9 years ago | |
README.md | 9 years ago | |
installer.sh | 9 years ago |
README.md
Ubuntu Install
By running the installer it wipes a complete install and turns it into something more minimal and less resource intensive. An alternative would've been to start with the Ubuntu minimal disk and work up, but the full Ubuntu ISO comes with some conveniences that I wanted to keep. Kit includes:
- Compton
- Xmonad
- Dmenu
- Lemonbar
- Urxvt
- Physlock
- feh
- zsh
It also substitutes Ubuntu's stock media players with less resource intensive alternatives such as mplayer
and
ffmpeg
.
NOTE: After rebooting you will boot into a black screen. See the section on GRUB for details. To get to a login
screen press ctrl + alt + f1
and login normally.
X Server
To start Xmonad simply type startx
at the tty.
Make sure Xresources and Xinitrc are symlinked properly in your home directory. If you have any problems getting Xmonad to start, check the logs, and then those two files.
To Kill the server at any time press alt + shift + q
.
Xmonad Hotkeys
Here are some hotkeys to get you started:
mod4 + shift + q
: Kill X servermod4 + q
: Recompile Xmonadmod4 + w
: Move window upmod4 + s
: Move window downmod4 + a
: Move window leftmod4 + d
: Move window rightmod4 + enter
: Spawn a new windowmod4 + space
: Launch dmenumod4 + h
: Shift focus leftmod4 + j
: Shift focus downmod4 + k
: Shift focus upmod4 + l
: Shift focus rightmod4 + <1...9>
: Change to nth workspacemod4 + t
: Retile windowsmod4 + shift + c
: Close currently focused window
GRUB
A small change has to be applied to stop Ubuntu from booting into a non-existent display manager's login screen:
- Type
sudo nano /etc/default/grub
- Find
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
- Replace (2) with
GRUB_CMDLINE_LINUX_DEFAULT="text"
- Run
sudo upgrade-grub
This will force Ubuntu to boot into a tty. To start Ubuntu type startx
in any tty.
Changing Desktop Backgrounds
Inside of ~/.xinitrc
is a line that starts with feh
. Change the image being passed into this
to change the desktop background. Kill the xserver with alt + shift + q
and startx
again.
TODO
- Have installer script
git clone
essentials and symlink everything correctly. - Have installer automatically modify the grub config to set up text login mode.