Skip to content

Instantly share code, notes, and snippets.

@leicht-io
Last active January 18, 2020 13:06
Show Gist options
  • Save leicht-io/6dfe9657d4e33caeae3e6a35e3e33cb5 to your computer and use it in GitHub Desktop.
Save leicht-io/6dfe9657d4e33caeae3e6a35e3e33cb5 to your computer and use it in GitHub Desktop.
# Update Raspbian
sudo apt-get update
sudo apt-get upgrade
sudo apt-get dist-update
sudo rpi-update
# Remove games and more
sudo apt-get purge --auto-remove scratch debian-reference-en dillo idle3 python3-tk idle python-pygame python-tk lightdm gnome-themes-standard gnome-icon-theme raspberrypi-artwork gvfs-backends gvfs-fuse desktop-base lxpolkit netsurf-gtk zenity xdg-utils mupdf gtk2-engines alsa-utils lxde lxtask menu-xdg gksu midori xserver-xorg xinit xserver-xorg-video-fbdev libraspberrypi-dev libraspberrypi-doc dbus-x11 libx11-6 libx11-data libx11-xcb1 x11-common x11-utils lxde-icon-theme gconf-service gconf2-common python-rpi.gpio geany geany-common *pygame thonny qpdfview mousepad leafpad galculator xarchiver lxtask vi gpicview piclone rp-prefapps dillo
sudo apt-get --yes autoclean
sudo apt-get --yes clean
# Install other
sudo apt-get install htop vim -y
# Edit bootscreen
https://scribles.net/customizing-boot-up-screen-on-raspberry-pi/
# Disable Menu Bar
vi /home/pi/config/lxsession/LXDE-pi/autostart
#@lxpanel --profile LXDE
# Disable screensaver
Comment out the screensaver line, e.g.:
@lxpanel --profile LXDE-pi
@pcmanfm --desktop --profile LXDE-pi
#@xscreensaver -no-splash
@sh ${HOME}/.config/lxsession/LXDE-pi/autokey.sh
Then add these lines:
#Disable screensaver:
@xset s noblank
@xset s off
@xset -dpms
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment