Skip to content

Instantly share code, notes, and snippets.

@r-ryantm
Created September 24, 2021 03:24
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 r-ryantm/b9283ba4d597d52f61ade19d395668fe to your computer and use it in GitHub Desktop.
Save r-ryantm/b9283ba4d597d52f61ade19d395668fe to your computer and use it in GitHub Desktop.
/nix/store/l6a09gvnpidnmvwkjjszyy2dczhhnkx1-python3.9-qnotero-2.3.0
├── bin
│   └── qnotero
├── lib
│   └── python3.9
│   └── site-packages
│   ├── libqnotero
│   │   ├── config.py
│   │   ├── __init__.py
│   │   ├── listener.py
│   │   ├── preferences.py
│   │   ├── __pycache__
│   │   │   ├── config.cpython-39.pyc
│   │   │   ├── __init__.cpython-39.pyc
│   │   │   ├── listener.cpython-39.pyc
│   │   │   ├── preferences.cpython-39.pyc
│   │   │   ├── qnotero.cpython-39.pyc
│   │   │   ├── qnoteroException.cpython-39.pyc
│   │   │   ├── qnoteroItem.cpython-39.pyc
│   │   │   ├── qnoteroItemDelegate.cpython-39.pyc
│   │   │   ├── qnoteroQuery.cpython-39.pyc
│   │   │   ├── qnoteroResults.cpython-39.pyc
│   │   │   ├── sysTray.cpython-39.pyc
│   │   │   └── uiloader.cpython-39.pyc
│   │   ├── qnoteroException.py
│   │   ├── qnoteroItemDelegate.py
│   │   ├── qnoteroItem.py
│   │   ├── qnotero.py
│   │   ├── qnoteroQuery.py
│   │   ├── qnoteroResults.py
│   │   ├── qt
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-39.pyc
│   │   │   │   ├── QtCore.cpython-39.pyc
│   │   │   │   ├── QtGui.cpython-39.pyc
│   │   │   │   └── uic.cpython-39.pyc
│   │   │   ├── QtCore.py
│   │   │   ├── QtGui.py
│   │   │   └── uic.py
│   │   ├── sysTray.py
│   │   ├── _themes
│   │   │   ├── dark.py
│   │   │   ├── __init__.py
│   │   │   ├── light.py
│   │   │   └── __pycache__
│   │   │   ├── dark.cpython-39.pyc
│   │   │   ├── __init__.cpython-39.pyc
│   │   │   └── light.cpython-39.pyc
│   │   ├── ui
│   │   │   ├── preferences.ui
│   │   │   └── qnotero.ui
│   │   └── uiloader.py
│   ├── libzotero
│   │   ├── __init__.py
│   │   ├── libzotero.py
│   │   ├── _noteProvider
│   │   │   ├── gnoteProvider.py
│   │   │   ├── __init__.py
│   │   │   └── __pycache__
│   │   │   ├── gnoteProvider.cpython-39.pyc
│   │   │   └── __init__.cpython-39.pyc
│   │   ├── __pycache__
│   │   │   ├── __init__.cpython-39.pyc
│   │   │   ├── libzotero.cpython-39.pyc
│   │   │   └── zotero_item.cpython-39.pyc
│   │   └── zotero_item.py
│   └── qnotero-2.3.0.dist-info
│   ├── COPYING
│   ├── direct_url.json
│   ├── INSTALLER
│   ├── METADATA
│   ├── RECORD
│   ├── REQUESTED
│   ├── top_level.txt
│   └── WHEEL
├── nix-support
│   └── propagated-build-inputs
└── usr
└── share
├── applications
│   └── qnotero.desktop
└── qnotero
├── COPYING
└── resources
├── dark
│   ├── close.png
│   ├── nopdf.png
│   ├── pdf.png
│   ├── preferences.png
│   ├── qnotero.png
│   ├── search.png
│   └── show.png
└── light
├── close.png
├── nopdf.png
├── pdf.png
├── preferences.png
├── qnotero.png
├── search.png
└── show.png
24 directories, 76 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment