check if envycontrol exists
This commit is contained in:
parent
9e2d999e4b
commit
0bd09da3cd
2 changed files with 36 additions and 30 deletions
|
@ -1,5 +1,6 @@
|
|||
#!/bin/sh
|
||||
|
||||
if [ -f /usr/bin/envycontrol ]; then
|
||||
gpu_mode=$(/usr/bin/envycontrol -q)
|
||||
if [ "$gpu_mode" = "nvidia" ]; then
|
||||
xrandr --setprovideroutputsource modesetting NVIDIA-0
|
||||
|
@ -11,6 +12,7 @@ else
|
|||
xrandr --output HDMI-1-0 --above eDP-1
|
||||
xrandr --output HDMI-1-0 --primary
|
||||
fi
|
||||
fi
|
||||
|
||||
pkill picom
|
||||
picom -b
|
||||
|
|
4
.xinitrc
4
.xinitrc
|
@ -41,6 +41,8 @@ fi
|
|||
setxkbmap -layout us,pt
|
||||
setxkbmap -option grp:win_space_toggle
|
||||
|
||||
# setup monitors (laptop only)
|
||||
if [ -f /usr/bin/envycontrol ]; then
|
||||
gpu_mode=$(/usr/bin/envycontrol -q)
|
||||
if [ "$gpu_mode" = "nvidia" ]; then
|
||||
xrandr --setprovideroutputsource modesetting NVIDIA-0
|
||||
|
@ -52,4 +54,6 @@ else
|
|||
xrandr --output HDMI-1-0 --above eDP-1
|
||||
xrandr --output HDMI-1-0 --primary
|
||||
fi
|
||||
fi
|
||||
|
||||
exec i3
|
||||
|
|
Loading…
Reference in a new issue