125 lines
3.4 KiB
Bash
Executable File
125 lines
3.4 KiB
Bash
Executable File
#!/bin/sh
|
|
# you can think of this more as post-wm setup
|
|
|
|
set -x
|
|
|
|
set_walls() {
|
|
for i in $(xrandr | grep ' connected' | cut -d' ' -f1); do
|
|
xwallpaper --output $i --zoom ~/.local/share/pape.jpg
|
|
done
|
|
}
|
|
|
|
screensaver () {
|
|
pkill xscreensaver
|
|
HOME=".config/xscreensaver" xscreensaver --no-splash & 2>&1 > /dev/null
|
|
}
|
|
|
|
keyboard () {
|
|
setxkbmap -option caps:super
|
|
pkill xcape
|
|
xcape -e 'Super_L=Escape'
|
|
xset -q | grep "Caps Lock:\s*on" && xdotool key Caps_Lock
|
|
xset -r 161 # tablet rotate key doesn't need repeat
|
|
xset r rate 200 40
|
|
}
|
|
|
|
find_card_pci() {
|
|
[ -z $pci_path ] && pci_path=$(find /sys/devices | \
|
|
grep edid | \
|
|
cut -d/ -f1-6
|
|
)
|
|
}
|
|
|
|
assert_edid() {
|
|
find_card_pci
|
|
|
|
out=$(sha256sum ${pci_path}/card0/card0-$1/edid | \
|
|
cut -d' ' -f1)
|
|
|
|
[ "$out" = "$2" ] && return 0 || return 1
|
|
}
|
|
|
|
exists() {
|
|
xrandr | grep ' connected' | grep -c "${1}"
|
|
}
|
|
|
|
case "$(hostname)" in
|
|
"mainsail")
|
|
echo "mainsail"
|
|
xrandr --output VGA-1 --left-of HDMI-1
|
|
bspc monitor VGA-1 -d 1 3 5 7 9
|
|
bspc monitor HDMI-1 -d 2 4 6 8 0
|
|
;;
|
|
"mlg")
|
|
case "$1" in
|
|
"invert")
|
|
xrandr --output HDMI-0 --primary --mode 1920x1080 --pos 1080x420 --rotate normal --rate 120 \
|
|
--output DP-0 --off \
|
|
--output DP-1-1 --mode 1920x1080 --pos 3000x420 --rotate normal --rate 120 \
|
|
--output DP-1-2 --mode 1920x1080 --pos 0x0 --rotate right --rate 60
|
|
bspc monitor DP-1-1 -d 2 4 6 8
|
|
bspc monitor DP-1-2 -d 9
|
|
bspc monitor HDMI-0 -d 1 3 5 7
|
|
;;
|
|
*)
|
|
xrandr --output HDMI-0 --primary --mode 1920x1080 --pos 1080x420 --rotate normal --rate 120 \
|
|
--output DP-0 --off \
|
|
--output DP-1-2 --mode 1920x1080 --pos 3000x420 --rotate normal --rate 120 \
|
|
--output DP-1-1 --mode 1920x1080 --pos 0x0 --rotate right --rate 60
|
|
bspc monitor DP-1-2 -d 2 4 6 8
|
|
bspc monitor DP-1-1 -d 9
|
|
bspc monitor HDMI-0 -d 1 3 5 7
|
|
;;
|
|
esac
|
|
xinput set-prop 'INSTANT USB GAMING MOUSE ' 'libinput Accel Speed' -1
|
|
|
|
# setup synchronization
|
|
pkill sshfs
|
|
rm $HOME/doc # this is safe, as doc is a dir if it mattered,
|
|
# but it's just a link, so it's a regular file.
|
|
# in conclusion, good either way
|
|
mkdir -p $HOME/.cache/mount_point
|
|
sshfs usr@192.168.1.120:/home/usr/doc $HOME/.cache/mount_point
|
|
ln -sf $HOME/.cache/mount_point $HOME/doc
|
|
;;
|
|
"x230t")
|
|
echo "x230t"
|
|
case "$1" in
|
|
"dockedtwo")
|
|
# assume we're connected to the two external displays
|
|
xrandr --output VGA-1 --primary --mode 1920x1080 --rotate normal \
|
|
--output HDMI-1 --mode 1920x1080 --rotate normal --right-of VGA-1 \
|
|
--output LVDS-1 --off
|
|
bspc monitor VGA-1 -d 1 3 5 7 9
|
|
bspc monitor HDMI-1 -d 2 4 6 8
|
|
;;
|
|
*)
|
|
if
|
|
assert_edid "VGA-1" "35737dc483d2c3b1b20ea2343ce13c6c42d115febdc9634f8437e1b9f7fd3f5c" &&
|
|
assert_edid "HDMI-A-1" "01887cbd23d74201e489a6334656f7db73a7b7f732a738a9f1ee2d53389f7817";
|
|
then
|
|
echo "docked"
|
|
xrandr --output LVDS-1 --primary --mode 1366x768 --pos 1194x1080 --rotate normal \
|
|
--output VGA-1 --mode 1920x1080 --pos 0x0 --rotate normal \
|
|
--output HDMI-1 --mode 1920x1080 --pos 1920x0 --rotate normal \
|
|
--output DP-1 --off \
|
|
--output HDMI-2 --off \
|
|
--output DP-2 --off
|
|
bspc monitor LVDS-1 -d 1 4 7
|
|
bspc monitor VGA-1 -d 2 5 8
|
|
bspc monitor HDMI-1 -d 3 6 9
|
|
else
|
|
bspc monitor LVDS-1 -d 1 2 3 4 5 6 7 8 9
|
|
fi
|
|
;;
|
|
esac
|
|
;;
|
|
esac
|
|
|
|
# initial post-wm setup
|
|
keyboard
|
|
statuswrap
|
|
set_walls
|
|
screensaver
|
|
|