summaryrefslogtreecommitdiffstats
path: root/config/config.c
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2014-11-25 12:57:34 +0100
committerDave Davenport <qball@gmpclient.org>2014-11-25 12:57:34 +0100
commit2c9f33a1bde0fca7a2e9001f9e8f419c3009d41d (patch)
treefb7914dc046b39c85ba23ba19c8b3765eed76259 /config/config.c
parent471c0c5df79fcaa02bcd46dbf081a9ffde92e6d5 (diff)
More commenting.
Code Comment Comment % Blank Total File ------ --------- --------- --------- --------- ----------------- 36 69 65.7% 2 107 config.c 66 31 32.0% 14 111 dmenu-dialog.c 185 52 21.9% 19 256 helper.c 179 66 26.9% 27 272 history.c 1896 325 14.6% 345 2566 rofi.c 197 45 18.6% 42 284 run-dialog.c 144 31 17.7% 24 199 script-dialog.c 171 42 19.7% 31 244 ssh-dialog.c 350 69 16.5% 84 503 textbox.c 151 37 19.7% 27 215 xrmoptions.c 26 0 0.0% 5 31 helper-test.c 65 6 8.5% 35 106 history-test.c 109 5 4.4% 22 136 textbox-test.c 34 33 49.3% 24 91 config.h 5 10 66.7% 4 19 dmenu-dialog.h 11 70 86.4% 10 91 helper.h 9 46 83.6% 8 63 history.h 83 128 60.7% 17 228 rofi.h 4 8 66.7% 2 14 run-dialog.h 11 26 70.3% 5 42 script-dialog.h 4 8 66.7% 2 14 ssh-dialog.h 64 142 68.9% 31 237 textbox.h 6 13 68.4% 4 23 xrmoptions.h
Diffstat (limited to 'config/config.c')
-rw-r--r--config/config.c26
1 files changed, 13 insertions, 13 deletions
diff --git a/config/config.c b/config/config.c
index 2eab087a..a6c809b8 100644
--- a/config/config.c
+++ b/config/config.c
@@ -66,12 +66,12 @@ Settings config = {
/** Command executed when running application in terminal */
.run_shell_command = "{terminal} -e {cmd}",
/** Key binding */
- .window_key = "F12",
+ .window_key = "F12",
/** Key to open run dialog */
- .run_key = "mod1+F2",
+ .run_key = "mod1+F2",
/** Key to open ssh dialog */
- .ssh_key = "mod1+F3",
- /**
+ .ssh_key = "mod1+F3",
+ /**
* Location of the window.
* Enumeration indicating location or gravity of window.
*
@@ -86,22 +86,22 @@ Settings config = {
/** Mode of window, list (Vertical) or dmenu like (Horizontal) */
.hmode = FALSE,
/** Padding between elements */
- .padding = 5,
+ .padding = 5,
/** Y offset */
- .y_offset = 0,
+ .y_offset = 0,
/** X offset */
- .x_offset = 0,
+ .x_offset = 0,
/** Always should config.menu_lines lines, even if less lines are available */
- .fixed_num_lines = FALSE,
+ .fixed_num_lines = FALSE,
/** Do not use history */
- .disable_history = FALSE,
+ .disable_history = FALSE,
/** Use levenshtein sorting when matching */
- .levenshtein_sort = FALSE,
+ .levenshtein_sort = FALSE,
/** Separator to use for dmenu mode */
- .separator = '\n',
+ .separator = '\n',
/** Height of an element in #chars */
- .element_height = 1,
+ .element_height = 1,
/** Sidebar mode, show the switchers */
- .sidebar_mode = FALSE
+ .sidebar_mode = FALSE
};