summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Grenville <pyxlcy@gmail.com>2014-06-15 11:51:59 +0800
committerRichard Grenville <pyxlcy@gmail.com>2014-06-15 11:51:59 +0800
commit8df5b1d5be863bbe0fe3f88602d51bc80c79f3a3 (patch)
tree6338a3f796b70dd4d4185b29c09e22d5e67795f3
parent0fa155f566d7d1d290e4b922859410b5f76f9dfa (diff)
downloadtdebase-8df5b1d5.tar.gz
tdebase-8df5b1d5.zip
Misc #205: Add 2 long options & Update documentation
- Add two long variants of short options. - Update documentation.
-rw-r--r--compton.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/compton.c b/compton.c
index dce4d0963..973261c46 100644
--- a/compton.c
+++ b/compton.c
@@ -5543,6 +5543,7 @@ get_cfg(session_t *ps, int argc, char *const *argv, bool first_pass) {
{ "shadow-offset-y", required_argument, NULL, 't' },
{ "fade-in-step", required_argument, NULL, 'I' },
{ "fade-out-step", required_argument, NULL, 'O' },
+ { "fade-delta", required_argument, NULL, 'D' },
{ "menu-opacity", required_argument, NULL, 'm' },
{ "shadow", no_argument, NULL, 'c' },
{ "no-dock-shadow", no_argument, NULL, 'C' },
@@ -5550,6 +5551,7 @@ get_cfg(session_t *ps, int argc, char *const *argv, bool first_pass) {
{ "fading", no_argument, NULL, 'f' },
{ "inactive-opacity", required_argument, NULL, 'i' },
{ "frame-opacity", required_argument, NULL, 'e' },
+ { "daemon", no_argument, NULL, 'b' },
{ "no-dnd-shadow", no_argument, NULL, 'G' },
{ "shadow-red", required_argument, NULL, 257 },
{ "shadow-green", required_argument, NULL, 258 },