diff options
| author | Luke Smith <luke@lukesmith.xyz> | 2019-03-20 14:45:08 -0400 |
|---|---|---|
| committer | Luke Smith <luke@lukesmith.xyz> | 2019-03-20 14:45:08 -0400 |
| commit | c109b22891fd164b2695220d724bc2ae752d17c3 (patch) | |
| tree | 8efda7cadce9e95d1751b5f5fb41ced32ef961f3 /.scripts/i3cmds/dmenuumount | |
| parent | a0fbd4616449bf32c3ae221596ee6871c79b0654 (diff) | |
| download | eibhear-c109b22891fd164b2695220d724bc2ae752d17c3.tar.gz eibhear-c109b22891fd164b2695220d724bc2ae752d17c3.tar.zst eibhear-c109b22891fd164b2695220d724bc2ae752d17c3.zip | |
PIX variable fully removed
Diffstat (limited to '.scripts/i3cmds/dmenuumount')
| -rwxr-xr-x | .scripts/i3cmds/dmenuumount | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.scripts/i3cmds/dmenuumount b/.scripts/i3cmds/dmenuumount index e4ec064..260c1c8 100755 --- a/.scripts/i3cmds/dmenuumount +++ b/.scripts/i3cmds/dmenuumount @@ -7,13 +7,13 @@ unmountusb() { [ -z "$drives" ] && exit chosen=$(echo "$drives" | dmenu -i -p "Unmount which drive?" | awk '{print $1}') [ -z "$chosen" ] && exit - sudo -A umount "$chosen" && pgrep -x dunst && notify-send -i "$PIX/usb.svg" "$chosen unmounted." + sudo -A umount "$chosen" && pgrep -x dunst && notify-send "$chosen unmounted." } unmountandroid() { \ chosen=$(awk '/simple-mtpfs/ {print $2}' /etc/mtab | dmenu -i -p "Unmount which device?") [ -z "$chosen" ] && exit - sudo -A umount -l "$chosen" && pgrep -x dunst && notify-send -i "$PIX/android.svg" "$chosen unmounted." + sudo -A umount -l "$chosen" && pgrep -x dunst && notify-send "$chosen unmounted." } asktype() { \ |
