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 | |
#An APT utility script | |
#Pretty much all in one. update repos, upgrade packages, autoremove, you name it | |
#First update to this program: | |
# +Added ability to add or remove software repository | |
# +Utilize ppa-purge to remove software repository | |
# +Some more features | |
#My banner made using figlet |
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
#!/usr/bin/env bash | |
if [[ -z "$1" && -z "$2" ]]; then | |
echo "PlayMIDI version 1.0 | |
Use fluidsynth to play MIDI musics easily in one command | |
Usage: | |
playmidi soundfont.sf2 midifile.mid" | |
exit 1 | |
elif [[ $1==*".mid" && -z "$2" ]]; then | |
fluidsynth -g 0.8 -a alsa -m alsa_seq -l -i "$1" |