![asd](https://user-images.githubusercontent.com/20746840/222974748-ccf31cd6-07b6-46c2-9824-51dc09a63403.gif) `.config/sxhkd/sxhkdrc` ```bash #... # preselect the ratio with mouse scroll super + ctrl + shift + {button4,button5} ~/.config/sxhkd/set_bspc_ratio.sh {up,down} #... ``` `.config/sxhkd/set_bspc_ratio.sh` ```bash #!/bin/bash # Get the ID of the current node node_id=$(bspc query -N -n) # Get the JSON output of the node node_info=$(bspc query -T -n $node_id) # Extract the preselection values from the JSON output preselection=$(echo $node_info | jq '.presel') if [[ $preselection == "null" ]]; then exit 1 fi # Extract the split direction and set the increase/decrease values accordingly direction=$(echo $preselection | jq -r '.splitDir') case $direction in west|north) increase="0.1" decrease="-0.1" ;; east|south) increase="-0.1" decrease="0.1" ;; *) exit 1 ;; esac # Extract the current split ratio and adjust it based on the scroll direction ratio=$(echo $preselection | jq '.splitRatio') if [[ $1 == "up" ]]; then ratio=$(echo "$ratio + $increase" | bc) else ratio=$(echo "$ratio + $decrease" | bc) fi # Set the new split ratio bspc node $node_id -o $ratio ```