Navigating vertically has not been supported with the default keybindings,
changed the up/down to with shift modifier. Also increased the default
workspace count to 9.
| data/config.in | |
| 18 | @@ -18,9 +18,9 @@ |
| 18 | } |
| 19 | |
| 20 | Screen { |
| 21 | Workspaces = "4" |
| 22 | WorkspacesPerRow = "2" |
| 23 | WorkspaceNames = "Main;Web;E-mail;Music" |
| 24 | Workspaces = "9" |
| 25 | WorkspacesPerRow = "3" |
| 26 | WorkspaceNames = "Main;Web;E-mail;Music;Work 05;Work 06;Work 07;Work 08;Work 09" |
| 27 | ShowFrameList = "True" |
| 28 | ShowStatusWindow = "True" |
| 29 | ShowStatusWindowCenteredOnRoot = "False" |
| ... | |
| data/keys | |
| 22 | @@ -22,6 +22,8 @@ |
| 22 | # Moving in workspaces |
| 23 | KeyPress = "Ctrl Mod1 Left" { Actions = "GotoWorkspace Left" } |
| 24 | KeyPress = "Ctrl Mod1 Right" { Actions = "GotoWorkspace Right" } |
| 25 | KeyPress = "Ctrl Mod1 Up" { Actions = "GotoWorkspace Up" } |
| 26 | KeyPress = "Ctrl Mod1 Down" { Actions = "GotoWorkspace Down" } |
| 27 | KeyPress = "Mod4 1" { Actions = "GotoWorkspace 1" } |
| 28 | KeyPress = "Mod4 2" { Actions = "GotoWorkspace 2" } |
| 29 | KeyPress = "Mod4 3" { Actions = "GotoWorkspace 3" } |
| ... | |
| 33 | @@ -31,8 +33,10 @@ |
| 33 | KeyPress = "Mod4 7" { Actions = "GotoWorkspace 7" } |
| 34 | KeyPress = "Mod4 8" { Actions = "GotoWorkspace 8" } |
| 35 | KeyPress = "Mod4 9" { Actions = "GotoWorkspace 9" } |
| 34 | KeyPress = "Ctrl Mod1 Up" { Actions = "SendToWorkspace Next; GoToWorkspace Next" } |
| 35 | KeyPress = "Ctrl Mod1 Down" { Actions = "SendToWorkspace Prev; GoToWorkspace Prev" } |
| 38 | KeyPress = "Ctrl Mod1 Shift Left" { Actions = "SendToWorkspace Next; GoToWorkspace Next" } |
| 39 | KeyPress = "Ctrl Mod1 Shift Right" { Actions = "SendToWorkspace Prev; GoToWorkspace Prev" } |
| 40 | KeyPress = "Ctrl Mod1 Shift Up" { Actions = "SendToWorkspace NextV; GoToWorkspace NextV" } |
| 41 | KeyPress = "Ctrl Mod1 Shift Down" { Actions = "SendToWorkspace PrevV; GoToWorkspace PrevV" } |
| 42 | KeyPress = "Mod4 F1" { Actions = "SendToWorkspace 1" } |
| 43 | KeyPress = "Mod4 F2" { Actions = "SendToWorkspace 2" } |
| 44 | KeyPress = "Mod4 F3" { Actions = "SendToWorkspace 3" } |
| ... | |