Skip to content

Commit

Permalink
Change group to screen
Browse files Browse the repository at this point in the history
Because it doesn't change group and generates such errors:
2015-03-27 07:46:05,410 ERROR handle_KeyPress:854 KB command error nextgroup: No such command.
2015-03-27 07:46:06,058 ERROR handle_KeyPress:854 KB command error prevgroup: No such command.
2015-03-27 07:46:07,187 ERROR handle_KeyPress:854 KB command error nextgroup: No such command.
2015-03-27 07:46:08,042 ERROR handle_KeyPress:854 KB command error nextgroup: No such command.
  • Loading branch information
VFedyk committed Mar 27, 2015
1 parent 8b26b99 commit ebc38d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dwakar/config.py
Expand Up @@ -67,8 +67,8 @@
Key([mod], "x", lazy.window.kill()),

# move to the adjacent screen
Key([mod], "Left", lazy.group.prevgroup()),
Key([mod], "Right", lazy.group.nextgroup()),
Key([mod], "Left", lazy.screen.prevgroup()),
Key([mod], "Right", lazy.screen.nextgroup()),

# interact with prompts
Key([mod], "r", lazy.spawncmd()),
Expand Down

0 comments on commit ebc38d6

Please sign in to comment.