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
|
#!/bin/sh
|
||||||
|
|
||||||
|
if [ -f /usr/bin/envycontrol ]; then
|
||||||
gpu_mode=$(/usr/bin/envycontrol -q)
|
gpu_mode=$(/usr/bin/envycontrol -q)
|
||||||
if [ "$gpu_mode" = "nvidia" ]; then
|
if [ "$gpu_mode" = "nvidia" ]; then
|
||||||
xrandr --setprovideroutputsource modesetting NVIDIA-0
|
xrandr --setprovideroutputsource modesetting NVIDIA-0
|
||||||
|
@ -11,6 +12,7 @@ else
|
||||||
xrandr --output HDMI-1-0 --above eDP-1
|
xrandr --output HDMI-1-0 --above eDP-1
|
||||||
xrandr --output HDMI-1-0 --primary
|
xrandr --output HDMI-1-0 --primary
|
||||||
fi
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
pkill picom
|
pkill picom
|
||||||
picom -b
|
picom -b
|
||||||
|
|
4
.xinitrc
4
.xinitrc
|
@ -41,6 +41,8 @@ fi
|
||||||
setxkbmap -layout us,pt
|
setxkbmap -layout us,pt
|
||||||
setxkbmap -option grp:win_space_toggle
|
setxkbmap -option grp:win_space_toggle
|
||||||
|
|
||||||
|
# setup monitors (laptop only)
|
||||||
|
if [ -f /usr/bin/envycontrol ]; then
|
||||||
gpu_mode=$(/usr/bin/envycontrol -q)
|
gpu_mode=$(/usr/bin/envycontrol -q)
|
||||||
if [ "$gpu_mode" = "nvidia" ]; then
|
if [ "$gpu_mode" = "nvidia" ]; then
|
||||||
xrandr --setprovideroutputsource modesetting NVIDIA-0
|
xrandr --setprovideroutputsource modesetting NVIDIA-0
|
||||||
|
@ -52,4 +54,6 @@ else
|
||||||
xrandr --output HDMI-1-0 --above eDP-1
|
xrandr --output HDMI-1-0 --above eDP-1
|
||||||
xrandr --output HDMI-1-0 --primary
|
xrandr --output HDMI-1-0 --primary
|
||||||
fi
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
exec i3
|
exec i3
|
||||||
|
|
Loading…
Reference in a new issue