first collection of useful scripts
This commit is contained in:
commit
57dfb50219
14
add-projector
Executable file
14
add-projector
Executable file
@ -0,0 +1,14 @@
|
||||
#!/bin/bash
|
||||
# In case you've ever needed to setup
|
||||
|
||||
output=$(xrandr|grep ' connected'|awk '{print $1}' | \
|
||||
dmenu -i -p 'Device to attach')
|
||||
[ -z "$output" ] && exit 0
|
||||
|
||||
# Now we pick out where this goes
|
||||
side=$(printf 'left-of\nright-of\nabove\nbelow' | \
|
||||
dmenu -i -p 'Side')
|
||||
[ -z "$side" ] && exit 0
|
||||
|
||||
# Just echo for demonstrative purposes
|
||||
echo "xrandr --output $output --auto --$side eDP-1"
|
3
bread
Executable file
3
bread
Executable file
@ -0,0 +1,3 @@
|
||||
#!/bin/bash
|
||||
book=$(ls $HOME/Books/ | dmenu -l 15)
|
||||
zathura "$HOME/Books/$book"
|
6
bright
Executable file
6
bright
Executable file
@ -0,0 +1,6 @@
|
||||
#!/bin/bash
|
||||
# Script to siimply change the brightness
|
||||
level=$(echo "$(seq 1 100)" | dmenu -i -p 'Brightnesss from 1-100')
|
||||
percentage=$(echo "$level/100" | bc -l | head -c 4)
|
||||
[ -z "$percentage" ] && exit 0
|
||||
xrandr --output eDP-1 --brightness $percentage
|
BIN
lock/cuddle.jpg
Normal file
BIN
lock/cuddle.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 334 KiB |
4
lock/lock
Executable file
4
lock/lock
Executable file
@ -0,0 +1,4 @@
|
||||
#!/bin/bash
|
||||
mocp -p
|
||||
sndt
|
||||
i3lock -e -i ~/Rice/lock/lockscreen.png
|
BIN
lock/lockscreen.png
Normal file
BIN
lock/lockscreen.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 592 KiB |
BIN
lock/new.png
Normal file
BIN
lock/new.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.3 MiB |
3
sndt
Executable file
3
sndt
Executable file
@ -0,0 +1,3 @@
|
||||
#!/bin/bash
|
||||
# Shut off all sounds coming from alsa
|
||||
amixer -q -D pulse sset Master toggle
|
8
usbm
Executable file
8
usbm
Executable file
@ -0,0 +1,8 @@
|
||||
#!/bin/bash
|
||||
# Mounting script for usb drives for use in dmenu
|
||||
mountable=$(lsblk -lp | grep "part $" | awk '{print $1, $4 }')
|
||||
[ -z "$mountable" ] && exit 0
|
||||
usb=$(echo "$mountable" |\
|
||||
dmenu -i -l 5 -p "Which usb drive should we mount?" |\
|
||||
awk '{print $1}')
|
||||
mount $(basename $usb) ~/.mntpts/$(basename $usb)
|
4
wed
Executable file
4
wed
Executable file
@ -0,0 +1,4 @@
|
||||
#!/bin/bash
|
||||
choice=$(printf "on\noff" | dmenu -i -p "Wifi $(nmcli r w)")
|
||||
[ -z "$choice" ] && exit 0
|
||||
nmcli r w $choice
|
Loading…
Reference in New Issue
Block a user