Skip to content

Instantly share code, notes, and snippets.

View mwangivalentine's full-sized avatar

Valentine Mwangi mwangivalentine

View GitHub Profile
suhosin.executor.include.whitelist = phar;
disable_functions = none;
memory_limit = 512M;
@mwangivalentine
mwangivalentine / RaspberryPi3-AutoLoad-Programs
Created May 25, 2016 13:04
Raspberry Pi 3: Auto Starting Programs upon reboot
# This is a script for autostarting application on lxde
# First, run this command 'sudo nano ~/.config/lxsession/LXDE/autostart',
# And then replace the following. If there exists other lines, add only the required bit.
@lxpanel --profile LXDE
@pcmanfm --desktop --profile LXDE
@xscreensaver -no-splash
# Hide mouse
@unclutter
@mwangivalentine
mwangivalentine / RaspberryPi3-Screen-Blanking
Last active May 26, 2016 17:20
Raspbian command to avoid blanking screen after every 10 minutes.
# Run this in the terminal and voila! No more blanking screen...
gconftool-2 --type bool --set /apps/gnome-screensaver/idle_activation_enabled "false"