Apps / Scripts / Themes

Apps / Scripts / Themes


dpkg --get-selections > Package.list

http://www.netpipe.ca/paste/paste.php?id=6  ubuntu package list for developers.

 

Some of my repository’s

https://github.com/netpipe/subten – remote admin tools for linux

https://github.com/netpipe/mkahawa – cyber cafe management

https://github.com/netpipe/edisk – encrypted disk maker

https://github.com/netpipe/liarliar – voice stress analysis for gtk


Theme / Startup / Scripts Repository

https://github.com/netpipe/videoDriverUpdater – tools and scripts for linux

https://github.com/aizquier/typewriter-sounds

https://github.com/mig/gedit-themes

https://github.com/gmate/gmate


this is for /etc/pm/sleep.d/jackd set file to executable otherwise pulse wont restart jackd which eats up cpu while hanging, every suspend resume.

 

#!/bin/bash
case “$1” in
#   hibernate|suspend)
#       sudo -u USERNAME env DISPLAY=:0 zenity –info –text “do stuff on suspend”
#        ;;
thaw|resume)
#BEEP
killall jackd -9 & sleep 55 & killall pulseaudio;
;;
esac