Skip to content

Instantly share code, notes, and snippets.

@r-ryantm
Created May 25, 2020 03:43
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/c182242ef2a28841f94d5ea4484b0bf2 to your computer and use it in GitHub Desktop.
Save r-ryantm/c182242ef2a28841f94d5ea4484b0bf2 to your computer and use it in GitHub Desktop.
/nix/store/v3w7wr08iplkr7p77x5paavjjmci8552-solaar-1.0.2
├── bin
│   ├── solaar
│   └── solaar-cli
├── etc
│   └── udev
│   └── rules.d
│   └── 42-logitech-unify-permissions.rules
├── lib
│   └── python3.7
│   └── site-packages
│   ├── etc
│   │   ├── udev
│   │   │   └── rules.d
│   │   │   └── 42-logitech-unify-permissions.rules
│   │   └── xdg
│   │   └── autostart
│   │   └── solaar.desktop
│   ├── hidapi
│   │   ├── hidconsole.py
│   │   ├── __init__.py
│   │   ├── __pycache__
│   │   │   ├── hidconsole.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   └── udev.cpython-37.pyc
│   │   └── udev.py
│   ├── logitech_receiver
│   │   ├── base.py
│   │   ├── base_usb.py
│   │   ├── common.py
│   │   ├── descriptors.py
│   │   ├── hidpp10.py
│   │   ├── hidpp20.py
│   │   ├── i18n.py
│   │   ├── __init__.py
│   │   ├── listener.py
│   │   ├── notifications.py
│   │   ├── __pycache__
│   │   │   ├── base.cpython-37.pyc
│   │   │   ├── base_usb.cpython-37.pyc
│   │   │   ├── common.cpython-37.pyc
│   │   │   ├── descriptors.cpython-37.pyc
│   │   │   ├── hidpp10.cpython-37.pyc
│   │   │   ├── hidpp20.cpython-37.pyc
│   │   │   ├── i18n.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── listener.cpython-37.pyc
│   │   │   ├── notifications.cpython-37.pyc
│   │   │   ├── receiver.cpython-37.pyc
│   │   │   ├── settings.cpython-37.pyc
│   │   │   ├── settings_templates.cpython-37.pyc
│   │   │   ├── special_keys.cpython-37.pyc
│   │   │   └── status.cpython-37.pyc
│   │   ├── receiver.py
│   │   ├── settings.py
│   │   ├── settings_templates.py
│   │   ├── special_keys.py
│   │   └── status.py
│   ├── solaar
│   │   ├── cli
│   │   │   ├── config.py
│   │   │   ├── __init__.py
│   │   │   ├── pair.py
│   │   │   ├── probe.py
│   │   │   ├── __pycache__
│   │   │   │   ├── config.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── pair.cpython-37.pyc
│   │   │   │   ├── probe.cpython-37.pyc
│   │   │   │   ├── show.cpython-37.pyc
│   │   │   │   └── unpair.cpython-37.pyc
│   │   │   ├── show.py
│   │   │   └── unpair.py
│   │   ├── configuration.py
│   │   ├── gtk.py
│   │   ├── i18n.py
│   │   ├── __init__.py
│   │   ├── listener.py
│   │   ├── __pycache__
│   │   │   ├── configuration.cpython-37.pyc
│   │   │   ├── gtk.cpython-37.pyc
│   │   │   ├── i18n.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── listener.cpython-37.pyc
│   │   │   ├── tasks.cpython-37.pyc
│   │   │   └── upower.cpython-37.pyc
│   │   ├── tasks.py
│   │   ├── ui
│   │   │   ├── about.py
│   │   │   ├── action.py
│   │   │   ├── config_panel.py
│   │   │   ├── icons.py
│   │   │   ├── __init__.py
│   │   │   ├── notify.py
│   │   │   ├── pair_window.py
│   │   │   ├── __pycache__
│   │   │   │   ├── about.cpython-37.pyc
│   │   │   │   ├── action.cpython-37.pyc
│   │   │   │   ├── config_panel.cpython-37.pyc
│   │   │   │   ├── icons.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── notify.cpython-37.pyc
│   │   │   │   ├── pair_window.cpython-37.pyc
│   │   │   │   ├── tray.cpython-37.pyc
│   │   │   │   └── window.cpython-37.pyc
│   │   │   ├── tray.py
│   │   │   └── window.py
│   │   └── upower.py
│   └── solaar-1.0.2.dist-info
│   ├── COPYING
│   ├── INSTALLER
│   ├── METADATA
│   ├── RECORD
│   ├── top_level.txt
│   └── WHEEL
├── nix-support
│   └── propagated-build-inputs
└── share
├── applications
│   └── solaar.desktop
├── icons
│   └── hicolor
│   └── scalable
│   └── apps
│   └── solaar.svg
└── solaar
└── icons
├── light_000.png
├── light_020.png
├── light_040.png
├── light_060.png
├── light_080.png
├── light_100.png
├── light_unknown.png
├── solaar-attention.svg
├── solaar-init.svg
└── solaar.svg
32 directories, 104 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment