Skip to content

Instantly share code, notes, and snippets.

View autumn-mck's full-sized avatar
💜
GitHub's UI doesn't allow you to set a purple heart as the status emoji

autumn autumn-mck

💜
GitHub's UI doesn't allow you to set a purple heart as the status emoji
View GitHub Profile
@autumn-mck
autumn-mck / hideVerticalSidebarExtensions.css
Created March 6, 2025 19:40
Firefox userChrome to hide any extensions in in the vertical sidebar
.tools-and-extensions[orientation="vertical"] {
moz-button[extensionId] {
display: none !important;
}
}
@autumn-mck
autumn-mck / hideCloseOnVerticalTabs.css
Created March 6, 2025 19:26
Firefox userChrome to hide the on-hover "close tab" button when using vertical tabs
#tabbrowser-tabs[orient="vertical"] .tab-close-button {
display: none !important;
}
#!/usr/bin/env sh
# SPDX-License-Identifier: Beerware
# Script to automate downloading and installing the latest version of MusicBee
# If anything goes wrong/breaks, let me know so I can fix it!
set -eu
export WINEPREFIX="${XDG_DATA_HOME:-$HOME/.local/share}/wineprefixes/MusicBee"
installation_location="$WINEPREFIX/drive_c/Program Files (x86)/MusicBee/"
#!/usr/bin/env sh
# SPDX-License-Identifier: Beerware
set -e
bass_aac_download_url="https://www.un4seen.com/files/z/2/bass_aac24.zip"
settings_download_url="https://gist.githubusercontent.com/autumn-mck/509a41d5b72be782866e75bf118b4f98/raw/0c405bafc8ba53f309a078ecc7c8b659587e0b14/MusicBee3Settings.ini"
library_settings_download_url="https://gist.githubusercontent.com/autumn-mck/4212531f1534eab095fada942af049d9/raw/5d8a48d71279602ef97bcd400b396c8fe82ac251/MusicBeeLibrarySettings.ini"
discordbee_settings_url="https://gist.githubusercontent.com/autumn-mck/47aa3b50e55162e01e894063114a63a9/raw/d7698f91566e856f7e3075a633290810239c1323/DiscordBee.settings"