Skip to content

Instantly share code, notes, and snippets.

{
"title": "Apache and Tomcat Logs",
"services": {
"query": {
"list": {
"0": {
"query": "apache !tomcat !static",
"alias": "",
"color": "#7EB26D",
"id": 0,
@pdehlke
pdehlke / icalMeeting.scpt
Last active July 3, 2020 16:22
Applescript to turn off interruptions whenever you're in a meeting
-- Run via crontab: 0,1,29,30,31,59 8-18 * * 1,2,3,4,5 osascript /Users/pdehlke/bin/icalMeeting.scpt
tell application "System Events" to set AdiumIsRunning to (count of (every process whose name is "Adium")) > 0
tell application "System Events" to set SkypeIsRunning to (count of (every process whose name is "Skype")) > 0
tell application "System Events" to set OutlookIsRunning to (count of (every process whose name is "Microsoft Outlook")) > 0
set curdate to current date
set tomorrow to (current date) + 86400
tell application "Calendar"