-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Add default config file to compilation zip. - Bump version. - Add stuff to .gitignore.
- Loading branch information
Showing
4 changed files
with
20 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,6 @@ | ||
*.exe | ||
*.zip | ||
config.ini | ||
*.json | ||
*.suo | ||
*.sqlite |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
v0.0.8 | ||
v0.0.9 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,20 @@ | ||
[config] | ||
; Configures prefix for hotkeys that switch between desktops. | ||
; Default: Ctrl-Win-<suffix> | ||
switch_to_desktop_prefix=^# | ||
|
||
; Configures the prefix for hotkeys that move windows between desktops. | ||
; Default: Win-Alt-<suffix> | ||
move_active_window_to_desktop_prefix=!# | ||
|
||
; Configures the prefix for hotkeys that move windows between desktops and follow. | ||
; Ctrl-Win-Alt-<suffix> | ||
move_active_window_to_desktop_and_follow_prefix=^!# | ||
|
||
; Enables or disables desktop looping. | ||
; 0 to disable, 1 to enable. | ||
enable_desktop_looping=0 | ||
|
||
; Enables or disables animating of looping. | ||
; 0 to disable, 1 to enable. | ||
animate_desktop_looping=0 |