This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
[ | |
"1", | |
"sp", | |
"es", | |
"0", | |
"100", | |
"La 1", | |
"i_tve1.png", | |
"http://iphonelive.rtve.es/LA1_LV3_IPH/LA1_LV3_IPH.m3u8", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env gjs | |
// run : gjs dbus-list-current-services.js 2>/dev/null | sort -t, -k2,3r | column -s, -t | |
const Lang = imports.lang; | |
const Gio = imports.gi.Gio; | |
const Format = imports.format; | |
const cmdline = "dbus-send --%s --dest=%s --type=method_call --print-reply %s org.freedesktop.DBus.Introspectable.Introspect"; | |
const Subprocess = new Lang.Class({ | |
Name: "Subprocess", |