mirror of
https://github.com/end-4/dots-hyprland.git
synced 2026-06-05 14:59:27 -05:00
72 lines
2.3 KiB
Bash
72 lines
2.3 KiB
Bash
# Handle args for subcmd: checkdeps
|
|
# shellcheck shell=bash
|
|
|
|
VMON_RESOLUTION=1920x1080
|
|
VMON_FPS=60
|
|
VMON_POSITION=auto
|
|
VMON_SCALE=1
|
|
VMON_EXTRA=""
|
|
WAYVNC_LOGLEVEL=${WAYVNC_LOGLEVEL:-quiet}
|
|
|
|
showhelp(){
|
|
echo -e "Syntax: $0 virtmon [OPTIONS]
|
|
|
|
Create virtual monitor for testing multi-monitors.
|
|
|
|
Note:
|
|
The virtual monitor will be served via wayvnc.
|
|
You need a VNC client to connect to it.
|
|
|
|
Options:
|
|
-h, --help Show this help message and exit
|
|
-c, --clean Clean all tester monitors and wayvnc sessions and exit
|
|
-d, --daemon Run in background
|
|
--no-guard Disable hypr_mon_guard
|
|
|
|
For the syntax of following options, see also Hyprland Wiki:
|
|
https://wiki.hypr.land/Configuring/Monitors
|
|
--res <res> Resolution, by default ${STY_UNDERLINE}$VMON_RESOLUTION${STY_RST}
|
|
--fps <fps> Refresh rate and FPS, by default ${STY_UNDERLINE}$VMON_FPS${STY_RST}
|
|
--pos <pos> Position, by default ${STY_UNDERLINE}$VMON_POSITION${STY_RST}
|
|
Examples: ${STY_UNDERLINE}auto-left${STY_RST}, ${STY_UNDERLINE}0x-1080${STY_RST}
|
|
--sca <sca> Scale, by default ${STY_UNDERLINE}$VMON_SCALE${STY_RST}
|
|
--ext <ext> Extra properties, e.g. ${STY_UNDERLINE}transform, 1${STY_RST}
|
|
|
|
Tip: Recommended VNC client:
|
|
- Android: AVNC (https://github.com/gujjwal00/avnc)
|
|
- Linux X11, Windows and MacOS: TigerVNC (https://github.com/TigerVNC/tigervnc)
|
|
- Linux Wayland: Remmina-VNC (https://remmina.org/remmina-vnc)
|
|
"
|
|
}
|
|
# `man getopt` to see more
|
|
para=$(getopt \
|
|
-o hcd \
|
|
-l help,clean,daemon,no-guard,res:,fps:,pos:,sca:,ext: \
|
|
-n "$0" -- "$@")
|
|
[ $? != 0 ] && echo "$0: Error when getopt, please recheck parameters." && exit 1
|
|
#####################################################################################
|
|
eval set -- "$para"
|
|
while true ; do
|
|
case "$1" in
|
|
-h|--help) showhelp;exit;;
|
|
--) shift;break ;;
|
|
*) shift ;;
|
|
esac
|
|
done
|
|
|
|
eval set -- "$para"
|
|
while true ; do
|
|
case "$1" in
|
|
-c|--clean) CLEAN_TESTER_MONITORS=true;shift;;
|
|
-d|--daemon) RUNNING_IN_BACKGROUND=true;shift;;
|
|
--no-guard) DISABLE_HYPR_MON_GUARD=true;shift;;
|
|
--res) VMON_RESOLUTION="$2";shift 2;;
|
|
--fps) VMON_FPS="$2";shift 2;;
|
|
--pos) VMON_POSITION="$2";shift 2;;
|
|
--sca) VMON_SCALE="$2";shift 2;;
|
|
--ext) VMON_EXTRA=", $2";shift 2;;
|
|
--) shift;break ;;
|
|
*) echo -e "$0: Wrong parameters.";exit 1;;
|
|
esac
|
|
done
|