We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 803776e + d15c3fd commit e59aadbCopy full SHA for e59aadb
commands/navigation/hide-application.applescript
@@ -0,0 +1,18 @@
1
+#!/usr/bin/osascript
2
+
3
+# @raycast.schemaVersion 1
4
+# @raycast.author Chris Bailey
5
+# @raycast.authorURL https://raycast.com/that70schris
6
+# @raycast.description Easily hide your foremost application
7
+# @raycast.packageName Navigation
8
+# @raycast.title Hide Current Application
9
+# @raycast.mode silent
10
+# @raycast.icon 🫥
11
12
+tell application "System Events"
13
+ tell (first process whose frontmost is true)
14
+ set _name to displayed name
15
+ end tell
16
17
+ set visible of application process _name to false
18
+end tell
0 commit comments