rofi/config/config.c

157 lines
4.9 KiB
C
Raw Normal View History

/*
2014-03-01 16:27:52 +00:00
* rofi
*
* MIT/X11 License
2022-02-07 22:16:46 +00:00
* Copyright © 2013-2022 Qball Cow <qball@gmpclient.org>
*
* 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.
*
*/
#include "config.h"
2017-08-18 09:38:54 +00:00
#include "rofi-types.h"
2016-01-07 15:01:56 +00:00
#include "settings.h"
2022-02-07 22:16:46 +00:00
#include <glib.h>
#include <stdio.h>
#include <stdlib.h>
Settings config = {
2022-02-07 22:16:46 +00:00
/** List of enabled modi. */
/** -modi */
#ifdef WINDOW_MODE
2022-02-07 22:16:46 +00:00
.modi = "window,run,ssh",
#else
2022-02-07 22:16:46 +00:00
.modi = "run,ssh",
#endif
2014-11-25 07:27:08 +00:00
/** Font */
2022-02-07 22:16:46 +00:00
.menu_font = "mono 12",
2015-04-06 15:13:26 +00:00
/** Whether to load and show icons */
2022-02-07 22:16:46 +00:00
.show_icons = FALSE,
2014-11-25 07:27:08 +00:00
/** Terminal to use. (for ssh and open in terminal) */
2015-08-03 18:40:01 +00:00
.terminal_emulator = "rofi-sensible-terminal",
2022-02-07 22:16:46 +00:00
.ssh_client = "ssh",
2014-11-25 07:27:08 +00:00
/** Command when executing ssh. */
2022-02-07 22:16:46 +00:00
.ssh_command = "{terminal} -e {ssh-client} {host} [-p {port}]",
2014-11-25 07:27:08 +00:00
/** Command when running */
2022-02-07 22:16:46 +00:00
.run_command = "{cmd}",
2015-01-05 20:53:50 +00:00
/** Command used to list executable commands. empty -> internal */
2022-02-07 22:16:46 +00:00
.run_list_command = "",
2014-11-25 07:27:08 +00:00
/** Command executed when running application in terminal */
2022-02-07 22:16:46 +00:00
.run_shell_command = "{terminal} -e {cmd}",
/** Command executed on accep-entry-custom for window modus */
2022-02-07 22:16:46 +00:00
.window_command = "wmctrl -i -R {window}",
/** No default icon theme, we search Adwaita and gnome as fallback */
2022-02-07 22:16:46 +00:00
.icon_theme = NULL,
/**
2014-11-25 07:27:08 +00: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
*
*/
2022-02-07 22:16:46 +00:00
.location = WL_CENTER,
2014-11-25 07:27:08 +00:00
/** Y offset */
2022-02-07 22:16:46 +00:00
.y_offset = 0,
2014-11-25 07:27:08 +00:00
/** X offset */
2022-02-07 22:16:46 +00:00
.x_offset = 0,
/** Always show config.menu_lines lines, even if less lines are available */
2022-02-07 22:16:46 +00:00
.fixed_num_lines = TRUE,
2014-11-25 07:27:08 +00:00
/** Do not use history */
2022-02-07 22:16:46 +00:00
.disable_history = FALSE,
2018-12-30 23:35:00 +00:00
/** Programs ignored for history */
2022-02-07 22:16:46 +00:00
.ignored_prefixes = "",
/** Sort the displayed list */
2022-02-07 22:16:46 +00:00
.sort = FALSE,
/** Use levenshtein sorting when matching */
2022-02-07 22:16:46 +00:00
.sorting_method = "normal",
2015-01-12 13:13:46 +00:00
/** Case sensitivity of the search */
2022-02-07 22:16:46 +00:00
.case_sensitive = FALSE,
/** Cycle through in the element list */
2022-02-07 22:16:46 +00:00
.cycle = TRUE,
2014-11-25 07:27:08 +00:00
/** Height of an element in #chars */
2022-02-07 22:16:46 +00:00
.element_height = 1,
/** Sidebar mode, show the modi */
2022-02-07 22:16:46 +00:00
.sidebar_mode = FALSE,
2015-02-24 16:34:25 +00:00
/** auto select */
2022-02-07 22:16:46 +00:00
.auto_select = FALSE,
/** Parse /etc/hosts file in ssh view. */
2022-02-07 22:16:46 +00:00
.parse_hosts = FALSE,
/** Parse ~/.ssh/known_hosts file in ssh view. */
2022-02-07 22:16:46 +00:00
.parse_known_hosts = TRUE,
/** Modi to combine into one view. */
2022-02-07 22:16:46 +00:00
.combi_modi = "window,run",
.tokenize = TRUE,
.matching = "normal",
.matching_method = MM_NORMAL,
Follow Type=Link standard desktop entries with drun (#1168) * [DRun] Introduce data structure changes for Link desktop entries From the [freedesktop spec][1]: > This specification defines 3 types of desktop entries: > Application (type 1), Link (type 2) and Directory (type 3). To allow > the addition of new types in the future, implementations should > ignore desktop entries with an unknown type. This commit adds an enum to capture these types, and adds `type` to DRunModeEntry. [1]: https://specifications.freedesktop.org/desktop-entry-spec/desktop-entry-spec-latest.html part of #1166 * [DRun] Sanity check Link entries and capture the URL Note that we're introducing some logic that will differ depending on the Desktop entry type (Application or Link). The logic is: - if entry is Application type, - then Exec is required - and the value is saved in .exec - and drun_mode_result calls exec_cmd_entry - if entry is Link type, - then URL is required (but is not saved in the DRunModeEntry) - and drun_mode_result calls new function launch_link_entry part of #1166 * [DRun] Launch desktop links via xdg-open Note that this introduces a new dependency on xdg-open, which may not be installed. In that case, rofi will display an error dialog with something like: "Failed to execute child process xdg-open (No such file or directory)" which hopefully is explanatory enough for folks. part of #1166 * Make drun options comments consistent and add a bit of whitespace * [DRun] new config option drun-url-launcher for opening links In previous commit, this was a hard-coded string. part of #1166
2020-08-26 19:10:04 +00:00
/** Desktop entries to match in drun */
2022-02-07 22:16:46 +00:00
.drun_match_fields = "name,generic,exec,categories,keywords",
Follow Type=Link standard desktop entries with drun (#1168) * [DRun] Introduce data structure changes for Link desktop entries From the [freedesktop spec][1]: > This specification defines 3 types of desktop entries: > Application (type 1), Link (type 2) and Directory (type 3). To allow > the addition of new types in the future, implementations should > ignore desktop entries with an unknown type. This commit adds an enum to capture these types, and adds `type` to DRunModeEntry. [1]: https://specifications.freedesktop.org/desktop-entry-spec/desktop-entry-spec-latest.html part of #1166 * [DRun] Sanity check Link entries and capture the URL Note that we're introducing some logic that will differ depending on the Desktop entry type (Application or Link). The logic is: - if entry is Application type, - then Exec is required - and the value is saved in .exec - and drun_mode_result calls exec_cmd_entry - if entry is Link type, - then URL is required (but is not saved in the DRunModeEntry) - and drun_mode_result calls new function launch_link_entry part of #1166 * [DRun] Launch desktop links via xdg-open Note that this introduces a new dependency on xdg-open, which may not be installed. In that case, rofi will display an error dialog with something like: "Failed to execute child process xdg-open (No such file or directory)" which hopefully is explanatory enough for folks. part of #1166 * Make drun options comments consistent and add a bit of whitespace * [DRun] new config option drun-url-launcher for opening links In previous commit, this was a hard-coded string. part of #1166
2020-08-26 19:10:04 +00:00
/** Only show entries in this category */
2022-02-07 22:16:46 +00:00
.drun_categories = NULL,
/** Desktop entry show actions */
2022-02-07 22:16:46 +00:00
.drun_show_actions = FALSE,
Follow Type=Link standard desktop entries with drun (#1168) * [DRun] Introduce data structure changes for Link desktop entries From the [freedesktop spec][1]: > This specification defines 3 types of desktop entries: > Application (type 1), Link (type 2) and Directory (type 3). To allow > the addition of new types in the future, implementations should > ignore desktop entries with an unknown type. This commit adds an enum to capture these types, and adds `type` to DRunModeEntry. [1]: https://specifications.freedesktop.org/desktop-entry-spec/desktop-entry-spec-latest.html part of #1166 * [DRun] Sanity check Link entries and capture the URL Note that we're introducing some logic that will differ depending on the Desktop entry type (Application or Link). The logic is: - if entry is Application type, - then Exec is required - and the value is saved in .exec - and drun_mode_result calls exec_cmd_entry - if entry is Link type, - then URL is required (but is not saved in the DRunModeEntry) - and drun_mode_result calls new function launch_link_entry part of #1166 * [DRun] Launch desktop links via xdg-open Note that this introduces a new dependency on xdg-open, which may not be installed. In that case, rofi will display an error dialog with something like: "Failed to execute child process xdg-open (No such file or directory)" which hopefully is explanatory enough for folks. part of #1166 * Make drun options comments consistent and add a bit of whitespace * [DRun] new config option drun-url-launcher for opening links In previous commit, this was a hard-coded string. part of #1166
2020-08-26 19:10:04 +00:00
/** Desktop format display */
2022-02-07 22:16:46 +00:00
.drun_display_format =
"{name} [<span weight='light' size='small'><i>({generic})</i></span>]",
Follow Type=Link standard desktop entries with drun (#1168) * [DRun] Introduce data structure changes for Link desktop entries From the [freedesktop spec][1]: > This specification defines 3 types of desktop entries: > Application (type 1), Link (type 2) and Directory (type 3). To allow > the addition of new types in the future, implementations should > ignore desktop entries with an unknown type. This commit adds an enum to capture these types, and adds `type` to DRunModeEntry. [1]: https://specifications.freedesktop.org/desktop-entry-spec/desktop-entry-spec-latest.html part of #1166 * [DRun] Sanity check Link entries and capture the URL Note that we're introducing some logic that will differ depending on the Desktop entry type (Application or Link). The logic is: - if entry is Application type, - then Exec is required - and the value is saved in .exec - and drun_mode_result calls exec_cmd_entry - if entry is Link type, - then URL is required (but is not saved in the DRunModeEntry) - and drun_mode_result calls new function launch_link_entry part of #1166 * [DRun] Launch desktop links via xdg-open Note that this introduces a new dependency on xdg-open, which may not be installed. In that case, rofi will display an error dialog with something like: "Failed to execute child process xdg-open (No such file or directory)" which hopefully is explanatory enough for folks. part of #1166 * Make drun options comments consistent and add a bit of whitespace * [DRun] new config option drun-url-launcher for opening links In previous commit, this was a hard-coded string. part of #1166
2020-08-26 19:10:04 +00:00
/** Desktop Link launch command */
2022-02-07 22:16:46 +00:00
.drun_url_launcher = "xdg-open",
Follow Type=Link standard desktop entries with drun (#1168) * [DRun] Introduce data structure changes for Link desktop entries From the [freedesktop spec][1]: > This specification defines 3 types of desktop entries: > Application (type 1), Link (type 2) and Directory (type 3). To allow > the addition of new types in the future, implementations should > ignore desktop entries with an unknown type. This commit adds an enum to capture these types, and adds `type` to DRunModeEntry. [1]: https://specifications.freedesktop.org/desktop-entry-spec/desktop-entry-spec-latest.html part of #1166 * [DRun] Sanity check Link entries and capture the URL Note that we're introducing some logic that will differ depending on the Desktop entry type (Application or Link). The logic is: - if entry is Application type, - then Exec is required - and the value is saved in .exec - and drun_mode_result calls exec_cmd_entry - if entry is Link type, - then URL is required (but is not saved in the DRunModeEntry) - and drun_mode_result calls new function launch_link_entry part of #1166 * [DRun] Launch desktop links via xdg-open Note that this introduces a new dependency on xdg-open, which may not be installed. In that case, rofi will display an error dialog with something like: "Failed to execute child process xdg-open (No such file or directory)" which hopefully is explanatory enough for folks. part of #1166 * Make drun options comments consistent and add a bit of whitespace * [DRun] new config option drun-url-launcher for opening links In previous commit, this was a hard-coded string. part of #1166
2020-08-26 19:10:04 +00:00
/** Window fields to match in window mode*/
2022-02-07 22:16:46 +00:00
.window_match_fields = "all",
2015-08-02 13:45:52 +00:00
/** Monitor */
2022-02-07 22:16:46 +00:00
.monitor = "-5",
2015-09-04 19:08:23 +00:00
/** Set filter */
2022-02-07 22:16:46 +00:00
.filter = NULL,
.dpi = -1,
.threads = 0,
.scroll_method = 0,
.window_format = "{w} {c} {t}",
.click_to_exit = TRUE,
.theme = NULL,
.plugin_path = PLUGIN_PATH,
.max_history_size = 25,
.combi_hide_mode_prefix = FALSE,
.combi_display_format = "{mode} {text}",
2022-02-07 22:16:46 +00:00
.matching_negate_char = '-',
2022-02-07 22:16:46 +00:00
.cache_dir = NULL,
.window_thumbnail = FALSE,
Follow Type=Link standard desktop entries with drun (#1168) * [DRun] Introduce data structure changes for Link desktop entries From the [freedesktop spec][1]: > This specification defines 3 types of desktop entries: > Application (type 1), Link (type 2) and Directory (type 3). To allow > the addition of new types in the future, implementations should > ignore desktop entries with an unknown type. This commit adds an enum to capture these types, and adds `type` to DRunModeEntry. [1]: https://specifications.freedesktop.org/desktop-entry-spec/desktop-entry-spec-latest.html part of #1166 * [DRun] Sanity check Link entries and capture the URL Note that we're introducing some logic that will differ depending on the Desktop entry type (Application or Link). The logic is: - if entry is Application type, - then Exec is required - and the value is saved in .exec - and drun_mode_result calls exec_cmd_entry - if entry is Link type, - then URL is required (but is not saved in the DRunModeEntry) - and drun_mode_result calls new function launch_link_entry part of #1166 * [DRun] Launch desktop links via xdg-open Note that this introduces a new dependency on xdg-open, which may not be installed. In that case, rofi will display an error dialog with something like: "Failed to execute child process xdg-open (No such file or directory)" which hopefully is explanatory enough for folks. part of #1166 * Make drun options comments consistent and add a bit of whitespace * [DRun] new config option drun-url-launcher for opening links In previous commit, this was a hard-coded string. part of #1166
2020-08-26 19:10:04 +00:00
/** drun cache */
2022-02-07 22:16:46 +00:00
.drun_use_desktop_cache = FALSE,
2020-05-12 08:34:04 +00:00
.drun_reload_desktop_cache = FALSE,
Follow Type=Link standard desktop entries with drun (#1168) * [DRun] Introduce data structure changes for Link desktop entries From the [freedesktop spec][1]: > This specification defines 3 types of desktop entries: > Application (type 1), Link (type 2) and Directory (type 3). To allow > the addition of new types in the future, implementations should > ignore desktop entries with an unknown type. This commit adds an enum to capture these types, and adds `type` to DRunModeEntry. [1]: https://specifications.freedesktop.org/desktop-entry-spec/desktop-entry-spec-latest.html part of #1166 * [DRun] Sanity check Link entries and capture the URL Note that we're introducing some logic that will differ depending on the Desktop entry type (Application or Link). The logic is: - if entry is Application type, - then Exec is required - and the value is saved in .exec - and drun_mode_result calls exec_cmd_entry - if entry is Link type, - then URL is required (but is not saved in the DRunModeEntry) - and drun_mode_result calls new function launch_link_entry part of #1166 * [DRun] Launch desktop links via xdg-open Note that this introduces a new dependency on xdg-open, which may not be installed. In that case, rofi will display an error dialog with something like: "Failed to execute child process xdg-open (No such file or directory)" which hopefully is explanatory enough for folks. part of #1166 * Make drun options comments consistent and add a bit of whitespace * [DRun] new config option drun-url-launcher for opening links In previous commit, this was a hard-coded string. part of #1166
2020-08-26 19:10:04 +00:00
2020-05-12 08:34:04 +00:00
/** Benchmarks */
2022-02-07 22:16:46 +00:00
.benchmark_ui = FALSE,
/** normalize match */
2022-02-07 22:16:46 +00:00
.normalize_match = FALSE,
/** steal focus */
2022-02-07 22:16:46 +00:00
.steal_focus = FALSE,
2021-06-08 18:21:28 +00:00
/** fallback icon */
2022-02-07 22:16:46 +00:00
.application_fallback_icon = NULL};