#!/bin/bash
#  Generally, any valid X Keysym string will work. Multiple keys are
#  separated by '+'. Aliases exist for "alt", "ctrl", "shift",
#  "super", and "meta" which all map to Foo_L, such as Alt_L and
#  Control_L, etc.

if [ -f /tmp/ventanasordenadas ];then
	xdotool key "alt+super+o"
	rm /tmp/ventanasordenadas
else
	xdotool key "super+o"
	touch /tmp/ventanasordenadas
fi