diff options
author | Richard Grenville <[email protected]> | 2014-06-15 11:51:59 +0800 |
---|---|---|
committer | Richard Grenville <[email protected]> | 2014-06-15 11:51:59 +0800 |
commit | 8df5b1d5be863bbe0fe3f88602d51bc80c79f3a3 (patch) | |
tree | 6338a3f796b70dd4d4185b29c09e22d5e67795f3 | |
parent | 0fa155f566d7d1d290e4b922859410b5f76f9dfa (diff) | |
download | tdebase-8df5b1d5be863bbe0fe3f88602d51bc80c79f3a3.tar.gz tdebase-8df5b1d5be863bbe0fe3f88602d51bc80c79f3a3.zip |
Misc #205: Add 2 long options & Update documentation
- Add two long variants of short options.
- Update documentation.
-rw-r--r-- | compton.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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 }, |