initial commit

This commit is contained in:
aj 2019-03-15 15:25:34 +00:00
commit 74deb59fc0
3 changed files with 18 additions and 0 deletions

4
fmframework Executable file
View File

@ -0,0 +1,4 @@
#!/bin/sh
cd ~/dev/java/fmframework
gradle run

7
powermenu Executable file
View File

@ -0,0 +1,7 @@
#!/usr/bin/env bash
case $(printf "logout\\nshutdown\\nrestart" | rofi -dmenu -i -p 'power') in
logout) mate-session-save --logout ;;
shutdown) poweroff ;;
restart) reboot ;;
esac

7
youtube-dl-audio Executable file
View File

@ -0,0 +1,7 @@
#!/usr/bin/env bash
if [ -z $1 ]; then
echo "no url given"
else
youtube-dl --config-location ~/.config/youtube-dl/audioconfig $1
fi