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
on alfred_script(q) | |
set output_devices to {"Display Audio", "Generic USB Audio Device "} | |
set input_devices to {"Display Audio", "Generic USB Audio Device "} | |
set device_keywords to {"speakers", "headphones"} | |
tell application "System Preferences" | |
reveal anchor "output" of pane id "com.apple.preference.sound" | |
tell application "System Events" | |
tell process "System Preferences" |
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 | |
headphones="Generic USB Audio Device " | |
speakers="Display Audio" | |
arg=$1 | |
if [ "${arg}" = "headphones" ]; then | |
target=${headphones} | |
elif [ "${arg}" = "speakers" ]; then | |
target=${speakers} |
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
diff --git a/app/api/projects.rb b/app/api/projects.rb | |
index cbfe5e8fdd1..2e6cc251270 100644 | |
--- a/app/api/projects.rb | |
+++ b/app/api/projects.rb | |
@@ -977,8 +977,8 @@ class Api::Projects < Api::App | |
end | |
AddProjectCardMutation = PlatformClient.parse <<-'GRAPHQL' | |
- mutation($projectColumnId: ID!, $contentId: ID, $note: String) { | |
- addProjectCard(input: { projectColumnId: $projectColumnId, contentId: $contentId, note: $note }) { |