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
#!/usr/bin/python | |
#----------AUTHOR------------ | |
# Jacob Salmela | |
# 20 February 2014 | |
# Updated: 2014-12-11 | |
#-----------IMPORTS---------- | |
from os import system | |
from subprocess import call | |
from socket import gethostname |
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
#!/usr/bin/python | |
#----------AUTHOR------------ | |
# Jacob Salmela | |
# 3 January 2014 | |
#-----------IMPORTS---------- | |
from subprocess import call | |
from platform import mac_ver | |
from re import findall | |
from socket import gethostname |
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 | |
volumeName=$(diskutil info / | awk '/Volume Name/ {print substr ($0, index ($0,$3))}') | |
echo "Current volume name: $volumeName" | |
# If the volume is not named Macintosh HD | |
if [ "$volumeName" != "Macintosh HD" ];then | |
# Rename it | |
diskutil renameVolume "$volumeName" "Macintosh HD" | |
volumeName=$(diskutil info / | awk '/Volume Name/ {print substr ($0, index ($0,$3))}') | |
echo "Root volume is now named: $volumeName" |
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 | |
#----------VARIABLES--------- | |
undesiredNetwork="SSID-To-Remove" | |
wifiOrAirport=$(/usr/sbin/networksetup -listallnetworkservices | grep -Ei '(Wi-Fi|AirPort)') | |
echo $wifiOrAirport | |
wirelessDevice=$(networksetup -listallhardwareports | awk "/$wifiOrAirport/,/Device/" | awk 'NR==2' | cut -d " " -f 2) | |
echo $wirelessDevice | |
#-----------SCRIPT----------- | |
# Remove the SSID from the list of preferred networks |
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
#!/usr/bin/python | |
# Universal enforce wallpaper script for 10.9 and up | |
# Based on https://gist.github.com/gregneagle/6957826#file-gistfile1-py | |
from AppKit import NSWorkspace, NSScreen | |
from Foundation import NSURL | |
from platform import mac_ver | |
from subprocess import call | |
from os import system | |
from os import getlogin | |
import sqlite3 |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>Label</key> | |
<string>org.domain.enforceWallpaper</string> | |
<key>ProgramArguments</key> | |
<array> | |
<string>/usr/local/triggers/enforceWallpaper.py</string> | |
</array> |
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
repeat | |
tell application "System Events" to delay 3.0 | |
tell application "System Events" to set currentApp to name of first process where frontmost is true | |
if currentApp is "Spotify" then | |
try | |
-- Create a random number to do one of three things | |
set randomNum to random number from 1 to 3 | |
if randomNum is 1 then | |
tell application "Spotify" to pause |
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
repeat | |
tell application "System Events" to delay 3.0 | |
tell application "System Events" to set currentApp to name of first process where frontmost is true | |
if currentApp is "Safari" then | |
try | |
tell application "System Events" | |
tell process "Safari" | |
key down {shift} | |
-- Click the minimize button |
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 | |
# Randomly moves the mouse and/or clicks | |
# | |
# Random delay (in seconds) to trigger an action | |
function random_delay() | |
{ | |
RANGE=180 | |
delayInSeconds=$RANDOM | |
let "delayInSeconds %=$RANGE" |