Browse Source

Merge branch 'master' of github.com:angrygoats/essentials

Taylor Bockman 8 years ago
parent
commit
b76d69c15b
  1. 4
      dotfiles/config/nvim/init.vim
  2. 23
      ubuntu/README.md

4
dotfiles/config/nvim/init.vim

@ -49,6 +49,7 @@ Plug 'digitaltoad/vim-jade'
Plug 'wavded/vim-stylus'
Plug 'raichoo/haskell-vim'
Plug 'OCamlPro/ocp-indent'
Plug 'slim-template/vim-slim'
" Org Mode
Plug 'jceb/vim-orgmode'
@ -70,7 +71,8 @@ if !has("win32") || !has("win16")
" on vim start
Plug 'scrooloose/nerdtree'
" For nerdtree indicators of what has changed
Plug 'Xuyuanp/nerdtree-git-plugin'
" Make Vim play nice with tmux
" Use <c-h> <c-j> <c-k> <c-l>

23
ubuntu/README.md

@ -10,19 +10,26 @@ Supply either `desktop` or `laptop` as the argument to the installer. Otherwise,
## Desktop Setup Information
![desktop screenshot](../current-desktop-desktop.png?raw=true "Current Desktop")
Installing Ubuntu on a desktop with these scripts is a little different. I currently use cinnamon instead of xmonad on my desktop.
### Nvidia Graphics Card Issues with LUKS
### Nvidia Graphics Card Issues - Booting to Black Screen with Ubuntu 16.04 and LUKS
It seems that the Nvidia proprietary drivers screw up booting into the splash
screen irrepairably. This likely won't bother you much if you don't use LUKS
but for those of us who do disabling the splash screen is the only way to
be able to enter your password in and continue booting.
screen irrepairably. This likely won't bother you much if you don't use LUKS (I'm guessing since it will just boot through to where it needs to be anyway) but for those of us who do, disabling the splash screen is the only way I have found to be able to enter your password in and continue booting.
To fix this problem change `splash` to `nosplash` in your GRUB config and run `sudo update-grub` to lock in the changes.
If you've found yourself in a situation where you are booting into a black screen and don't know how to fix it:
To fix this problem change `splash` to `nosplash`
in your GRUB config and run `sudo update-grub` to lock in the changes.
1. Push right shift a bunch of times until you get to the GRUB boot selection screen
2. Select your installation and press `e`
3. Scroll down until you see a place where it says `quiet splash`
4. Erase `quiet splash` and put either `nomodeset` or `nvidia.modeset=0` - If one doesn't work try the other (this isn't a permanent change)
5. You should be able to boot into your install far enough to `ctrl + alt + fN` (where N is 1 - 6) into a virtual terminal so you can make the above `nosplash` change to your GRUB config permanent
An additional script `fixplymouth.sh` was included here for archiving purposes. This script did not work for me, but it may work for your install. If you want to keep the splash script, try running `fixplymouth.sh` first.
An additional script `fixplymouth.sh` was included here for archiving purposes. This script did not work for me, but it may work for your install. If you want to keep the splash screen, try running `fixplymouth.sh` first.
## Laptop Setup Information
@ -46,7 +53,7 @@ It also substitutes Ubuntu's stock media players with less resource intensive al
*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
### X Server
To start Xmonad simply type `startx` at the tty.

Loading…
Cancel
Save