This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* { | |
color: var(--arc-palette-foregroundPrimary) !important; | |
} | |
body { | |
background: var(--arc-palette-background) !important; | |
} | |
[data-testid="primaryColumn"] { | |
background: var(--arc-palette-background) !important; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
clear | |
# Finds all m4a files, and loops through them while assigning the file name to "$f" | |
find . -type f -name '*.m4a' -exec sh -c ' | |
for f do | |
echo "$f" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if( window.location['pathname'] === '/StudentFunctions/Interface/acellus_engine.html') { | |
// if the "top-navbar acellus-logo" class is present set theme to #4D6F9D | |
if (document.getElementsByClassName("top-navbar acellus-logo").length){ | |
$('head').append($('<meta name="theme-color" content="#4D6F9D">')) | |
} | |
// if the "top-navbar exam" class is present set theme to #98CD88 | |
if (document.getElementsByClassName("top-navbar exam").length){ | |
$('head').append($('<meta name="theme-color" content="#98CD88">')) | |
} | |
// if the "top-navbar review" class is present set theme to #85C4E6 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Put in root directory of music | |
# Extracts embedded artwork and makes them 300x300 jpgs. | |
# "$f" = mp3 file name (./Ahrix - Nova.mp3) | |
# "${f/%mp3/jpg}" = image name (./Ahrix - Nova.jpg) | |
rm ._* | |
# rm *.jpg | |
# Finds all the mp3 files in the current folder and list them to "f" variable |