Skip to content

Instantly share code, notes, and snippets.

View vegerot's full-sized avatar
💭
Hey 👋

Max Coplan vegerot

💭
Hey 👋
View GitHub Profile
@mtking2
mtking2 / apod.md
Last active December 4, 2024 18:56
NASA APOD wallpaper script

NASA APOD wallpaper for Unix systems

script

Save to a file wherever it please you (I saved it to ~/scripts/apod.sh)
Maybe make sure it is executable: chmod 755 ~/scripts/apod.sh

#!/bin/bash
# apod.sh
@joshuaswilcox
joshuaswilcox / current_song
Last active July 29, 2024 00:14
Applescript to show current playing song and determine if its spottily or iTunes that is playing
if application "Spotify" is running and application "iTunes" is not running then
tell application "Spotify"
if player state is stopped then
set display to "No Track Playing"
else
set track_artist to artist of current track
set track_name to name of current track
set track_duration to duration of current track
set seconds_played to player position
set state to ""