summaryrefslogtreecommitdiffstats
path: root/include/rofi.h
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2014-09-03 13:07:26 +0200
committerDave Davenport <qball@gmpclient.org>2014-09-03 13:07:26 +0200
commit0462811800e69933a069ac48e471bc6016aae08f (patch)
treec57272b3a755152ffc0df12c767cc38e3707c5b9 /include/rofi.h
parent5f33d506b9e7ef4c78d33d78044f092fb0dfb201 (diff)
Add flexible configuration for launching
* You can now specify links: {terminal} -e bash -e "{ssh-client} {host}" * Add test for this code.
Diffstat (limited to 'include/rofi.h')
-rw-r--r--include/rofi.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/include/rofi.h b/include/rofi.h
index dd8cd9cc..2dee8113 100644
--- a/include/rofi.h
+++ b/include/rofi.h
@@ -106,6 +106,13 @@ typedef struct _Settings
char * menu_bc;
// Behavior
char * terminal_emulator;
+ char * ssh_client;
+
+ // Command to execute when ssh session is selected.
+ char * ssh_command;
+ // Command for executing an application.
+ char * run_command;
+ char * run_shell_command;
// Key bindings
char * window_key;
@@ -117,7 +124,6 @@ typedef struct _Settings
int y_offset;
int x_offset;
- unsigned int ssh_set_title;
unsigned int fixed_num_lines;
unsigned int disable_history;