This commit is contained in:
TheCrazyInsanity
2023-11-02 19:26:35 -04:00
committed by GitHub
parent d955e22046
commit 7dc3a0839a
4 changed files with 8 additions and 4 deletions

2
xsize
View File

@@ -1,5 +1,5 @@
#! /bin/sh
export DISPLAY=:$1
for nw in `xdotool search --screen :$1 ".*"`; do
echo "$nw" && xdotool windowsize "$nw" 1366 768 && xdotool windowmove "$nw" 0 0
echo "$nw" && xdotool windowsize "$nw" $(cat /usr/local/bin/xsize.conf) && xdotool windowmove "$nw" 0 0
done