initial commit
This commit is contained in:
commit
74deb59fc0
4
fmframework
Executable file
4
fmframework
Executable file
@ -0,0 +1,4 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
cd ~/dev/java/fmframework
|
||||||
|
gradle run
|
7
powermenu
Executable file
7
powermenu
Executable 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
7
youtube-dl-audio
Executable 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
|
Loading…
Reference in New Issue
Block a user