77 lines
2.5 KiB
Bash
Executable File
77 lines
2.5 KiB
Bash
Executable File
#!/bin/bash
|
|
get_current_monitor_width() {
|
|
# Get cursor position from Hyprland
|
|
local pos=$(hyprctl cursorpos 2>/dev/null | head -n 1)
|
|
|
|
if [ -z "$pos" ]; then
|
|
echo "Error: Could not get cursor position from Hyprland" >&2
|
|
return 1
|
|
fi
|
|
|
|
# Extract coordinates (hyprctl cursorpos returns: "x, y")
|
|
local x=$(echo "$pos" | awk -F',' '{print $1}' | tr -d ' ')
|
|
local y=$(echo "$pos" | awk -F',' '{print $2}' | tr -d ' ')
|
|
|
|
# Get the width of the monitor containing the cursor
|
|
local width=$(hyprctl monitors -j | jq -r --argjson x "$x" --argjson y "$y" '
|
|
.[] | select(
|
|
.x <= $x and
|
|
.y <= $y and
|
|
(.x + .width) > $x and
|
|
(.y + .height) > $y
|
|
) | .width' | head -n 1)
|
|
|
|
echo "$width"
|
|
}
|
|
|
|
post_rofi() {
|
|
local image_dir="$HOME/.config/rofi/images/neco"
|
|
local current_image=$(grep "background-image: url" "$THEME_FILE" | cut -d'"' -f2)
|
|
local new_image=$(find "$image_dir" -type f | sort -R | head -n 1 | sed "s|^$HOME|~|")
|
|
while true; do
|
|
if [[ "$new_image" != "$current_image" ]]; then
|
|
sed -i 's|url("[^"]*"|url("'"$new_image"'"|' "$THEME_FILE"
|
|
break
|
|
fi
|
|
new_image=$(find "$image_dir" -type f | sort -R | head -n 1 | sed "s|^$HOME|~|")
|
|
done
|
|
}
|
|
|
|
width=$(get_current_monitor_width)
|
|
if [ "$width" -gt 2256 ]; then
|
|
echo "showing wide"
|
|
#is wider than laptop monitor
|
|
THEME_FILE=~/.config/rofi/help-manager/help-manager-wide.rasi
|
|
else
|
|
#laptop monitor
|
|
THEME_FILE=~/.config/rofi/help-manager/help-manager.rasi
|
|
fi
|
|
|
|
SYSTEM=" System"
|
|
NVIM=" Neovim"
|
|
BASH_HELP=" Bash"
|
|
chosen=$(echo -e "$SYSTEM\n$NVIM\n$BASH_HELP" | rofi -mesg " Keybinds" -dmenu -p "Action:" -config ~/.config/rofi/config-manager/config-manager.rasi)
|
|
|
|
case $chosen in
|
|
"$NVIM")
|
|
cat ~/.config/rofi/help-manager/neovim-keybinds.txt | rofi -mesg " Neovim Binds" -dmenu -i -p "" -config $THEME_FILE \
|
|
-font "Geist Mono 14" \
|
|
-kb-accept-entry ""
|
|
;;
|
|
"$SYSTEM")
|
|
cat ~/.config/rofi/help-manager/system-keybinds.txt | rofi -mesg " System Binds" -dmenu -i -p "" -config $THEME_FILE \
|
|
-font "Geist Mono 14" \
|
|
-kb-accept-entry ""
|
|
;;
|
|
"$BASH_HELP")
|
|
if [ ! -d "/tmp/firefox-dev" ]; then
|
|
echo "Creating firefox profile"
|
|
mkdir -p /tmp/firefox-dev
|
|
firefox -CreateProfile "dev-profile /tmp/firefox-dev"
|
|
fi
|
|
|
|
firefox -P dev-profile -private-window https://devhints.io/bash &
|
|
;;
|
|
esac
|
|
post_rofi &
|