Install required packages:
apt-get install libxinerama-dev libx11-dev
Customization of [dwm], which base code of dwm may be found under:
git clone http://git.suckless.org/dwm
# change postgresql template1 db encoding to utf8 (unicode) by dropping it and recreating from template0 | |
UPDATE pg_database SET datistemplate=false WHERE datname='template1'; | |
drop database template1; | |
create database template1 with template = template0 encoding = 'UTF8'; |
#source: http://www.debianadmin.com/how-to-sendemail-from-the-command-line-using-a-gmail-account-and-others.html | |
#--help is very helpful | |
#simple - message from file | |
sendEmail -f [email protected] -t [email protected] \ | |
-u "this is the test tile" -m "this is a test message" \ | |
-a /mnt/storage/document.sxw "/root/My Documents/Work Schedule.kwd" | |
-s smtp.gmail.com:587 \ | |
-xu my.account -xp mypasswd |