Skip to content

Instantly share code, notes, and snippets.

@joshfinley
Last active April 9, 2018 17:37
Show Gist options
  • Save joshfinley/ff4d046f0a4e82128ddbb297660e5c23 to your computer and use it in GitHub Desktop.
Save joshfinley/ff4d046f0a4e82128ddbb297660e5c23 to your computer and use it in GitHub Desktop.
apt-get update
apt-get upgrade -y
# get all the packages
apt-get install openbox \
conky conky-all \
gtk-theme-switch gtk2-engines \
lxappearance \
curl \
wget \
lm-sensors \
feh \
mpd \
git cmake \
build-ssential \
libcairo2-dev libpango1.0-dev \
libglib2.0-dev libimlib2-dev libgtk2.0-dev \
libxinerama-dev libx11-dev libxdamage-dev \
libxcomposite-dev libxrender-dev libxrandr-dev \
librsvg2-dev libstartup-notification0-dev
# make a dir to hold git repos and source code
mkdir /home/pi/source
mkdir /home/pi/source/repos
cd /home/pi/source/repos
# build tint2
git clone https://gitlab.com/o9000/tint2.git
cd tint2
mkdir build
cmake ..
make
make install
cd /home/pi/source/repos/
# clone addy-fe's repos
git clone https://github.com/addy-dclxvi/tint2-theme-collections /home/pi/.config/tint2 --depth 1
git clone https://github.com/addy-dclxvi/openbox-theme-collections /home/pi/.themes
git clone https://github.com/addy-dclxvi/gtk-theme-collections /home/pi/.themes
git clone https://github.com/addy-dclxvi/conky-theme-collections /home/pi/.config/conky --depth 1
# install nodejs
curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
sudo apt-get install -y nodejs
# install arc icons
git clone https://github.com/horst3180/arc-icon-theme --depth 1 && cd arc-icon-theme
./autogen.sh --prefix=/usr
sudo make install
cd /home/pi/source/repos/
# install papyrus
wget -qO- https://raw.githubusercontent.com/PapirusDevelopmentTeam/papirus-icon-theme/master/install.sh | sh
# install feather icons
npm i -g feather-icons
# config openbox
touch /home/pi/.config/openbox/autostart
echo "xset -b"
echo "conky -c /home/pi/.config/conky/geddy/geddyconkyrc &" >> /home/pi/.config/openbox/autostart
echo "tint2 -c /home/pi/.config/tint2/blocks/blocks.tint2rc &" >> /home/pi/.config/openbox/autostart
echo "feh --bg-scale /home/pi/pictures/f7iKyC7.jpg" >> /home/pi/.config/openbox/autostart
# get and set wallpaper
mkdir /home/pi/pictures
cd /home/pi/pictures
wget https://i.imgur.com/f7iKyC7.jpg
feh --bg-scale /home/pi/pictures/f7iKyC7.jpg
cd /home/pi/source/repos/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment