diff options
author | Devin J. Pohly <djpohly@gmail.com> | 2020-08-14 10:18:52 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-14 10:18:52 -0500 |
commit | 245c3638ae222156ae2f4496d3f7b8d49fcdcabf (patch) | |
tree | 0274ced8aa23bf473e47808ebafa5a5748cf0be5 | |
parent | e3e9504fcd0b1b38037aa9dffd04ac0de1ce5e82 (diff) | |
parent | 82b2a948b69691bde5f2d08b132d26c128d5537c (diff) |
Merge pull request #40 from guidocella/firefox-class
Fix Firefox class
-rw-r--r-- | config.def.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config.def.h b/config.def.h index 309c2fa..f605d7b 100644 --- a/config.def.h +++ b/config.def.h @@ -11,7 +11,7 @@ static const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" }; static const Rule rules[] = { /* app_id title tags mask isfloating monitor */ { "Gimp", NULL, 0, 1, -1 }, - { "Firefox", NULL, 1 << 8, 0, -1 }, + { "firefox", NULL, 1 << 8, 0, -1 }, }; /* layout(s) */ |