LOGIN / SIGN UP
2 Author: Claes Nästén
Date: Thu Mar 11 13:06:28 +0100 2010
Subject: Add workspace action for upper and lower screen edges.

data/mouse
 
80 @@ -80,20 +80,28 @@
80
81 ScreenEdge {
82 Down {
83 Enter = "Mod1 Any" { Actions = "GoToWorkspace Down" }
84 ButtonRelease = "3" { Actions = "ShowMenu Root" }
85 ButtonRelease = "2" { Actions = "ShowMenu Goto" }
86 ButtonRelease = "1" { Actions = "GoToWorkspace Down" }
87 ButtonRelease = "Mod4 2" { Actions = "ShowMenu GotoClient" }
88 ButtonRelease = "4" { Actions = "GoToWorkspace Right" }
89 ButtonRelease = "5" { Actions = "GoToWorkspace Left" }
90 ButtonRelease = "Mod1 4" { Actions = "GoToWorkspace Next" }
91 ButtonRelease = "Mod1 5" { Actions = "GoToWorkspace Prev" }
92 ButtonRelease = "4" { Actions = "GoToWorkspace Up" }
93 ButtonRelease = "5" { Actions = "GoToWorkspace Down" }
94 ButtonRelease = "Mod1 4" { Actions = "GoToWorkspace PrevV" }
95 ButtonRelease = "Mod1 5" { Actions = "GoToWorkspace NextV" }
96 EnterMoving = "Any Any" { Actions = "WarpToWorkspace Down" }
97 }
98 Up {
99 Enter = "Mod1 Any" { Actions = "GoToWorkspace Up" }
100 ButtonRelease = "3" { Actions = "ShowMenu Root" }
101 ButtonRelease = "2" { Actions = "ShowMenu Goto" }
102 ButtonRelease = "1" { Actions = "GoToWorkspace Up" }
103 ButtonRelease = "Mod4 2" { Actions = "ShowMenu GotoClient" }
104 ButtonRelease = "Mod1 4" { Actions = "GoToWorkspace Next" }
105 ButtonRelease = "Mod1 5" { Actions = "GoToWorkspace Prev" }
106 ButtonRelease = "4" { Actions = "GoToWorkspace Up" }
107 ButtonRelease = "5" { Actions = "GoToWorkspace Down" }
108 ButtonRelease = "Mod1 4" { Actions = "GoToWorkspace PrevV" }
109 ButtonRelease = "Mod1 5" { Actions = "GoToWorkspace NextV" }
110 EnterMoving = "Any Any" { Actions = "WarpToWorkspace Up" }
111 }
112 Left {
113 Enter = "Mod1 Any" { Actions = "GoToWorkspace Left" }
...