changes of sorts

This commit is contained in:
davidovski 2022-07-31 22:09:31 +01:00
parent c475aefc0f
commit a4e5fe820e
15 changed files with 87 additions and 35 deletions

View file

@ -1,3 +1,3 @@
#!/bin/sh
feh --force-aliasing --bg-tile ~/.config/dither.png
#feh --force-aliasing --bg-fill ~/.config/bg
#feh --force-aliasing --bg-tile ~/.config/dither.png
feh --force-aliasing --bg-fill ~/.config/bg

View file

@ -1,3 +1,3 @@
#!/bin/sh
MAIN_DP=DP-0;
MAIN_DP=DP-3;
v=$(xrandr --current --verbose | grep "Brightness" | cut -f2 -d " " | tr '\n' '*' | rev | cut -c 2- | rev | sed -e "s/$/==1/" | bc -l | grep -q 0 && echo 1 || echo 0); xrandr | grep " connected" | cut -f1 -d " " | while read -r line; do echo $line | grep -q $MAIN_DP && : || xrandr --output $line --brightness $v; done

View file

@ -15,5 +15,5 @@ case $1 in
;;
esac
ddcutil --bus=5 setvcp 60 ${OUT[0]} &
ddcutil --bus=23 setvcp 60 ${OUT[0]} &
wait

View file

@ -1,3 +1,3 @@
#!/bin/sh
printf "suspend\nreboot\npoweroff\nhibernate" | rofi -dmenu -p "systemctl" | xargs -r systemctl
printf "pm-suspend reboot poweroff" | rofi -dmenu -p "power" | xargs -r

View file

@ -1,6 +1,9 @@
#!/usr/bin/python
import sys
if len(sys.argv) < 3:
print("Usage: tablet [dev number] [property number] [scale factor] [aspect ratio]")
#Arguments
dev = sys.argv[1]
prop = sys.argv[2]
@ -8,11 +11,18 @@ scale = float(sys.argv[3])
tablet_ratio = (lambda s: float(s[0]) / float(s[1]))(sys.argv[4].split(":")) if len(sys.argv) > 4 else 16/9
#Layout of screens: (x, y, w, h)
#screens = [
# (0, 0, 1280, 1024),
# (1280, 0, 2560, 1440),
# (3840, 0, 1080, 1920),
# (4920, 0, 1080, 1920),
#]
screens = [
(0, 0, 1280, 1024),
(1280, 0, 2560, 1440),
(3840, 0, 1080, 1920),
(4920, 0, 1080, 1920),
(3840, 0, 1920, 1080),
(5760, 0, 1920, 1080),
]
#TODO find this with xrandr