add and move stuff
This commit is contained in:
22
bin/dmount
Executable file
22
bin/dmount
Executable file
@@ -0,0 +1,22 @@
|
||||
#!/bin/sh
|
||||
|
||||
pgrep -x dmenu && exit
|
||||
COLS="name,type,size,mountpoint"
|
||||
|
||||
drives="$(lsblk -rpo "$COLS" | awk '$2=="part"&&$4==""{printf "%s (%s)\n",$1,$3}')"
|
||||
|
||||
[ -z "$drives" ] && exit 1
|
||||
chosen="$(echo "$drives" | dmenu -i -p "What to mount?" | awk '{print $1}')"
|
||||
[ -z "$chosen" ] && exit 1
|
||||
sudo -A mount "$chosen" && notify-send "$chosen mounted on $(mount | grep $chosen | awk '{print $3}')" && exit 0
|
||||
|
||||
mp="$(find /mnt /media /home -type d -maxdepth 5 2>/dev/null | dmenu -i -p "Type in mount point")"
|
||||
[ "$mp" = "" ] && exit 1
|
||||
|
||||
if [ ! -d "$mp" ]; then
|
||||
mkdiryn=$(printf "No\\nYes" | dmenu -i -p "$mp does not exist. Create it?")
|
||||
[ "$mkdiryn" = "Yes" ] && sudo -A mkdir -p "$mp"
|
||||
fi
|
||||
|
||||
sudo -A mount "$chosen" "$mp" && notify-send "$chosen mounted to $mp"
|
||||
|
||||
10
bin/dumount
Executable file
10
bin/dumount
Executable file
@@ -0,0 +1,10 @@
|
||||
#!/bin/sh
|
||||
|
||||
COLS="name,type,size,mountpoint"
|
||||
|
||||
drives=$(lsblk -rpo "$COLS" | awk '$2=="part"&&$4!~/boot|home|SWAP/&&length($4)>1{printf "%s (%s) on %s\n",$1,$3,$4}')
|
||||
[ -z "$drives" ] && exit
|
||||
chosen=$(echo "$drives" | dmenu -i -p "Which drive?" | awk '{print $1}')
|
||||
[ -z "$chosen" ] && exit
|
||||
sudo -A umount "$chosen" && notify-send "$chosen unmounted"
|
||||
|
||||
12
bin/wtk_connect-vpn
Executable file
12
bin/wtk_connect-vpn
Executable file
@@ -0,0 +1,12 @@
|
||||
#!/usr/bin/bash
|
||||
|
||||
#if [[ -d $HOME/Projects/WTK/vpn/SimonStuderCISLab/ ]]; then
|
||||
# cd $HOME/Projects/WTK/vpn/SimonStuderCISLab/
|
||||
#elif [[ -d $HOME/WTK/VPNs/SimonStuderCISLab/ ]]; then
|
||||
# cd $HOME/WTK/VPNs/SimonStuderCISLab/
|
||||
#fi
|
||||
|
||||
#sudo openvpn --config CISLab.ovpn --float --script-security 2 --up /etc/openvpn/update-resolv-conf --down /etc/openvpn/update-resolv-conf --down-pre
|
||||
|
||||
sudo openfortivpn vpn.cislabs.ch:4004 -u simon.studer
|
||||
|
||||
Reference in New Issue
Block a user