commit 5812333367fcd5d267dd8b6d4e2a5f60ecdd57ab
parent bf147711da48b5480a8c1f8c3c1bd1a880759b6b
Author: Christos Margiolis <christos@FreeBSD.org>
Date: Wed, 26 Mar 2025 00:29:09 +0100
Remove setscreens and updates screencast
Diffstat:
4 files changed, 3 insertions(+), 18 deletions(-)
diff --git a/Makefile b/Makefile
@@ -18,7 +18,6 @@ TARGS = audl \
rssread \
screencast \
se \
- setscreens \
sjail \
sysact \
tag \
diff --git a/bookmark b/bookmark
@@ -22,7 +22,7 @@ bmk_add()
{
local url=$(xclip -o)
- if grep -q "^${url}" ${bmkfile}; then
+ if grep -qx "^${url}" ${bmkfile}; then
echo "Already bookmarked" | nfy
else
echo ${url} >> ${bmkfile}
@@ -35,7 +35,7 @@ case "${arg}" in
a) bmk_getfile
bmk_add
exit 0 ;;
- *) echo "usage: ${0##*/} [-af]" 1>&2
+ *) echo "usage: ${0##*/} [-a]" 1>&2
exit 1 ;;
esac
done
diff --git a/screencast b/screencast
@@ -2,7 +2,7 @@
ffmpeg -y \
-f x11grab \
- -s 1920x1080 \
+ -s 2256x1504 \
-i :0.0 \
-r 30 \
-f oss -i /dev/dsp \
diff --git a/setscreens b/setscreens
@@ -1,14 +0,0 @@
-#!/bin/sh
-
-xrandr \
- --output DVI-I-0 \
- --mode 1920x1080 \
- --pos 1920x56 \
- --rotate normal \
- --output HDMI-0 \
- --off \
- --output DVI-D-0 \
- --primary \
- --mode 1920x1080 \
- --pos 0x0 \
- --rotate normal