This file contains hidden or 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
############################################################################### | |
# A tool for exporting Mastodon followers | |
# Author: Zero | |
# Last update: 2022-02-09 | |
############################################################################### | |
# Usage | |
# | |
# 1. Save this code as `export_mastodon_followers.py` in your computer. | |
# | |
# 2. Edit it, note that there are three places need to be changed: |
This file contains hidden or 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
tell application "System Preferences" | |
activate | |
set current pane to pane "Accessibility" | |
end tell | |
tell application "System Events" | |
tell process "System Preferences" | |
click checkbox "Use grayscale" of window 1 | |
end tell | |
end tell |