Skip to content

Instantly share code, notes, and snippets.

View lewisgoddard's full-sized avatar
💼
Seeking work

Lewis Goddard lewisgoddard

💼
Seeking work
View GitHub Profile
@lewisgoddard
lewisgoddard / AbTrans.md
Last active August 29, 2015 13:58
Abbreviated Transcript of Get Involved with elementary OS Video: youtu.be/w1wea4wpkN4

Note: Things are not quotes unless in quotation marks.

Granite Popovers

Moving away from Granite Popovers to GTK Popovers (should be used for new apps).
Wingpanel is not being changed just yet as the popovers are a major part of it and it is a lot of work for the gain.

// TODO Name

@lewisgoddard
lewisgoddard / Install_Spotify_Preview_in_Linux.sh
Last active May 18, 2016 11:12
Install Spotify Preview in Linux
# Commands from https://www.spotify.com/uk/download/linux/
# 1. Add the Spotify repository signing key to be able to verify downloaded packages
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys BBEBDCB318AD50EC6865090613B00F1FD2C19886 &&
# 2. Add the Spotify repository
sudo apt-add-repository "deb http://repository.spotify.com stable non-free" &&
# 3. Update list of available packages
sudo apt-get update &&
# 4. Install Spotify
sudo apt-get install -y spotify-client
@lewisgoddard
lewisgoddard / install_flash_for_midori.sh
Last active February 19, 2017 19:02
This one single method will work in both 64bit and 32bit systems by using the 32bit flash natively, or emulating it. Either way, it uses nspluginwrapper, which will pull in a lot of libraries (packages), but most of them should be quite small. You can download and execute this file or just copy and paste the whole block into your terminal, then …
clear &&
echo 'Installing Flash for Midori' &&
read -p 'Press Enter to continue, or abort by pressing CTRL+C' nothing &&
mkdir -p ~/.mozilla/plugins &&
wget https://fpdownload.adobe.com/get/flashplayer/pdc/11.2.202.626/install_flash_player_11_linux.i386.tar.gz &&
tar -zxvf install_flash_player_11_linux.i386.tar.gz libflashplayer.so &&
rm install_flash_player_11_linux.i386.tar.gz &&
if [ $(getconf LONG_BIT) = '64' ]
then
mv libflashplayer.so ~/.mozilla/plugins/libflashplayer.32.so &&