View Single Post
Posts: 27 | Thanked: 9 times | Joined on Sep 2007
#126
Don't think this has been mentioned or maybe I missed it. You can get the "right" rotation by replacing the four instances of "left" with "right" in the previously mentionned sliderotate.py file.

Code:
def rotate(new_orientation):
	orientation = client.get_string('/apps/rotate/orientation')
	if new_orientation == "power":
		if orientation == "right":
        		client.set_string('/apps/rotate/orientation',"normal")
                	rotate='DISPLAY=:0.0 /usr/bin/xrandr -o normal'
			xmodmap_conf='/usr/lib/sliderotate/normal.xmodmap'
        	elif orientation == "normal":
                	client.set_string('/apps/rotate/orientation',"right")
                	rotate='DISPLAY=:0.0 /usr/bin/xrandr -o right'
                        xmodmap_conf='/usr/lib/sliderotate/right.xmodmap'
 

The Following User Says Thank You to jjstewart For This Useful Post: