Created
March 6, 2024 09:53
-
-
Save SebastiaanKloos/4bd94c3f9aa80149f170d4353f55bc08 to your computer and use it in GitHub Desktop.
Script for Raycast to change the Arc icon
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 | |
# Required parameters: | |
# @raycast.schemaVersion 1 | |
# @raycast.title Arc icon | |
# @raycast.mode compact | |
# Optional parameters: | |
# @raycast.icon 🔪 | |
# @raycast.argument1 { "type": "text", "placeholder": "Icon" } | |
# Documentation: | |
# @raycast.description Change the Arc icon | |
# @raycast.author Sebastiaan Kloos | |
# @raycast.authorURL https://github.com/SebastiaanKloos | |
defaults write company.thebrowser.Browser currentAppIconName -string $1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment