dotfiles/config/i3/autorandrdefaultmenu

11 lines
204 B
Plaintext
Raw Normal View History

#!/usr/bin/env bash
shopt -s nullglob globstar
2018-08-17 13:34:09 +00:00
profile=$(echo -e "$(autorandr 2>&1 | cut -d' ' -f1)" | rofi -dmenu -p "Default profile" "$@")
[[ -n $profile ]] || exit
autorandr --default "$profile"