2017-04-15 06:32:05 -04:00
|
|
|
/*
|
2014-03-01 11:27:52 -05:00
|
|
|
* rofi
|
2014-01-26 07:29:38 -05:00
|
|
|
*
|
|
|
|
* MIT/X11 License
|
2017-04-15 06:32:05 -04:00
|
|
|
* Copyright © 2013-2017 Qball Cow <qball@gmpclient.org>
|
2014-01-26 07:29:38 -05:00
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining
|
|
|
|
* a copy of this software and associated documentation files (the
|
|
|
|
* "Software"), to deal in the Software without restriction, including
|
|
|
|
* without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
* distribute, sublicense, and/or sell copies of the Software, and to
|
|
|
|
* permit persons to whom the Software is furnished to do so, subject to
|
|
|
|
* the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be
|
|
|
|
* included in all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
|
|
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
|
|
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
|
|
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
|
|
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
|
|
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
*
|
|
|
|
*/
|
2017-04-15 06:32:05 -04:00
|
|
|
|
2017-05-04 07:45:11 -04:00
|
|
|
#include "config.h"
|
2014-05-19 15:02:05 -04:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2016-01-07 10:01:56 -05:00
|
|
|
#include <glib.h>
|
2017-08-18 05:38:54 -04:00
|
|
|
#include "rofi-types.h"
|
2016-01-07 10:01:56 -05:00
|
|
|
#include "settings.h"
|
2014-01-26 07:29:38 -05:00
|
|
|
|
|
|
|
Settings config = {
|
2015-11-25 03:26:38 -05:00
|
|
|
/** List of enabled modi. */
|
|
|
|
/** -modi */
|
2017-10-02 13:45:06 -04:00
|
|
|
#ifdef WINDOW_MODE
|
2017-11-07 14:04:07 -05:00
|
|
|
.modi = "window,run,ssh",
|
2017-10-02 13:45:06 -04:00
|
|
|
#else
|
2017-11-07 14:04:07 -05:00
|
|
|
.modi = "run,ssh",
|
2017-10-02 13:45:06 -04:00
|
|
|
#endif
|
2017-07-03 03:23:03 -04:00
|
|
|
/** Border width around the window. */
|
2017-11-07 14:04:07 -05:00
|
|
|
.menu_bw = 1,
|
2014-11-25 02:27:08 -05:00
|
|
|
/** The width of the switcher. (0100 in % > 100 in pixels) */
|
2017-11-07 14:04:07 -05:00
|
|
|
.menu_width = 50,
|
2014-11-25 02:27:08 -05:00
|
|
|
/** Maximum number of options to show. */
|
2017-11-07 14:04:07 -05:00
|
|
|
.menu_lines = 15,
|
2014-11-25 02:27:08 -05:00
|
|
|
/** Number of columns */
|
2017-11-07 14:04:07 -05:00
|
|
|
.menu_columns = 1,
|
2014-11-25 02:27:08 -05:00
|
|
|
/** Font */
|
2017-11-07 14:04:07 -05:00
|
|
|
.menu_font = "mono 12",
|
2015-04-06 11:13:26 -04:00
|
|
|
|
2017-05-30 13:07:33 -04:00
|
|
|
/** Whether to load and show icons */
|
2017-11-07 14:04:07 -05:00
|
|
|
.show_icons = FALSE,
|
2017-05-30 13:07:33 -04:00
|
|
|
|
2014-11-25 02:27:08 -05:00
|
|
|
/** Terminal to use. (for ssh and open in terminal) */
|
2015-08-03 14:40:01 -04:00
|
|
|
.terminal_emulator = "rofi-sensible-terminal",
|
2014-09-03 07:07:26 -04:00
|
|
|
.ssh_client = "ssh",
|
2014-11-25 02:27:08 -05:00
|
|
|
/** Command when executing ssh. */
|
2017-11-07 14:04:07 -05:00
|
|
|
.ssh_command = "{terminal} -e {ssh-client} {host}",
|
2014-11-25 02:27:08 -05:00
|
|
|
/** Command when running */
|
2017-11-07 14:04:07 -05:00
|
|
|
.run_command = "{cmd}",
|
2015-01-05 15:53:50 -05:00
|
|
|
/** Command used to list executable commands. empty -> internal */
|
2017-11-07 14:04:07 -05:00
|
|
|
.run_list_command = "",
|
2014-11-25 02:27:08 -05:00
|
|
|
/** Command executed when running application in terminal */
|
2017-11-07 14:04:07 -05:00
|
|
|
.run_shell_command = "{terminal} -e {cmd}",
|
2016-05-12 05:31:06 -04:00
|
|
|
/** Command executed on accep-entry-custom for window modus */
|
2017-11-07 14:04:07 -05:00
|
|
|
.window_command = "xkill -id {window}",
|
2017-06-07 06:38:52 -04:00
|
|
|
/** No default icon theme, we search Adwaita and gnome as fallback */
|
2018-06-09 16:17:32 -04:00
|
|
|
.icon_theme = NULL,
|
2014-11-25 06:57:34 -05:00
|
|
|
/**
|
2014-11-25 02:27:08 -05:00
|
|
|
* Location of the window.
|
|
|
|
* Enumeration indicating location or gravity of window.
|
|
|
|
*
|
|
|
|
* WL_NORTH_WEST WL_NORTH WL_NORTH_EAST
|
|
|
|
*
|
|
|
|
* WL_EAST WL_CENTER WL_EAST
|
|
|
|
*
|
|
|
|
* WL_SOUTH_WEST WL_SOUTH WL_SOUTH_EAST
|
|
|
|
*
|
|
|
|
*/
|
2017-11-07 14:04:07 -05:00
|
|
|
.location = WL_CENTER,
|
2017-07-03 03:23:03 -04:00
|
|
|
/** Padding between elements */
|
2017-11-07 14:04:07 -05:00
|
|
|
.padding = 5,
|
2014-11-25 02:27:08 -05:00
|
|
|
/** Y offset */
|
2017-11-07 14:04:07 -05:00
|
|
|
.y_offset = 0,
|
2014-11-25 02:27:08 -05:00
|
|
|
/** X offset */
|
2017-11-07 14:04:07 -05:00
|
|
|
.x_offset = 0,
|
2016-10-23 05:38:40 -04:00
|
|
|
/** Always show config.menu_lines lines, even if less lines are available */
|
2017-11-07 14:04:07 -05:00
|
|
|
.fixed_num_lines = TRUE,
|
2014-11-25 02:27:08 -05:00
|
|
|
/** Do not use history */
|
2017-11-07 14:04:07 -05:00
|
|
|
.disable_history = FALSE,
|
2017-01-11 03:42:37 -05:00
|
|
|
/** Sort the displayed list */
|
2017-11-07 14:04:07 -05:00
|
|
|
.sort = FALSE,
|
2015-10-15 16:33:44 -04:00
|
|
|
/** Use levenshtein sorting when matching */
|
2018-06-13 05:57:23 -04:00
|
|
|
.sorting_method = SORT_NORMAL,
|
2015-01-12 08:13:46 -05:00
|
|
|
/** Case sensitivity of the search */
|
2017-11-07 14:04:07 -05:00
|
|
|
.case_sensitive = FALSE,
|
2016-05-25 14:40:23 -04:00
|
|
|
/** Cycle through in the element list */
|
2017-11-07 14:04:07 -05:00
|
|
|
.cycle = TRUE,
|
2014-11-25 02:27:08 -05:00
|
|
|
/** Height of an element in #chars */
|
2017-11-07 14:04:07 -05:00
|
|
|
.element_height = 1,
|
2015-11-25 03:26:38 -05:00
|
|
|
/** Sidebar mode, show the modi */
|
2017-11-07 14:04:07 -05:00
|
|
|
.sidebar_mode = FALSE,
|
2015-02-24 11:34:25 -05:00
|
|
|
/** auto select */
|
2017-11-07 14:04:07 -05:00
|
|
|
.auto_select = FALSE,
|
2015-03-31 16:45:02 -04:00
|
|
|
/** Parse /etc/hosts file in ssh view. */
|
2017-11-07 14:04:07 -05:00
|
|
|
.parse_hosts = FALSE,
|
2015-10-31 12:26:13 -04:00
|
|
|
/** Parse ~/.ssh/known_hosts file in ssh view. */
|
2017-11-07 14:04:07 -05:00
|
|
|
.parse_known_hosts = TRUE,
|
2015-03-31 16:45:02 -04:00
|
|
|
/** Modi to combine into one view. */
|
2016-08-25 02:43:40 -04:00
|
|
|
.combi_modi = "window,run",
|
|
|
|
.tokenize = TRUE,
|
|
|
|
.matching = "normal",
|
|
|
|
.matching_method = MM_NORMAL,
|
2017-10-21 05:18:52 -04:00
|
|
|
/** Desktop entry fields to match*/
|
2017-12-31 08:13:48 -05:00
|
|
|
.drun_match_fields = "name,generic,exec,categories",
|
2017-10-21 05:18:52 -04:00
|
|
|
/** Window fields to match in window mode*/
|
2017-11-07 14:04:07 -05:00
|
|
|
.window_match_fields = "all",
|
2015-08-02 09:45:52 -04:00
|
|
|
/** Monitor */
|
2017-11-07 14:04:07 -05:00
|
|
|
.monitor = "-5",
|
2017-07-06 12:09:25 -04:00
|
|
|
/** set line margin */
|
|
|
|
.line_margin = 2,
|
|
|
|
.line_padding = 1,
|
2015-09-04 15:08:23 -04:00
|
|
|
/** Set filter */
|
2017-11-07 14:04:07 -05:00
|
|
|
.filter = NULL,
|
2017-07-06 12:09:25 -04:00
|
|
|
/** Separator style: dash/solid */
|
2017-11-07 14:04:07 -05:00
|
|
|
.separator_style = "dash",
|
2017-07-06 12:09:25 -04:00
|
|
|
/** Hide scrollbar */
|
2017-11-07 14:04:07 -05:00
|
|
|
.hide_scrollbar = FALSE,
|
|
|
|
.fullscreen = FALSE,
|
|
|
|
.fake_transparency = FALSE,
|
|
|
|
.dpi = -1,
|
|
|
|
.threads = 0,
|
|
|
|
.scroll_method = 0,
|
|
|
|
.scrollbar_width = 8,
|
|
|
|
.fake_background = "screenshot",
|
|
|
|
.window_format = "{w} {i}{c} {t}",
|
|
|
|
.click_to_exit = TRUE,
|
|
|
|
.show_match = TRUE,
|
|
|
|
.theme = NULL,
|
|
|
|
.color_normal = NULL,
|
|
|
|
.color_active = NULL,
|
|
|
|
.color_urgent = NULL,
|
|
|
|
.color_window = NULL,
|
|
|
|
.plugin_path = PLUGIN_PATH,
|
|
|
|
.max_history_size = 25,
|
2017-11-07 14:03:42 -05:00
|
|
|
.combi_hide_mode_prefix = FALSE,
|
2014-01-26 07:29:38 -05:00
|
|
|
};
|