Skip to content

Instantly share code, notes, and snippets.

@gullinbursti
gullinbursti / decreaseITunesVolume.scpt
Created June 14, 2023 12:00 — forked from tanhauhau/decreaseITunesVolume.scpt
Adjust iTunes volume through Applescript
tell application "iTunes"
set vol to sound volume
set vol to vol - 10
if vol is less than 0 then
set vol to 0
end if
set the sound volume to vol
end tell
SELECT * FROM docs WHERE id <
(SELECT RAND() * m.maximum AS random_id FROM
(SELECT MAX(id) AS maximum FROM docs) AS m)
AND your_conditions
LIMIT 1