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
#!/bin/sh | |
# | |
# Installs Python 2.7.9 on Ubuntu 14.04 to include security updates | |
# Run this script with superuser privileges. | |
# | |
BASEDEPS="build-essential python-pip" | |
BUILDDEPS="libbz2-dev \ | |
libc6-dev \ | |
libgdbm-dev \ |
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
#!/bin/sh | |
# | |
# Installs Python 2.7.9 on Ubuntu 14.04 to include security updates | |
# Run this script with superuser privileges. | |
# | |
BASEDEPS="build-essential python-pip" | |
BUILDDEPS="libbz2-dev \ | |
libc6-dev \ | |
libgdbm-dev \ |
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
# bind this command to a shortcut | |
amixer -D pulse sset Master 5%- |
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
#!/bin/bash | |
wmctrl -lp | while read identity desktop_number PID window_title; do | |
echo $window_title | |
if [[ $string == *KeePassX* ]] | |
then | |
echo "It's there!"; | |
fi |
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
I had the same problem. I added this to my .emacs file: | |
(setq x-select-enable-clipboard t) | |
(setq interprogram-paste-function 'x-cut-buffer-or-selection-value) | |
Now Ctrl-C and Ctrl-v between Emacs and other applications work fine. |