gnome-shell.in: Drop --eval-file option
Not really used, and makes the script smaller. We could probably put a sample script on the wiki instead. https://bugzilla.gnome.org/show_bug.cgi?id=642084
This commit is contained in:
parent
9616b45518
commit
70fbfea5f5
@ -524,8 +524,6 @@ parser.add_option("", "--perf-output", metavar="OUTPUT_FILE",
|
|||||||
help="Output file to write performance report")
|
help="Output file to write performance report")
|
||||||
parser.add_option("", "--perf-upload", action="store_true",
|
parser.add_option("", "--perf-upload", action="store_true",
|
||||||
help="Upload performance report to server")
|
help="Upload performance report to server")
|
||||||
parser.add_option("", "--eval-file", metavar="EVAL_FILE",
|
|
||||||
help="Evaluate the contents of the given JavaScript file")
|
|
||||||
parser.add_option("", "--version", action="callback", callback=show_version,
|
parser.add_option("", "--version", action="callback", callback=show_version,
|
||||||
help="Display version and exit")
|
help="Display version and exit")
|
||||||
|
|
||||||
@ -544,18 +542,6 @@ if 'DISPLAY' not in os.environ:
|
|||||||
running_env = get_running_session_environs()
|
running_env = get_running_session_environs()
|
||||||
os.environ.update(running_env)
|
os.environ.update(running_env)
|
||||||
|
|
||||||
if options.eval_file:
|
|
||||||
f = open(options.eval_file)
|
|
||||||
contents = f.read()
|
|
||||||
f.close()
|
|
||||||
|
|
||||||
session = dbus.SessionBus()
|
|
||||||
shell = session.get_object('org.gnome.Shell', '/org/gnome/Shell')
|
|
||||||
shell = dbus.Interface(shell, 'org.gnome.Shell')
|
|
||||||
result = shell.Eval(contents)
|
|
||||||
print result
|
|
||||||
sys.exit(0)
|
|
||||||
|
|
||||||
if options.debug_command:
|
if options.debug_command:
|
||||||
options.debug = True
|
options.debug = True
|
||||||
elif options.debug:
|
elif options.debug:
|
||||||
|
Loading…
Reference in New Issue
Block a user