Skip to content

Instantly share code, notes, and snippets.

View jbriales's full-sized avatar

Jesus Briales jbriales

  • University of Malaga, @MRPT
  • Malaga
View GitHub Profile
@jbriales
jbriales / gist:84125cfe63d71d16d5168c52313ee9d4
Created September 12, 2018 16:41
Error running script in ulauncher
2018-09-12 18:28:44,993 | DEBUG | ulauncher.ui.windows.UlauncherWindow: show_results() | render 9 results
2018-09-12 18:28:45,955 | DEBUG | ulauncher.ui.windows.UlauncherWindow: show_results() | render 9 results
2018-09-12 18:28:46,223 | DEBUG | ulauncher.ui.windows.UlauncherWindow: show_results() | render 5 results
2018-09-12 18:28:46,371 | DEBUG | ulauncher.ui.windows.UlauncherWindow: show_results() | render 4 results
2018-09-12 18:28:46,621 | DEBUG | ulauncher.ui.windows.UlauncherWindow: show_results() | render 1 results
2018-09-12 18:28:47,428 | DEBUG | ulauncher.ui.windows.UlauncherWindow: show_results() | render 1 results
2018-09-12 18:28:47,796 | DEBUG | ulauncher.ui.windows.UlauncherWindow: show_results() | render 1 results
2018-09-12 18:28:48,116 | DEBUG | ulauncher.ui.windows.UlauncherWindow: show_results() | render 1 results
2018-09-12 18:28:49,370 | DEBUG | ulauncher.ui.windows.UlauncherWindow: show_results() | render 0 results
module.js:549
/usr/lib/python2.7/site-packages/ulauncher/util/desktop/notification.py:1: PyGIWarning: Notify was imported without specifying a version first. Use gi.require_version('Notify', '0.7') before import to ensure that the right version gets loaded.
from gi.repository import Notify
/usr/lib/python2.7/site-packages/ulauncher/ui/windows/PreferencesUlauncherDialog.py:6: PyGIWarning: WebKit2 was imported without specifying a version first. Use gi.require_version('WebKit2', '4.0') before import to ensure that the right version gets loaded.
from gi.repository import Gio, Gtk, WebKit2, GLib
2019-06-06 14:10:00,611 | INFO | ulauncher: main() | Ulauncher version 4.3.1.r4
2019-06-06 14:10:00,611 | INFO | ulauncher: main() | GTK+ 3.24.1
2019-06-06 14:10:00,611 | INFO | ulauncher: main() | Is Wayland: False
2019-06-06 14:10:00,611 | INFO | ulauncher: main() | Wayland compatibility: off
2019-06-06 14:10:00,622 | DEBUG | ulauncher.ui.windows.Builder: __init__() | conside
@jbriales
jbriales / jq.bash
Created June 23, 2019 19:10
Toy jq key autocompletion
function jq() {
if [ -f $1 ]; then
FILE=$1; shift
# Move FILE at the end as expected by native jq
command jq "$@" "$FILE"
else
command jq "$@"
fi
}