Skip to content

Instantly share code, notes, and snippets.

View bigos81's full-sized avatar

Michal bigos81

View GitHub Profile
@bigos81
bigos81 / wow-backup.sh
Created April 29, 2026 16:25
Simple bash script for baking up World of Warcraft addons with respective settings - creates 3 backups and clears logs
#!/bin/bash
if [ -d ./backup ]; then
echo "Backup directory found"
else
echo "Backup directory not found, creating..."
mkdir ./backup
echo "Done"
fi
@bigos81
bigos81 / sp
Last active February 21, 2026 19:06 — forked from streetturtle/sp
sp is a command-line client for Spotify's dbus interface. Play, pause, skip and search tracks from the comfort of your command line.
#!/bin/bash
#
# This is sp, the command-line Spotify controller. It talks to a running
# instance of the Spotify Linux client over dbus, providing an interface not
# unlike mpc.
#
# Put differently, it allows you to control Spotify without leaving the comfort
# of your command line, and without a custom client or Premium subscription.
#