linutil/tabs/utils/monitor-control/utility_functions.sh

86 lines
2.7 KiB
Bash
Raw Normal View History

2024-08-15 03:41:41 +01:00
#!/bin/sh -e
2024-08-21 08:18:34 +01:00
. ../../common-script.sh
2024-09-12 21:14:50 +01:00
# Function to check xrandr is installed
setup_xrandr() {
echo "Install xrandr if not already installed..."
if ! command_exists xrandr; then
case ${PACKAGER} in
2024-09-12 21:14:50 +01:00
pacman)
$ESCALATION_TOOL "${PACKAGER}" -S --noconfirm xorg-xrandr
;;
apt-get)
$ESCALATION_TOOL "${PACKAGER}" install -y x11-xserver-utils
;;
*)
$ESCALATION_TOOL "${PACKAGER}" install -y xorg-x11-server-utils
;;
esac
else
echo "xrandr is already installed."
fi
}
# Function to execute xrandr commands and handle errors
execute_command() {
2024-09-12 21:14:50 +01:00
command="$1"
echo "Executing: $command"
eval "$command" 2>&1 | tee /tmp/xrandr.log | tail -n 20
if [ $? -ne 0 ]; then
echo "An error occurred while executing the command. Check /tmp/xrandr.log for details."
fi
}
# Function to detect connected monitors
detect_connected_monitors() {
xrandr_output=$(xrandr)
echo "$xrandr_output" | grep " connected" | awk '{print $1}'
}
# Function to get resolutions for a monitor
get_unique_resolutions() {
2024-09-12 21:14:50 +01:00
monitor="$1"
xrandr_output=$(xrandr)
2024-08-29 22:37:06 +01:00
# Get available resolutions from xrandr without line limit
available_resolutions=$(echo "$xrandr_output" | sed -n "/$monitor connected/,/^[^ ]/p" | grep -oP '\d+x\d+' | sort -u)
2024-08-29 22:27:36 +01:00
# Define standard resolutions
standard_resolutions="1920x1080 1280x720 1600x900 2560x1440 3840x2160"
2024-09-12 21:14:50 +01:00
temp_file=$(mktemp)
echo "$available_resolutions" > "$temp_file"
2024-08-29 22:27:36 +01:00
# Filter standard resolutions to include only those available for the monitor
2024-09-12 21:14:50 +01:00
filtered_standard_resolutions=$(echo "$standard_resolutions" | tr ' ' '\n' | grep -xF -f "$temp_file")
rm "$temp_file"
available_res_file=$(mktemp)
filtered_standard_res_file=$(mktemp)
echo "$available_resolutions" | sort > "$available_res_file"
echo "$filtered_standard_resolutions" | sort > "$filtered_standard_res_file"
2024-08-29 22:27:36 +01:00
# Get remaining available resolutions (excluding standard ones)
2024-09-12 21:14:50 +01:00
remaining_resolutions=$(comm -23 "$available_res_file" "$filtered_standard_res_file")
rm "$available_res_file" "$filtered_standard_res_file"
2024-08-29 22:27:36 +01:00
# Combine filtered standard resolutions and remaining resolutions, and limit to 10 results
2024-09-12 21:14:50 +01:00
printf "%b\n" "$filtered_standard_resolutions\n$remaining_resolutions" | head -n 10
}
# Function to prompt for confirmation
confirm_action() {
2024-09-12 21:14:50 +01:00
action="$1"
echo "$action"
read -p "Are you sure? (y/n): " confirm
2024-09-12 21:14:50 +01:00
if echo "$confirm" | grep -qE '^[Yy]$'; then
return 0
else
return 1
fi
}
checkEnv
2024-08-21 08:18:34 +01:00
setup_xrandr