Skip to content

Instantly share code, notes, and snippets.

@mikeflynn
Last active December 17, 2015 11:38
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save mikeflynn/5603324 to your computer and use it in GitHub Desktop.
Save mikeflynn/5603324 to your computer and use it in GitHub Desktop.
My various Chromebook Pixel setup notes

Chromebook Pixel Configuration

What does this do? Good question. What you will end up with is essentially Chrome OS and Ubuntu (with KDE) running side by side.

1. Get in to developer mode

Hold down ESC + REFRESH + POWER, when it reboots hit CTRL + D, and ENTER to confirm.

(You will have to hit CTRL + D at ever boot when you see the scary dev mode OS screen.)

2. Download Crouton

http://goo.gl/fd3zc (documentation: https://github.com/dnschneid/crouton)

3. Install Crouton (& KDE)

Hit CTRL + ALT + T to open the crosh shell.

Type:

shell
sudo sh -e ~/Downloads/crouton -t core,chrome,touch,cli-extra,[unity|kde|xfce] [-r trusty] [-n $NAME]

Time to go get a Mountain Dew. Drink it slow.

4. Configure KDE for high-res

Update: Start with a setres command

setres 1680 1120

See all the resolution options with crouton here: https://github.com/dnschneid/crouton/wiki/Chromebook-Pixel

Open the start menu, search for "DPI" to get the font menu and set the font DPI to 200%.

Right-click on the task bar and click on height to adjust the height.

Open the Window Decorations setting. Click on Configure Decoration, and set the button size to "huge". Fix the stupid thing where KDE doesn't allow you to disable the trackpad tap by installing a special config app...

sudo apt-get install kde-config-touchpad

...then...:

mkdir ~/bin
touch notap.sh
chmod 777 notap.sh
vi notap.sh

...and...

#!/bin/sh
synclient MaxTapTime=0
synclient MaxDoubleTapTime=0

...finally add:

/home/$(`whoami`)/bin/notap.sh

to /etc/rc.local before the "exit 0;" line.

Running It

Once installation is complete run the following once:

sudo enter-chroot startkde

...and then enter the following when you want to start Ubuntu (now, and after full machine reboots):

sudo startkde

Otherwise, you can flip to Ubuntu by hitting: CTRL + ALT + FORWARD (arrow) then CTRL + ALT + REFRESH. Flip back to Chrome OS by hitting: CTRL + ALT + BACK (arrow)

Sources / More Info

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment