Mininux specials

This commit is contained in:
Debucquoy
2024-01-24 08:40:04 +01:00
parent 71b5d1313a
commit a009c1049b
2 changed files with 18 additions and 6 deletions

9
bin/.bin/zoom_screen Executable file
View File

@ -0,0 +1,9 @@
current_resolution=$(xrandr | awk '/DSI1/ {print $4}')
if [[ $current_resolution == 1920x1200* ]];
then
xrandr --size 600x960
else
xrandr --size 1200x1920
fi
chwp