Initial commit

This commit is contained in:
Alexander Gehrke 2019-09-30 14:49:14 +02:00
commit cefd40b6dc
31 changed files with 1028 additions and 0 deletions

5
bin/dmumount Executable file
View file

@ -0,0 +1,5 @@
#!/bin/zsh
device=$(udiskie-info -a -o '{mount_path}' | grep -ve '^$' | dmenu -l 20)
if [[ -n "$device" ]]; then
udiskie-umount $device
fi