Cinnamon 2.0.14 https://github.com/linuxmint/Cinnamon/archive/2.0.14.tar.gz
Cinnamon Master https://github.com/linuxmint/Cinnamon.git
| xinput list | |
| xinput list-props "Elo TouchSystems Elo TouchSystems 2515 IntelliTouch Plus USB Touchmonitor" | |
| xinput set-prop "Elo TouchSystems Elo TouchSystems 2515 IntelliTouch Plus USB Touchmonitor" "Coordinate Transformation Matrix" 0.5 0.0 0.5 0.0 1.0 0.0 0.0 0.0 1.0 |
Cinnamon 2.0.14 https://github.com/linuxmint/Cinnamon/archive/2.0.14.tar.gz
Cinnamon Master https://github.com/linuxmint/Cinnamon.git
| # http://henrik.nyh.se/2008/12/git-dirty-prompt | |
| # http://www.simplisticcomplexity.com/2008/03/13/show-your-git-branch-name-in-your-prompt/ | |
| # username@Machine ~/dev/dir[master]$ # clean working directory | |
| # username@Machine ~/dev/dir[master*]$ # dirty working directory | |
| function parse_git_dirty { | |
| [[ $(git status 2> /dev/null | tail -n1) != "nothing to commit (working directory clean)" ]] && echo "*" | |
| } | |
| function parse_git_branch { | |
| git branch --no-color 2> /dev/null | sed -e '/^[^*]/d' -e "s/* \(.*\)/[\1$(parse_git_dirty)]/" |
| role :servers, "iv11", "iv12", "iv13" | |
| task :disk_space, :roles => :servers do | |
| run "df -h" | |
| end | |
| task :system_updates, :roles => :servers do | |
| run "sudo apt-get update && sudo apt-get -y dist-upgrade" | |
| end |
Taken from: http://askubuntu.com/questions/289659/using-nvidia-319-with-bumblebee
sudo add-apt-repository ppa:xorg-edgers/ppa
sudo apt-get update
sudo apt-get install nvidia-319 nvidia-settings-319
| function wp_gear_manager_admin_scripts() { | |
| wp_enqueue_script('media-upload'); | |
| wp_enqueue_script('thickbox'); | |
| wp_enqueue_script('jquery'); | |
| } | |
| function wp_gear_manager_admin_styles() { | |
| wp_enqueue_style('thickbox'); | |
| } |