Initial commit
This commit is contained in:
commit
8e3d087d08
39
dm-bluetooth/dm-bluetooth.sh
Executable file
39
dm-bluetooth/dm-bluetooth.sh
Executable file
@ -0,0 +1,39 @@
|
||||
#!/bin/bash
|
||||
|
||||
option=$(echo -e "Restart Bluetooth\nManage Devices\nList connected devices" | dmenu -i -p "Do what?")
|
||||
if [ "$option" == "Restart Bluetooth" ]; then
|
||||
sudo systemctl restart bluetooth
|
||||
fi
|
||||
if [ "$option" == "Manage Devices" ]; then
|
||||
device=$(echo "devices" | bluetoothctl | tail -n +4 | head -n -1 | cut -c 26- | dmenu -i)
|
||||
if [ -n "$device" ]; then
|
||||
mac=$(echo "devices" | bluetoothctl | grep "$device" | grep -v 'devices' | head -n +1 | cut -c 8-24)
|
||||
option2=$(echo -e "Connect\nDisconnect\nReconnect\nRemove" | dmenu -i -p "$device ($mac)")
|
||||
if [ "$option2" == "Disconnect" ]; then
|
||||
echo "disconnect $mac" | bluetoothctl
|
||||
fi
|
||||
if [ "$option2" == "Reconnect" ]; then
|
||||
echo "disconnect $mac" | bluetoothctl
|
||||
sleep 2
|
||||
echo "connect $mac" | bluetoothctl
|
||||
fi
|
||||
if [ "$option2" == "Connect" ]; then
|
||||
echo "connect $mac" | bluetoothctl
|
||||
fi
|
||||
if [ "$option2" == "Remove" ]; then
|
||||
echo "remove $mac" | bluetoothctl
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
if [ "$option" == "List connected devices" ]; then
|
||||
IFS=$'\n'
|
||||
for device in $(echo devices | bluetoothctl | tail -n +4 | head -n -1 | cut -c 26-); do
|
||||
mac=$(echo "devices" | bluetoothctl | grep "$device" | grep -v 'devices' | head -n +1 | cut -c 8-24)
|
||||
connected=$(echo "info $mac" | bluetoothctl | grep "Connected: yes" )
|
||||
echo "$device $connected"
|
||||
if [ -n "$connected" ]; then
|
||||
notify-send -i apps/bluetooth "$device" "is connected"
|
||||
fi
|
||||
unset connected
|
||||
done
|
||||
fi
|
59
dm-recording/dm-recording.sh
Executable file
59
dm-recording/dm-recording.sh
Executable file
@ -0,0 +1,59 @@
|
||||
#!/bin/bash
|
||||
if ! hash dmenu 2>/dev/null; then
|
||||
notify-send "Error" "dmenu is not installed. Aborting."
|
||||
echo "dmenu is not installed."
|
||||
echo "Did you really try to run a dmenu utility without having dmenu installed?"
|
||||
echo "Aborting."
|
||||
exit 1
|
||||
fi
|
||||
if ! hash ffmpeg 2>/dev/null; then
|
||||
notify-send "Error" "ffmpeg is not installed.\n\nAborting."
|
||||
echo "ffmpeg is not installed."
|
||||
echo "Aborting."
|
||||
exit 1
|
||||
fi
|
||||
if ! ldconfig -p | grep libxcb >/dev/null; then
|
||||
notify-send "Error" "libxcb is not installed.\n\nffmepg requires libxcb for it's x11grab option.\n\nAborting."
|
||||
echo "libxcb is not installed."
|
||||
echo "ffmepg requires libxcb for it's x11grab option."
|
||||
echo "Aborting."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
IFS=$'\n'
|
||||
options="Fullscreen\nSelection"
|
||||
choice=$(echo -e $options | sort | dmenu -p "Record" -i)
|
||||
|
||||
if [ -z $choice ]; then
|
||||
exit
|
||||
fi
|
||||
|
||||
case $choice in
|
||||
"Fullscreen")
|
||||
echo "Recording fullscreen"
|
||||
file=$(mktemp -u /tmp/recording_XXXXXX.mp4)
|
||||
notify-send --icon=panel/simplescreenrecorder-recording -t 900 'Recording starts' 'as soon as this notification closes'
|
||||
sleep 1
|
||||
ffmpeg -f x11grab -framerate 20 -video_size 1366x768 -i :0.0 $file
|
||||
notify-send --icon=panel/simplescreenrecorder-paused 'Recording stopped'
|
||||
ln -sf $file /tmp/recording_latest.mp4
|
||||
;;
|
||||
|
||||
"Selection")
|
||||
# need IFS = ' ' for read to be able to split the arguments
|
||||
IFS=$' '
|
||||
echo "Recording region"
|
||||
read -r x y w h <<< $(slop -f "%x %y %w %h" -q -l -c 0.3,0.4,0.6,0.4 )
|
||||
file=$(mktemp -u /tmp/recording_XXXXXX.mp4)
|
||||
notify-send --icon=panel/simplescreenrecorder-recording -t 900 'Recording starts' 'as soon as this notification closes'
|
||||
sleep 1
|
||||
ffmpeg -f x11grab -framerate 20 -show_region 1 -video_size "${w}x${h}" -i ":0.0+${x},${y}" $file
|
||||
notify-send --icon=panel/simplescreenrecorder-paused 'Recording stopped'
|
||||
ln -sf $file /tmp/recording_latest.mp4
|
||||
;;
|
||||
|
||||
*)
|
||||
exit
|
||||
;;
|
||||
|
||||
esac
|
10
dm-steam/dm-steam.sh
Executable file
10
dm-steam/dm-steam.sh
Executable file
@ -0,0 +1,10 @@
|
||||
#!/bin/bash
|
||||
IFS=$'\n'
|
||||
games=$(cat /home/dominic/.steam/steam/steamapps/*.acf | grep "\"name\"" | cut -c 11- | rev | cut -c 2- | rev)
|
||||
search=$(echo "$games" | sort | dmenu -i)
|
||||
if [ -z $search ]; then
|
||||
echo "nope"
|
||||
exit
|
||||
fi
|
||||
appid=$(grep "$search" /home/dominic/.steam/steam/steamapps/*.acf | head -n 1 | sed 's/.*_//g' | sed -e 's/\.acf.*$//g' )
|
||||
steam steam://rungameid/$appid
|
Loading…
Reference in New Issue
Block a user