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
tell application "System Events" | |
-- get current clipboard contents as a string | |
-- set the clipboad to your password | |
set the clipboard to "PASSWORD" | |
-- start playing with the VPN | |
tell current location of network preferences | |
-- set the name of the VPN service from your Network Settings |
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
# Had to install libcanberra, sound files, and then symlink to old directory structure | |
# Install libcanberra (Assuming Arch). Google for debian/ubuntu/RHEL flavors | |
yaourt -S libcanberra ubuntu-sounds | |
# Make the old school lib directory | |
sudo mkdir -p /usr/lib/x86_64-linux-gnu/libcanberra-0.28 | |
# Yes, it is hardcoded to that path. Yes, they want version 0.28. This is current as of 12.1.14 |
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
# Git-SVN is brokeds on OSXY. | |
# Here is step by step things to fix it. | |
sudo cpan SVN::Core | |
# Now find the executable for git-svn | |
locate git-svn | |
# This should be something like: | |
"/Applications/Xcode.app/Contents/Developer/usr/libexec/git-core/git-svn" |
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
# Configuration is split into the following directives: | |
# config (for global configurations) | |
config defaultToCurrentScreen true | |
config resizePercentOf screenSize | |
config nudgePercentOf screenSize | |
config secondsBetweenRepeat 0.1 | |
config checkDefaultsOnLoad true | |
config focusCheckWidthMax 3000 |