dotfiles/config/i3/autorandrloadmenu

11 lines
243 B
Plaintext
Raw Normal View History

#!/usr/bin/env bash
shopt -s nullglob globstar
2020-01-06 15:23:50 +00:00
profile=$(echo -e "common\nclone-largest\nhorizontal\nvertical\n$(autorandr 2>&1 | cut -d' ' -f1)" | rofi -dmenu -p "Load profile" "$@")
[[ -n $profile ]] || exit
autorandr --load "$profile"