summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/powermenu2
-rwxr-xr-xscripts/record_window.sh8
2 files changed, 6 insertions, 4 deletions
diff --git a/scripts/powermenu b/scripts/powermenu
index 2ce5901..917f369 100755
--- a/scripts/powermenu
+++ b/scripts/powermenu
@@ -1,3 +1,3 @@
#!/bin/sh
-printf "pm-suspend reboot poweroff" | rofi -dmenu -p "power" | xargs -r
+printf "%s\n" "pm-suspend" "pm-hibernate" "reboot" "poweroff" | rofi -dmenu -p "power" | xargs -r
diff --git a/scripts/record_window.sh b/scripts/record_window.sh
index 841b756..f3cf452 100755
--- a/scripts/record_window.sh
+++ b/scripts/record_window.sh
@@ -9,11 +9,13 @@ width=$(cat $info | grep Width | cut -d' ' -f4)
height=$(cat $info | grep Height | cut -d' ' -f4)
size="${width}x${height}"
-position=+$(echo $geom | cut -d'+' -f2- | sed "s/+/,/g")
+x=$(cat $info | grep "Absolute upper-left X" | cut -d' ' -f7)
+y=$(cat $info | grep "Absolute upper-left Y" | cut -d' ' -f7)
+position="+$x,$y"
-filename=$(date +"$HOME/pics/screenshot/%F_%T.mp4")
+filename=$(date +"%F_%T.mp4")
echo $size and $position
-ffmpeg -y -f x11grab -video_size $size -i $position $filename
+ffmpeg -y -f x11grab -video_size $size -i "$position" $filename
rm $info