Skip to content

Instantly share code, notes, and snippets.

@ryantm
Created July 2, 2019 19:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryantm/00095e12813a029706812fa24c4129a0 to your computer and use it in GitHub Desktop.
Save ryantm/00095e12813a029706812fa24c4129a0 to your computer and use it in GitHub Desktop.
/nix/store/dbzf1d9caf4alj38l918bb85ypb7pcpz-qutebrowser-1.6.3
├── bin
│   └── qutebrowser
├── lib
│   └── python3.7
│   └── site-packages
│   ├── qutebrowser
│   │   ├── api
│   │   │   ├── apitypes.py
│   │   │   ├── cmdutils.py
│   │   │   ├── config.py
│   │   │   ├── downloads.py
│   │   │   ├── hook.py
│   │   │   ├── __init__.py
│   │   │   ├── interceptor.py
│   │   │   ├── message.py
│   │   │   └── __pycache__
│   │   │   ├── apitypes.cpython-37.pyc
│   │   │   ├── cmdutils.cpython-37.pyc
│   │   │   ├── config.cpython-37.pyc
│   │   │   ├── downloads.cpython-37.pyc
│   │   │   ├── hook.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── interceptor.cpython-37.pyc
│   │   │   └── message.cpython-37.pyc
│   │   ├── app.py
│   │   ├── browser
│   │   │   ├── browsertab.py
│   │   │   ├── commands.py
│   │   │   ├── downloads.py
│   │   │   ├── downloadview.py
│   │   │   ├── greasemonkey.py
│   │   │   ├── hints.py
│   │   │   ├── history.py
│   │   │   ├── __init__.py
│   │   │   ├── inspector.py
│   │   │   ├── mouse.py
│   │   │   ├── navigate.py
│   │   │   ├── network
│   │   │   │   ├── __init__.py
│   │   │   │   ├── pac.py
│   │   │   │   ├── proxy.py
│   │   │   │   └── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── pac.cpython-37.pyc
│   │   │   │   └── proxy.cpython-37.pyc
│   │   │   ├── pdfjs.py
│   │   │   ├── __pycache__
│   │   │   │   ├── browsertab.cpython-37.pyc
│   │   │   │   ├── commands.cpython-37.pyc
│   │   │   │   ├── downloads.cpython-37.pyc
│   │   │   │   ├── downloadview.cpython-37.pyc
│   │   │   │   ├── greasemonkey.cpython-37.pyc
│   │   │   │   ├── hints.cpython-37.pyc
│   │   │   │   ├── history.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── inspector.cpython-37.pyc
│   │   │   │   ├── mouse.cpython-37.pyc
│   │   │   │   ├── navigate.cpython-37.pyc
│   │   │   │   ├── pdfjs.cpython-37.pyc
│   │   │   │   ├── qtnetworkdownloads.cpython-37.pyc
│   │   │   │   ├── qutescheme.cpython-37.pyc
│   │   │   │   ├── shared.cpython-37.pyc
│   │   │   │   ├── signalfilter.cpython-37.pyc
│   │   │   │   ├── urlmarks.cpython-37.pyc
│   │   │   │   └── webelem.cpython-37.pyc
│   │   │   ├── qtnetworkdownloads.py
│   │   │   ├── qutescheme.py
│   │   │   ├── shared.py
│   │   │   ├── signalfilter.py
│   │   │   ├── urlmarks.py
│   │   │   ├── webelem.py
│   │   │   ├── webengine
│   │   │   │   ├── certificateerror.py
│   │   │   │   ├── cookies.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── interceptor.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── certificateerror.cpython-37.pyc
│   │   │   │   │   ├── cookies.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── interceptor.cpython-37.pyc
│   │   │   │   │   ├── spell.cpython-37.pyc
│   │   │   │   │   ├── tabhistory.cpython-37.pyc
│   │   │   │   │   ├── webenginedownloads.cpython-37.pyc
│   │   │   │   │   ├── webengineelem.cpython-37.pyc
│   │   │   │   │   ├── webengineinspector.cpython-37.pyc
│   │   │   │   │   ├── webenginequtescheme.cpython-37.pyc
│   │   │   │   │   ├── webenginesettings.cpython-37.pyc
│   │   │   │   │   ├── webenginetab.cpython-37.pyc
│   │   │   │   │   └── webview.cpython-37.pyc
│   │   │   │   ├── spell.py
│   │   │   │   ├── tabhistory.py
│   │   │   │   ├── webenginedownloads.py
│   │   │   │   ├── webengineelem.py
│   │   │   │   ├── webengineinspector.py
│   │   │   │   ├── webenginequtescheme.py
│   │   │   │   ├── webenginesettings.py
│   │   │   │   ├── webenginetab.py
│   │   │   │   └── webview.py
│   │   │   └── webkit
│   │   │   ├── cache.py
│   │   │   ├── certificateerror.py
│   │   │   ├── cookies.py
│   │   │   ├── http.py
│   │   │   ├── __init__.py
│   │   │   ├── mhtml.py
│   │   │   ├── network
│   │   │   │   ├── filescheme.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── networkmanager.py
│   │   │   │   ├── networkreply.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── filescheme.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── networkmanager.cpython-37.pyc
│   │   │   │   │   ├── networkreply.cpython-37.pyc
│   │   │   │   │   └── webkitqutescheme.cpython-37.pyc
│   │   │   │   └── webkitqutescheme.py
│   │   │   ├── __pycache__
│   │   │   │   ├── cache.cpython-37.pyc
│   │   │   │   ├── certificateerror.cpython-37.pyc
│   │   │   │   ├── cookies.cpython-37.pyc
│   │   │   │   ├── http.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── mhtml.cpython-37.pyc
│   │   │   │   ├── rfc6266.cpython-37.pyc
│   │   │   │   ├── tabhistory.cpython-37.pyc
│   │   │   │   ├── webkitelem.cpython-37.pyc
│   │   │   │   ├── webkithistory.cpython-37.pyc
│   │   │   │   ├── webkitinspector.cpython-37.pyc
│   │   │   │   ├── webkitsettings.cpython-37.pyc
│   │   │   │   ├── webkittab.cpython-37.pyc
│   │   │   │   ├── webpage.cpython-37.pyc
│   │   │   │   └── webview.cpython-37.pyc
│   │   │   ├── rfc6266.py
│   │   │   ├── tabhistory.py
│   │   │   ├── webkitelem.py
│   │   │   ├── webkithistory.py
│   │   │   ├── webkitinspector.py
│   │   │   ├── webkitsettings.py
│   │   │   ├── webkittab.py
│   │   │   ├── webpage.py
│   │   │   └── webview.py
│   │   ├── commands
│   │   │   ├── argparser.py
│   │   │   ├── cmdexc.py
│   │   │   ├── command.py
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── argparser.cpython-37.pyc
│   │   │   │   ├── cmdexc.cpython-37.pyc
│   │   │   │   ├── command.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── runners.cpython-37.pyc
│   │   │   │   └── userscripts.cpython-37.pyc
│   │   │   ├── runners.py
│   │   │   └── userscripts.py
│   │   ├── completion
│   │   │   ├── completer.py
│   │   │   ├── completiondelegate.py
│   │   │   ├── completionwidget.py
│   │   │   ├── __init__.py
│   │   │   ├── models
│   │   │   │   ├── completionmodel.py
│   │   │   │   ├── configmodel.py
│   │   │   │   ├── histcategory.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── listcategory.py
│   │   │   │   ├── miscmodels.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── completionmodel.cpython-37.pyc
│   │   │   │   │   ├── configmodel.cpython-37.pyc
│   │   │   │   │   ├── histcategory.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── listcategory.cpython-37.pyc
│   │   │   │   │   ├── miscmodels.cpython-37.pyc
│   │   │   │   │   ├── urlmodel.cpython-37.pyc
│   │   │   │   │   └── util.cpython-37.pyc
│   │   │   │   ├── urlmodel.py
│   │   │   │   └── util.py
│   │   │   └── __pycache__
│   │   │   ├── completer.cpython-37.pyc
│   │   │   ├── completiondelegate.cpython-37.pyc
│   │   │   ├── completionwidget.cpython-37.pyc
│   │   │   └── __init__.cpython-37.pyc
│   │   ├── components
│   │   │   ├── adblock.py
│   │   │   ├── caretcommands.py
│   │   │   ├── __init__.py
│   │   │   ├── misccommands.py
│   │   │   ├── __pycache__
│   │   │   │   ├── adblock.cpython-37.pyc
│   │   │   │   ├── caretcommands.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── misccommands.cpython-37.pyc
│   │   │   │   ├── scrollcommands.cpython-37.pyc
│   │   │   │   └── zoomcommands.cpython-37.pyc
│   │   │   ├── scrollcommands.py
│   │   │   └── zoomcommands.py
│   │   ├── config
│   │   │   ├── configcache.py
│   │   │   ├── configcommands.py
│   │   │   ├── configdata.py
│   │   │   ├── configdata.yml
│   │   │   ├── configdiff.py
│   │   │   ├── configexc.py
│   │   │   ├── configfiles.py
│   │   │   ├── configinit.py
│   │   │   ├── config.py
│   │   │   ├── configtypes.py
│   │   │   ├── configutils.py
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── configcache.cpython-37.pyc
│   │   │   │   ├── configcommands.cpython-37.pyc
│   │   │   │   ├── config.cpython-37.pyc
│   │   │   │   ├── configdata.cpython-37.pyc
│   │   │   │   ├── configdiff.cpython-37.pyc
│   │   │   │   ├── configexc.cpython-37.pyc
│   │   │   │   ├── configfiles.cpython-37.pyc
│   │   │   │   ├── configinit.cpython-37.pyc
│   │   │   │   ├── configtypes.cpython-37.pyc
│   │   │   │   ├── configutils.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   └── websettings.cpython-37.pyc
│   │   │   └── websettings.py
│   │   ├── extensions
│   │   │   ├── __init__.py
│   │   │   ├── interceptors.py
│   │   │   ├── loader.py
│   │   │   └── __pycache__
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── interceptors.cpython-37.pyc
│   │   │   └── loader.cpython-37.pyc
│   │   ├── git-commit-id
│   │   ├── html
│   │   │   ├── back.html
│   │   │   ├── base.html
│   │   │   ├── bindings.html
│   │   │   ├── bookmarks.html
│   │   │   ├── dirbrowser.html
│   │   │   ├── doc
│   │   │   │   ├── changelog.html
│   │   │   │   ├── commands.html
│   │   │   │   ├── configuring.html
│   │   │   │   ├── contributing.html
│   │   │   │   ├── faq.html
│   │   │   │   ├── img
│   │   │   │   │   ├── cheatsheet-big.png
│   │   │   │   │   └── cheatsheet-small.png
│   │   │   │   ├── index.html
│   │   │   │   ├── quickstart.html
│   │   │   │   ├── settings.html
│   │   │   │   └── userscripts.html
│   │   │   ├── error.html
│   │   │   ├── history.html
│   │   │   ├── license.html
│   │   │   ├── log.html
│   │   │   ├── no_pdfjs.html
│   │   │   ├── pre.html
│   │   │   ├── settings.html
│   │   │   ├── styled.html
│   │   │   ├── tabs.html
│   │   │   ├── version.html
│   │   │   ├── warning-old-qt.html
│   │   │   └── warning-webkit.html
│   │   ├── img
│   │   │   ├── broken_qutebrowser_logo.png
│   │   │   ├── file.svg
│   │   │   └── folder.svg
│   │   ├── __init__.py
│   │   ├── javascript
│   │   │   ├── caret.js
│   │   │   ├── global_wrapper.js
│   │   │   ├── greasemonkey_wrapper.js
│   │   │   ├── history.js
│   │   │   ├── pac_utils.js
│   │   │   ├── position_caret.js
│   │   │   ├── print.js
│   │   │   ├── scroll.js
│   │   │   ├── stylesheet.js
│   │   │   └── webelem.js
│   │   ├── keyinput
│   │   │   ├── basekeyparser.py
│   │   │   ├── __init__.py
│   │   │   ├── keyutils.py
│   │   │   ├── macros.py
│   │   │   ├── modeman.py
│   │   │   ├── modeparsers.py
│   │   │   └── __pycache__
│   │   │   ├── basekeyparser.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── keyutils.cpython-37.pyc
│   │   │   ├── macros.cpython-37.pyc
│   │   │   ├── modeman.cpython-37.pyc
│   │   │   └── modeparsers.cpython-37.pyc
│   │   ├── __main__.py
│   │   ├── mainwindow
│   │   │   ├── __init__.py
│   │   │   ├── mainwindow.py
│   │   │   ├── messageview.py
│   │   │   ├── prompt.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── mainwindow.cpython-37.pyc
│   │   │   │   ├── messageview.cpython-37.pyc
│   │   │   │   ├── prompt.cpython-37.pyc
│   │   │   │   ├── tabbedbrowser.cpython-37.pyc
│   │   │   │   └── tabwidget.cpython-37.pyc
│   │   │   ├── statusbar
│   │   │   │   ├── backforward.py
│   │   │   │   ├── bar.py
│   │   │   │   ├── command.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── keystring.py
│   │   │   │   ├── percentage.py
│   │   │   │   ├── progress.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── backforward.cpython-37.pyc
│   │   │   │   │   ├── bar.cpython-37.pyc
│   │   │   │   │   ├── command.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── keystring.cpython-37.pyc
│   │   │   │   │   ├── percentage.cpython-37.pyc
│   │   │   │   │   ├── progress.cpython-37.pyc
│   │   │   │   │   ├── tabindex.cpython-37.pyc
│   │   │   │   │   ├── textbase.cpython-37.pyc
│   │   │   │   │   ├── text.cpython-37.pyc
│   │   │   │   │   └── url.cpython-37.pyc
│   │   │   │   ├── tabindex.py
│   │   │   │   ├── textbase.py
│   │   │   │   ├── text.py
│   │   │   │   └── url.py
│   │   │   ├── tabbedbrowser.py
│   │   │   └── tabwidget.py
│   │   ├── misc
│   │   │   ├── autoupdate.py
│   │   │   ├── backendproblem.py
│   │   │   ├── checkpyver.py
│   │   │   ├── cmdhistory.py
│   │   │   ├── consolewidget.py
│   │   │   ├── crashdialog.py
│   │   │   ├── crashsignal.py
│   │   │   ├── earlyinit.py
│   │   │   ├── editor.py
│   │   │   ├── guiprocess.py
│   │   │   ├── httpclient.py
│   │   │   ├── __init__.py
│   │   │   ├── ipc.py
│   │   │   ├── keyhintwidget.py
│   │   │   ├── lineparser.py
│   │   │   ├── miscwidgets.py
│   │   │   ├── msgbox.py
│   │   │   ├── objects.py
│   │   │   ├── pastebin.py
│   │   │   ├── __pycache__
│   │   │   │   ├── autoupdate.cpython-37.pyc
│   │   │   │   ├── backendproblem.cpython-37.pyc
│   │   │   │   ├── checkpyver.cpython-37.pyc
│   │   │   │   ├── cmdhistory.cpython-37.pyc
│   │   │   │   ├── consolewidget.cpython-37.pyc
│   │   │   │   ├── crashdialog.cpython-37.pyc
│   │   │   │   ├── crashsignal.cpython-37.pyc
│   │   │   │   ├── earlyinit.cpython-37.pyc
│   │   │   │   ├── editor.cpython-37.pyc
│   │   │   │   ├── guiprocess.cpython-37.pyc
│   │   │   │   ├── httpclient.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── ipc.cpython-37.pyc
│   │   │   │   ├── keyhintwidget.cpython-37.pyc
│   │   │   │   ├── lineparser.cpython-37.pyc
│   │   │   │   ├── miscwidgets.cpython-37.pyc
│   │   │   │   ├── msgbox.cpython-37.pyc
│   │   │   │   ├── objects.cpython-37.pyc
│   │   │   │   ├── pastebin.cpython-37.pyc
│   │   │   │   ├── readline.cpython-37.pyc
│   │   │   │   ├── savemanager.cpython-37.pyc
│   │   │   │   ├── sessions.cpython-37.pyc
│   │   │   │   ├── split.cpython-37.pyc
│   │   │   │   ├── sql.cpython-37.pyc
│   │   │   │   └── utilcmds.cpython-37.pyc
│   │   │   ├── readline.py
│   │   │   ├── savemanager.py
│   │   │   ├── sessions.py
│   │   │   ├── split.py
│   │   │   ├── sql.py
│   │   │   └── utilcmds.py
│   │   ├── __pycache__
│   │   │   ├── app.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── __main__.cpython-37.pyc
│   │   │   ├── qt.cpython-37.pyc
│   │   │   ├── qutebrowser.cpython-37.pyc
│   │   │   └── resources.cpython-37.pyc
│   │   ├── qt.py
│   │   ├── qutebrowser.py
│   │   ├── resources.py
│   │   └── utils
│   │   ├── debug.py
│   │   ├── docutils.py
│   │   ├── error.py
│   │   ├── __init__.py
│   │   ├── javascript.py
│   │   ├── jinja.py
│   │   ├── log.py
│   │   ├── message.py
│   │   ├── objreg.py
│   │   ├── __pycache__
│   │   │   ├── debug.cpython-37.pyc
│   │   │   ├── docutils.cpython-37.pyc
│   │   │   ├── error.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── javascript.cpython-37.pyc
│   │   │   ├── jinja.cpython-37.pyc
│   │   │   ├── log.cpython-37.pyc
│   │   │   ├── message.cpython-37.pyc
│   │   │   ├── objreg.cpython-37.pyc
│   │   │   ├── qtutils.cpython-37.pyc
│   │   │   ├── standarddir.cpython-37.pyc
│   │   │   ├── urlmatch.cpython-37.pyc
│   │   │   ├── urlutils.cpython-37.pyc
│   │   │   ├── usertypes.cpython-37.pyc
│   │   │   ├── utils.cpython-37.pyc
│   │   │   └── version.cpython-37.pyc
│   │   ├── qtutils.py
│   │   ├── standarddir.py
│   │   ├── testfile
│   │   ├── urlmatch.py
│   │   ├── urlutils.py
│   │   ├── usertypes.py
│   │   ├── utils.py
│   │   └── version.py
│   └── qutebrowser-1.6.3.dist-info
│   ├── entry_points.txt
│   ├── INSTALLER
│   ├── LICENSE
│   ├── METADATA
│   ├── RECORD
│   ├── top_level.txt
│   ├── WHEEL
│   └── zip-safe
├── nix-support
│   ├── propagated-build-inputs
│   └── propagated-user-env-packages
└── share
├── applications
│   └── qutebrowser.desktop
├── icons
│   └── hicolor
│   ├── 128x128
│   │   └── apps
│   │   └── qutebrowser.png
│   ├── 16x16
│   │   └── apps
│   │   └── qutebrowser.png
│   ├── 24x24
│   │   └── apps
│   │   └── qutebrowser.png
│   ├── 256x256
│   │   └── apps
│   │   └── qutebrowser.png
│   ├── 32x32
│   │   └── apps
│   │   └── qutebrowser.png
│   ├── 48x48
│   │   └── apps
│   │   └── qutebrowser.png
│   ├── 512x512
│   │   └── apps
│   │   └── qutebrowser.png
│   ├── 64x64
│   │   └── apps
│   │   └── qutebrowser.png
│   └── scalable
│   └── apps
│   └── qutebrowser.svg
├── man
│   └── man1
│   └── qutebrowser.1.gz
└── qutebrowser
├── scripts
│   ├── cycle-inputs.js
│   ├── dictcli.py
│   ├── hist_importer.py
│   ├── hostblock_blame.py
│   ├── importer.py
│   ├── __init__.cpython-37.pyc
│   ├── __init__.py
│   ├── keytester.py
│   ├── link_pyqt.py
│   ├── open_url_in_instance.sh
│   ├── setupcommon.cpython-37.pyc
│   ├── setupcommon.py
│   ├── testbrowser_webengine.py
│   ├── testbrowser_webkit.py
│   └── utils.py
└── userscripts
├── cast
├── dmenu_qutebrowser
├── format_json
├── getbib
├── open_download
├── openfeeds
├── password_fill
├── qutedmenu
├── qute-keepass
├── qute-lastpass
├── qute-pass
├── readability
├── README.md
├── ripbang
├── rss
├── taskadd
├── tor_identity
└── view_in_mpv
74 directories, 441 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment