- Clean pkg cache
- Remove unused packages (orphans)
- Clean cache in /home
- remove old config files
- Find and Remove
- duplicates
- empty files
- empty directories
- broken symlinks
- Install Xfce
- Install gvfs (for trash)
- Add
exec startxfce4
to~/.xinitrc
- Set it up like our old friend, GNOME 2
- Install
networkmanager
andnetwork-manager-applet
- Install the Bluebird theme
- Install the elementary icons
- Get the Arch logo and use it as the Applications menu icon
- Install Chromium
- Clone dotfiles repo and "install"
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import email, getpass, imaplib, os | |
detach_dir = '.' # directory where to save attachments (default: current) | |
user = raw_input("Enter your GMail username:") | |
pwd = getpass.getpass("Enter your password: ") | |
# connecting to the gmail imap server | |
m = imaplib.IMAP4_SSL("imap.gmail.com") | |
m.login(user,pwd) | |
m.select("cs2043") # here you a can choose a mail box like INBOX instead |