Rename some functions

break
noctuid 8 years ago
parent ac0f811cab
commit 0dc7c2825b

16
tdrop

@ -279,7 +279,7 @@ update_geometry_settings_for_monitor() {
fi fi
} }
set_geometry_for_monitor() { set_geometry() {
xdotool windowmove "$1" "$xoff" "$yoff" windowsize "$1" "$width" "$height" xdotool windowmove "$1" "$xoff" "$yoff" windowsize "$1" "$width" "$height"
} }
@ -638,7 +638,7 @@ wid_toggle() {
# cleaner to do after any map_post command with the downside of potential # cleaner to do after any map_post command with the downside of potential
# for minimal flicker or redundancy # for minimal flicker or redundancy
if $monitor_changed; then if $monitor_changed; then
set_geometry_for_monitor "$wid" set_geometry "$wid"
fi fi
else else
xdotool windowunmap "$wid" xdotool windowunmap "$wid"
@ -675,7 +675,7 @@ wid_toggle() {
width=${original_width:-$width} width=${original_width:-$width}
height=${original_height:-$height} height=${original_height:-$height}
update_geometry_settings_for_monitor update_geometry_settings_for_monitor
set_geometry_for_monitor "$wid" set_geometry "$wid"
fi fi
fi fi
fi fi
@ -716,7 +716,7 @@ get_geometry() {
fi fi
} }
give_geometry() { retrieve_geometry() {
eval "$(< "$MUTDROP_PATH"/auto_hidden/geometry)" eval "$(< "$MUTDROP_PATH"/auto_hidden/geometry)"
local x_fix y_fix X Y local x_fix y_fix X Y
if [[ -n $dec_fix ]]; then if [[ -n $dec_fix ]]; then
@ -733,8 +733,8 @@ give_geometry() {
echo -n "$X $Y" echo -n "$X $Y"
} }
set_geometry() { restore_geometry() {
xdotool windowmove "$1" "$(give_geometry)" xdotool windowmove "$1" "$(retrieve_geometry)"
} }
toggle_auto_hide() { toggle_auto_hide() {
@ -783,13 +783,13 @@ auto_show() {
if [[ $was_floating != false ]]; then if [[ $was_floating != false ]]; then
if $combine_map_post; then if $combine_map_post; then
local XY X Y local XY X Y
XY=$(give_geometry "$wid") XY=$(retrieve_geometry "$wid")
X=$(echo "$XY" | awk '{print $1}') X=$(echo "$XY" | awk '{print $1}')
Y=$(echo "$XY" | awk '{print $2}') Y=$(echo "$XY" | awk '{print $2}')
map_post_command "$wid" "$X" "$Y" map_post_command "$wid" "$X" "$Y"
else else
map_post_command "$wid" map_post_command "$wid"
set_geometry "$wid" restore_geometry "$wid"
fi fi
else else
xdotool windowmap "$wid" xdotool windowmap "$wid"

Loading…
Cancel
Save