summaryrefslogtreecommitdiff
path: root/.local/bin/dmenu
diff options
context:
space:
mode:
Diffstat (limited to '.local/bin/dmenu')
-rwxr-xr-x.local/bin/dmenu/mount-device27
-rwxr-xr-x.local/bin/dmenu/unicode-select9
-rwxr-xr-x.local/bin/dmenu/unmount-device19
3 files changed, 55 insertions, 0 deletions
diff --git a/.local/bin/dmenu/mount-device b/.local/bin/dmenu/mount-device
new file mode 100755
index 0000000..e325a65
--- /dev/null
+++ b/.local/bin/dmenu/mount-device
@@ -0,0 +1,27 @@
1#!/bin/sh
2# Script for mounting block devices
3
4# Set askpass program for authentication
5export SUDO_ASKPASS=/usr/bin/ssh-askpass
6
7# Check for and get device to mount from user
8devs="$(lsblk -lp | grep "part $" | awk '{print $1,"-",$4}')"
9[ "$devs" = "" ] && exit 0
10dev="$(echo $devs | dmenu -i -p "Select device" | cut -d ' ' -f 1)"
11[ "$dev" = "" ] && exit 0
12
13# Attempt to mount without mountpoint for devices in /etc/fstab
14sudo -A mount "$dev" 2>/dev/null && exit 0
15
16# Get mountpoint from user
17mntpnt="$(find /mnt -maxdepth 3 -type d 2>/dev/null | dmenu -i -p "Select mountpoint")"
18[ "$mntpnt" = "" ] && exit 1
19
20# If selected mountpoint does not exist ask to create it
21# If user decides not to create non-existent drive, exit
22[ ! -d $mntpnt ] && create="$(echo "No\nYes" | \
23 dmenu -i -p "$mntpnt does not exist, would you like to create it?")" && \
24 ([ "$create" = "Yes" ] && sudo -A mkdir -p $mntpnt || exit 0)
25
26sudo -A mount $dev $mntpnt && pgrep -x dunst && notify-send "$dev mounted to $mntpnt"
27
diff --git a/.local/bin/dmenu/unicode-select b/.local/bin/dmenu/unicode-select
new file mode 100755
index 0000000..f42cd6e
--- /dev/null
+++ b/.local/bin/dmenu/unicode-select
@@ -0,0 +1,9 @@
1#!/bin/sh
2# Select unicode character via dmenu and copy to clipboard
3
4line="$(cat ~/.local/share/unicode_list | dmenu -i -l 10)"
5grep "$line" ~/.local/src/unicode_list | tr -d [:print:] |
6 xclip -r -selection "clipboard" &&
7 notify-send "$(xclip -selection "clipboard" -o) copied to clipboard"
8
9
diff --git a/.local/bin/dmenu/unmount-device b/.local/bin/dmenu/unmount-device
new file mode 100755
index 0000000..75cb10f
--- /dev/null
+++ b/.local/bin/dmenu/unmount-device
@@ -0,0 +1,19 @@
1#!/bin/sh
2# Script for unmounting filesystems
3
4# Set askpass program for authentication
5export SUDO_ASKPASS=/usr/bin/ssh-askpass
6
7# Get list of unmountable filesystems excluding critical ones (/, /home, /boot, etc...)
8exclude="\(/\|/boot\|/boot/efi\|/var\|/tmp\|/home\)$"
9parts="$(lsblk -lp | grep "part /" | grep -v "$exclude" | awk '{print $7,"-",$4}')"
10[ "$parts" = "" ] && exit 0
11
12# Get filesystem to unmount from user
13select="$(echo "$parts" | dmenu -i -p "Select filesystem to unmount" | cut -d ' ' -f 1)"
14[ "$select" = "" ] && exit 0
15dev="$(lsblk -lp | grep "$select" | awk '{print $1}')"
16
17# Unmount the filesystem
18sudo -A umount $select && pgrep -x dunst && notify-send "Unmounted $select ($dev)" \
19 || notify-send "Error: unable to unmount $select" "Are you in it?"