This file contains hidden or 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
| # Package to install, to get an open terminal in Right-Click context menu. | |
| sudo apt-get install nautilus-open-terminal | |
| # To move window controls in your Ubuntu from left to right… | |
| gconftool-2 --type string --set /apps/metacity/general/button_layout "menu:minimize,maximize,close" | |
| # To switch back | |
| gconftool-2 --type string --set /apps/metacity/general/button_layout "close,maximize,minimize:menu" | |
| # Repeat last command with sudo | |
| sudo !! |
This file contains hidden or 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
| #!/usr/bin/env python | |
| # This is a demonstration script for Facebook Chat | |
| # using the X-FACEBOOK-PLATFORM SASL mechanism. | |
| # It requires pyfacebook and pyxmpp to be installed. | |
| # This client only works for desktop applications (configured in the | |
| # developer app), and uses the old-style auth.getSession mechanism to get a | |
| # Facebook session. For newer-style or web apps, only the | |
| # `get_facebook_client` function should have to change. |
NewerOlder