[gnome-shell] run-dialog: Use user preference when executing in terminal
- From: Florian Müllner <fmuellner src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-shell] run-dialog: Use user preference when executing in terminal
- Date: Wed, 1 Jun 2011 17:30:12 +0000 (UTC)
commit aa4dbee36236e09e1cf3e2aa73bfaff7d1f8f03f
Author: Florian Müllner <fmuellner gnome org>
Date: Wed Jun 1 13:39:11 2011 +0200
run-dialog: Use user preference when executing in terminal
Rather than hardcoding gnome-terminal, pick up the user's preferred
terminal from System Settings.
https://bugzilla.gnome.org/show_bug.cgi?id=648422
js/ui/runDialog.js | 12 ++++++++++--
1 files changed, 10 insertions(+), 2 deletions(-)
---
diff --git a/js/ui/runDialog.js b/js/ui/runDialog.js
index 192a93a..5152ecb 100644
--- a/js/ui/runDialog.js
+++ b/js/ui/runDialog.js
@@ -23,6 +23,10 @@ const HISTORY_KEY = 'command-history';
const LOCKDOWN_SCHEMA = 'org.gnome.desktop.lockdown';
const DISABLE_COMMAND_LINE_KEY = 'disable-command-line';
+const TERMINAL_SCHEMA = 'org.gnome.desktop.default-applications.terminal';
+const EXEC_KEY = 'exec';
+const EXEC_ARG_KEY = 'exec-arg';
+
const DIALOG_GROW_TIME = 0.1;
function CommandCompleter() {
@@ -169,6 +173,7 @@ __proto__: ModalDialog.ModalDialog.prototype,
ModalDialog.ModalDialog.prototype._init.call(this, { styleClass: 'run-dialog' });
this._lockdownSettings = new Gio.Settings({ schema: LOCKDOWN_SCHEMA });
+ this._terminalSettings = new Gio.Settings({ schema: TERMINAL_SCHEMA });
global.settings.connect('changed::development-tools', Lang.bind(this, function () {
this._enableInternalCommands = global.settings.get_boolean('development-tools');
}));
@@ -309,8 +314,11 @@ __proto__: ModalDialog.ModalDialog.prototype,
f();
} else if (input) {
try {
- if (inTerminal)
- command = 'gnome-terminal -x ' + input;
+ if (inTerminal) {
+ let exec = this._terminalSettings.get_string(EXEC_KEY);
+ let exec_arg = this._terminalSettings.get_string(EXEC_ARG_KEY);
+ command = exec + ' ' + exec_arg + ' ' + input;
+ }
Util.trySpawnCommandLine(command);
} catch (e) {
// Mmmh, that failed - see if @input matches an existing file
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]