diff options
author | Yaroslav <contact@yaroslavps.com> | 2019-10-08 15:29:59 +0300 |
---|---|---|
committer | Yaroslav <contact@yaroslavps.com> | 2019-10-08 15:29:59 +0300 |
commit | 5028fa7ea213f435627d867e7ef1f9f19603ac16 (patch) | |
tree | 0e5e657b8f7c49793c4b377fd6a03d346c3772ec /dotfiles/.scripts | |
parent | 4fd756b2f2d1c817b5e22a22d8252e5be7b552cb (diff) | |
download | swayrice-5028fa7ea213f435627d867e7ef1f9f19603ac16.tar.gz swayrice-5028fa7ea213f435627d867e7ef1f9f19603ac16.zip |
nmtui shortcut, wf-recorder shortcut
Diffstat (limited to 'dotfiles/.scripts')
-rwxr-xr-x | dotfiles/.scripts/i3barrecstatus | 8 | ||||
-rwxr-xr-x | dotfiles/.scripts/swayrecord | 14 |
2 files changed, 22 insertions, 0 deletions
diff --git a/dotfiles/.scripts/i3barrecstatus b/dotfiles/.scripts/i3barrecstatus new file mode 100755 index 0000000..5c8160a --- /dev/null +++ b/dotfiles/.scripts/i3barrecstatus @@ -0,0 +1,8 @@ +#!/bin/sh + +if [ -f "$HOME/.recordingpid" ]; then + printf "rec ⏺" + exit +fi + +printf "" diff --git a/dotfiles/.scripts/swayrecord b/dotfiles/.scripts/swayrecord new file mode 100755 index 0000000..8b43adb --- /dev/null +++ b/dotfiles/.scripts/swayrecord @@ -0,0 +1,14 @@ +#!/bin/sh + +if [ -f "$HOME/.recordingpid" ]; then + killall -SIGINT wf-recorder + rm -f ~/.recordingpid + notify-send "⏺ Screen recording" "Recording stopped" + killall -39 waybar + exit +fi + +wf-recorder -f "$HOME/Video/recordings/$(date '+%y%m%d-%H%M-%S').mkv" & +echo $! > ~/.recordingpid +notify-send "⏺ Screen recording" "Recording started" +killall -39 waybar |