[zshrc] new ränder profiles
This commit is contained in:
parent
981ebf9f5f
commit
5563ffe726
|
@ -71,37 +71,28 @@ function ränder() {
|
||||||
(
|
(
|
||||||
case "$1" in
|
case "$1" in
|
||||||
"office")
|
"office")
|
||||||
xrandr \
|
xrandr \
|
||||||
--output VGA-1 --off \
|
--output VIRTUAL1 --off \
|
||||||
--output LVDS-1 --primary --mode 1280x800 --pos 0x720 --rotate normal \
|
--output eDP1 --primary --mode 1920x1080 --pos 0x632 --rotate normal \
|
||||||
--output HDMI-3 --mode 1920x1200 --pos 1280x0 --rotate normal \
|
--output DP1 --off \
|
||||||
--output HDMI-2 --off \
|
--output DP2-1 --off \
|
||||||
--output HDMI-1 --off \
|
--output DP2-2 --mode 1920x1200 --pos 1920x0 --rotate normal \
|
||||||
--output DP-3 --off \
|
--output DP2-3 --off \
|
||||||
--output DP-2 --off \
|
--output HDMI2 --off \
|
||||||
--output DP-1 --off
|
--output HDMI1 --off \
|
||||||
;;
|
--output DP2 --off
|
||||||
"officealt")
|
|
||||||
xrandr \
|
|
||||||
--output VGA-1 --off \
|
|
||||||
--output LVDS-1 --primary --mode 1280x800 --pos 0x1000 --rotate normal \
|
|
||||||
--output HDMI-3 --mode 1920x1200 --pos 1280x0 --rotate left \
|
|
||||||
--output HDMI-2 --off \
|
|
||||||
--output HDMI-1 --off \
|
|
||||||
--output DP-3 --off \
|
|
||||||
--output DP-2 --off \
|
|
||||||
--output DP-1 --off
|
|
||||||
;;
|
;;
|
||||||
"solo")
|
"solo")
|
||||||
xrandr \
|
xrandr \
|
||||||
--output VGA-1 --off \
|
--output VIRTUAL1 --off \
|
||||||
--output LVDS-1 --primary --mode 1280x800 --rotate normal \
|
--output eDP1 --primary --mode 1920x1080 --rotate normal \
|
||||||
--output HDMI-3 --off \
|
--output DP1 --off \
|
||||||
--output HDMI-2 --off \
|
--output DP2-1 --off \
|
||||||
--output HDMI-1 --off \
|
--output DP2-2 --off \
|
||||||
--output DP-3 --off \
|
--output DP2-3 --off \
|
||||||
--output DP-2 --off \
|
--output HDMI2 --off \
|
||||||
--output DP-1 --off
|
--output HDMI1 --off \
|
||||||
|
--output DP2 --off
|
||||||
;;
|
;;
|
||||||
"auto")
|
"auto")
|
||||||
xrandr --auto
|
xrandr --auto
|
||||||
|
@ -111,12 +102,11 @@ function ränder() {
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
echo "Invalid Preset"
|
echo "Invalid Preset"
|
||||||
notify-send "ränder" "Invalid Preset $1" -i ~/.local/share/icons/Paper/48x48/devices/video-display.png
|
notify-send "ränder" "Invalid Preset $1"
|
||||||
invalid="true"
|
invalid="true"
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
[ -z $invalid ] && notify-send "ränder" "Switched to $1" -i ~/.local/share/icons/Paper/48x48/devices/video-display.png
|
[ -z $invalid ] && notify-send "ränder" "Switched to $1"
|
||||||
feh --bg-fill ~/bg.jpg
|
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Reference in a new issue