Skip to content

Commit

Permalink
Initial Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
hagure committed Jan 5, 2017
0 parents commit 2170bcd
Show file tree
Hide file tree
Showing 36 changed files with 33 additions and 0 deletions.
Binary file added (+)½ ☆
Binary file not shown.
Binary file added (-)½ ☆
Binary file not shown.
16 changes: 16 additions & 0 deletions Current Track Stuff/Current Track - Back 30 Seconds.applescript
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
tell application "iTunes"
if player state is playing then
--get the current track time:
set currTime to get player position
if currTime < 30 then
--go to start of the track:
set currSkip to 0
else
--otherwise, skip backwards
set currSkip to currTime - 30
end if

set player position to currSkip --skip to new position
end if

end tell
Binary file not shown.
Binary file not shown.
Binary file not shown.
17 changes: 17 additions & 0 deletions Current Track Stuff/Current Track - Skip 30 Seconds.applescript
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
tell application "iTunes"
if player state is playing then
-- length of current track:
set trackTime to duration of current track
--get the current position time:
set currTime to get player position
set currSkip to currTime + 30

-- checks if new position is greater than
-- length of track, and corrects it if it is:
if currSkip > trackTime then
set currSkip to trackTime
end if

set player position to currSkip --skip to new position
end if
end tell
Binary file added Current Track Stuff/Spotify + Itunes.scpt
Binary file not shown.
Binary file added Spotify + Itunes + Vox + Swinsian WIP.scpt
Binary file not shown.
Binary file added Spotify + Itunes + Vox.scpt
Binary file not shown.
Binary file added Spotify + Itunes Next Track.scpt
Binary file not shown.
Binary file added Spotify + Itunes Previous Track.scpt
Binary file not shown.
Binary file not shown.
Binary file added Spotify + iTunes Notify 10.6.scpt
Binary file not shown.
Binary file added Spotify + iTunes Notify 10.8 copy.scpt
Binary file not shown.
Binary file added Spotify + iTunes Notify 10.8.scpt
Binary file not shown.
Binary file added Spotify + iTunes Notify 2016-05-04.scpt
Binary file not shown.
Binary file added Spotify - Song URL.scpt
Binary file not shown.
Binary file added Spotify Next Track.scpt
Binary file not shown.
Binary file added Spotify Notify.scpt
Binary file not shown.
Binary file added Spotify Play+Pause.scpt
Binary file not shown.
Binary file added Spotify Previous Track.scpt
Binary file not shown.
Binary file added Swinsian Notify.scpt
Binary file not shown.
Binary file added Swinsian/Albumize.scpt
Binary file not shown.
Binary file added Swinsian/★★★★★.scpt
Binary file not shown.
Binary file added Swinsian/★★★★☆.scpt
Binary file not shown.
Binary file added Swinsian/★★★☆☆.scpt
Binary file not shown.
Binary file added Swinsian/★★☆☆☆.scpt
Binary file not shown.
Binary file added Swinsian/★☆☆☆☆.scpt
Binary file not shown.
Binary file added Vox Notify.scpt
Binary file not shown.
Binary file added ★★★★★.scpt
Binary file not shown.
Binary file added ★★★★☆.scpt
Binary file not shown.
Binary file added ★★★☆☆.scpt
Binary file not shown.
Binary file added ★★☆☆☆.scpt
Binary file not shown.
Binary file added ★☆☆☆☆.scpt
Binary file not shown.
Binary file added ☆☆☆☆☆.scpt
Binary file not shown.

0 comments on commit 2170bcd

Please sign in to comment.