Sunday, May 20, 2012

Auto login xubuntu

Autologin - Xubuntu To enable autologin in Xubuntu:
Open the file /etc/lightdm/lightdm.conf

sudo gedit /etc/lightdm/lightdm.conf

Modify the value of the string "autologin-user" with the required user name
Ex:
autologin-user=pedro

Save the file Reboot/ restart

Git get all remote branches

git branch -r \ | grep -v '\->' \ | sed "s,\x1B\[[0-9;]*[a-zA-Z],,g" \ | while read remote; do \ git branc...