1
0
mirror of https://github.com/alrayyes/dotfiles/ synced 2023-11-14 15:56:30 +00:00

only ad special mode if second monitor is connected

This commit is contained in:
Ryan Kes 2019-03-24 17:27:40 +01:00
parent b3fdfeb16d
commit 7b5f58025a

View File

@ -1,12 +1,30 @@
#!/bin/sh #!/bin/sh
# Set screen orientation if second monitor is connected
SCREENCOUNT=$(xrandr | grep -c "\*")
if [ "$SCREENCOUNT" -eq 2 ]
then
xrandr --newmode "2560x1440_40" 201.00 2560 2720 2984 3408 1440 1443 1448 1476 -hsync +vsync \
&& xrandr --addmode HDMI-2 2560x1440_40 \
&& xrandr --output DP-1 --mode 3840x2160 --primary --output HDMI-2 --mode 2560x1440_40 --left-of DP-1 --rotate left &
fi
# lock screen after x minutes and on laptop close lid # lock screen after x minutes and on laptop close lid
xautolock -time 10 -locker lock & xautolock -time 10 -locker lock &
xss-lock lock & xss-lock lock &
xbindkeys & xbindkeys &
compton --xrender-sync-fence & compton --xrender-sync-fence &
feh --bg-scale ~/.cache/wall.png &
if [ -e ~/.cache/wall1.png ] && [ -e ~/.cache/wall2.png ]
then
feh --bg-scale ~/.cache/wall1.png --bg-scale ~/.cache/wall2.png &
elif [ -e ~/.cache/wall1.png ]
then
feh --bg-scale ~/.cache/wall1.png &
fi
unclutter & unclutter &
redshift-gtk & redshift-gtk &
dunst & dunst &