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
[('__add__', <method-wrapper '__add__' of tuple object at 0x7ff121d20860>), | |
('__class__', tuple), | |
('__class_getitem__', <function tuple.__class_getitem__>), | |
('__contains__', | |
<method-wrapper '__contains__' of tuple object at 0x7ff121d20860>), | |
('__delattr__', | |
<method-wrapper '__delattr__' of tuple object at 0x7ff121d20860>), | |
('__dir__', <function tuple.__dir__()>), | |
('__doc__', | |
"Built-in immutable sequence.\n\nIf no argument is given, the constructor returns an empty tuple.\nIf iterable is specified the tuple is initialized from iterable's items.\n\nIf the argument is a tuple, the return value is the same object."), |
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
{ | |
"global": { | |
"check_for_updates_on_startup": true, | |
"show_in_menu_bar": true, | |
"show_profile_name_in_menu_bar": false | |
}, | |
"profiles": [ | |
{ | |
"complex_modifications": { | |
"parameters": { |
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
<command name="next track" code="spfyNext" description="Skip to the next track."> | |
<access-group identifier="com.spotify.playback"/> | |
<cocoa class="SPNextTrackScriptCommand"/> | |
</command> | |
<command name="previous track" code="spfyPrev" description="Skip to the previous track."> | |
<access-group identifier="com.spotify.playback"/> | |
<cocoa class="SPPreviousTrackScriptCommand"/> | |
</command> | |
<command name="playpause" code="spfyPlPs" description="Toggle play/pause."> | |
<access-group identifier="com.spotify.playback"/> |
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
<class name="application" code="capp" description="The Spotify application."> | |
<access-group identifier="com.spotify.playback"/> | |
<cocoa class="SPTClientApplication"/> | |
<property name="current track" code="pTrk" description="The current playing track." type="track" access="r"> | |
<cocoa key="currentTrack"/> | |
</property> | |
<property name="sound volume" code="pVol" description="The sound output volume (0 = minimum, 100 = maximum)" type="integer"> | |
<cocoa key="soundVolume"/> | |
</property> | |
<property name="player state" code="pPlS" description="Is Spotify stopped, paused, or playing?" type="ePlS" access="r"> |
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
-- AppleScript -- | |
-- This example is meant as a simple starting point to show how to get the information in the simplest available way. | |
-- Keep in mind that when asking for a `return` after another, only the first one will be output. | |
-- This method is as good as its JXA counterpart. | |
-- Chromium variants include "Google Chrome", "Chromium", "Opera", "Vivaldi", "Brave Browser", "Microsoft Edge". | |
-- Specific editions are valid, including "Google Chrome Canary", "Microsoft Edge Dev". | |
-- "Google Chrome" Example: | |
tell application "Google Chrome" to return title of active tab of front window |
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
{ | |
;; :!Ca is keycode :a and prefix a with !C | |
;; C | left_command | |
;; T | left_control | |
;; O | left_option | |
;; S | left_shift | |
;; F | fn | |
;; Q | right_command | |
;; W | right_control |
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
[ | |
{ | |
"elementType": "geometry.fill", | |
"stylers": [ | |
{ | |
"color": "#ffffff" | |
} | |
] | |
}, | |
{ |
NewerOlder