Skip to content

Commit

Permalink
Merge pull request #3 from mtxr/patch-1
Browse files Browse the repository at this point in the history
Fixes #1
  • Loading branch information
yamnikov-oleg authored Jun 25, 2018
2 parents 1b76e4b + 31cbaad commit 2d010cd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,11 +81,11 @@ Projektor configuration file is located at `~/.projektor/config.yaml`.
Here's annotation for every paramater of the default config:

```yaml
# Key bind, used by Projektor daemon. `mod4` is the Windows (Super) key.
# Key bind, used by Projektor daemon. `Mod4` is the Windows (Super) key.
# If your Super+Q shortcut doesn't work, edit this option.
# You can use modifier keys `shift` and `control`.
# To identify some complex keybind use `xbindkeys` tool.
keybind: mod4-q
keybind: Mod4-q
# How often should projektor daemon run an instance in the background with
# '-dry' flag?
# The dry instances are run to force the kernel to cache all the data needed
Expand Down
2 changes: 1 addition & 1 deletion config.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ var (
func DefaultConfig() *ProjektorConfig {
c := &ProjektorConfig{}

c.KeyBind = "mod4-q"
c.KeyBind = "Mod4-q"
c.ForceCacheInterval = 60

c.EnabledCategories.Calc = true
Expand Down

0 comments on commit 2d010cd

Please sign in to comment.