dotwryn/config/xorg/screenlayout/2020-sep-macbook/workdock.sh

55 lines
1.5 KiB
Bash
Raw Normal View History

2019-09-26 16:13:45 +00:00
#!/bin/sh
2019-12-31 00:41:56 +00:00
if xrandr | grep -q "DP-0 connected"; then
xrandr \
2020-03-18 17:36:55 +00:00
--output DP-0 --primary --mode 1920x1080 --pos 0x586 --rotate normal --scale 1.5x1.5\
--output DP-1 --off \
--output HDMI-0 --off \
--output DP-2 --mode 2880x1800 --pos 4500x586 --rotate normal --scale 0.8x0.8\
--output DP-3 --off \
2020-02-25 01:31:37 +00:00
--output DP-4 --mode 1920x1080 --pos 2880x0 --rotate right --scale 1.5x1.5\
2020-03-18 17:36:55 +00:00
;
2019-12-31 00:41:56 +00:00
else
xrandr \
2020-03-18 17:36:55 +00:00
--output DP-0 --off \
--output DP-1 --primary --mode 1920x1080 --pos 0x586 --rotate normal --scale 1.5x1.5\
--output HDMI-0 --off \
--output DP-2 --mode 2880x1800 --pos 4500x586 --rotate normal --scale 0.8x0.8\
2020-02-25 01:31:37 +00:00
--output DP-3 --mode 1920x1080 --pos 2880x0 --rotate right --scale 1.5x1.5\
2020-03-18 17:36:55 +00:00
--output DP-4 --off \
;
2019-12-31 00:41:56 +00:00
fi
2019-12-31 21:26:32 +00:00
ROLL=$(($RANDOM%5));
if [ $ROLL -eq 0 ]; then
feh --bg-fill\
$HOME/Pictures/bg/midoriya.jpg\
$HOME/Pictures/bg/altaria.jpg\
$HOME/Pictures/bg/captainfalcon.jpg\
2019-12-31 21:26:32 +00:00
>/dev/null 2>&1;
elif [ $ROLL -eq 1 ]; then
feh --bg-fill\
$HOME/Pictures/bg/dimitri.jpg\
$HOME/Pictures/bg/claude.jpg\
$HOME/Pictures/bg/edelgard.jpg\
2019-12-31 21:26:32 +00:00
>/dev/null 2>&1;
elif [ $ROLL -eq 2 ]; then
feh --bg-fill\
$HOME/Pictures/bg/fe8.jpg\
$HOME/Pictures/bg/micaiah.jpg\
2019-12-02 19:36:26 +00:00
$HOME/Pictures/bg/roy.jpg\
2019-12-31 21:26:32 +00:00
>/dev/null 2>&1;
elif [ $ROLL -eq 3 ]; then
feh --bg-fill\
2019-12-02 19:36:26 +00:00
$HOME/Pictures/bg/chrom.png\
$HOME/Pictures/bg/byleth.jpg\
$HOME/Pictures/bg/link.jpg\
2019-12-31 21:26:32 +00:00
>/dev/null 2>&1;
elif [ $ROLL -eq 4 ]; then
random_image="$(find $HOME/Pictures/bg -type f | shuf -n 1)";
feh --bg-fill\
$random_image\
>/dev/null 2>&1;
fi