Skip to content

Commit

Permalink
- Add default config file.
Browse files Browse the repository at this point in the history
- Add default config file to compilation zip.
- Bump version.
- Add stuff to .gitignore.
  • Loading branch information
snaphat committed Apr 19, 2021
1 parent 32cd7f0 commit 3e7d821
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 2 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
*.exe
*.zip
config.ini
*.json
*.suo
*.sqlite
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.0.8
v0.0.9
2 changes: 1 addition & 1 deletion _COMPILE.bat
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ Ahk2Exe.exe /in "virtual_desktop_enhancer.ahk" /icon "app.ico" /compress 2
:loop
@tasklist /fi "imagename eq Ahk2Exe.exe" |find ":" > nul
@if errorlevel 1 goto loop > nul
zip -r virtual_desktop_enhancer.zip virtual_desktop_enhancer.exe _INSTALL.bat _UNINSTALL.bat README.md VERSION
zip -r virtual_desktop_enhancer.zip virtual_desktop_enhancer.exe config.default.ini _INSTALL.bat _UNINSTALL.bat README.md VERSION
14 changes: 14 additions & 0 deletions config.default.ini
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

0 comments on commit 3e7d821

Please sign in to comment.