inital commit

This commit is contained in:
2020-07-04 14:23:27 +02:00
commit 46d9d9eb4c
251 changed files with 15044 additions and 0 deletions

3
.local/bin/tools/ewv Executable file
View File

@ -0,0 +1,3 @@
#!/bin/sh
video=$(du -a ~/eth/videos/* --time | awk '!($1="")' | sort -bg | awk '!($1="")' | awk '!($1="")' | sed 's/^ \/home\/alex\/eth\/videos\///' | grep -E "\....$"| tac | dmenu -l 10 -p "What lecture would you like to watch?");
[ -z $video ] || ( mpv "/home/alex/eth/videos/$video" & disown )