gitextract_5h_ew3wj/ ├── .editorconfig ├── .eslintrc.js ├── .gitattributes ├── .github/ │ └── workflows/ │ └── linting.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── Makefile ├── README.md ├── bin/ │ ├── tmux.conf │ └── tools.sh ├── crowdin.yml ├── package.json ├── pubkey.asc ├── shell-volume-mixer@derhofbauer.at/ │ ├── extension.js │ ├── lib/ │ │ ├── dbus/ │ │ │ └── dbus.js │ │ ├── main.js │ │ ├── menu/ │ │ │ ├── indicator.js │ │ │ └── menu.js │ │ ├── settings.js │ │ ├── utils/ │ │ │ ├── cards.js │ │ │ ├── eventBroker.js │ │ │ ├── eventHandlerDelegate.js │ │ │ ├── hotkeys.js │ │ │ ├── log.js │ │ │ ├── paHelper.js │ │ │ ├── process.js │ │ │ ├── string.js │ │ │ └── utils.js │ │ ├── volume/ │ │ │ ├── mixer.js │ │ │ └── profiles.js │ │ └── widget/ │ │ ├── floatingLabel.js │ │ ├── menuItem.js │ │ ├── panelButton.js │ │ ├── percentageLabel.js │ │ ├── slider.js │ │ └── volume.js │ ├── locale/ │ │ ├── cs/ │ │ │ └── LC_MESSAGES/ │ │ │ ├── gnome-shell-extensions-shell-volume-mixer.mo │ │ │ └── gnome-shell-extensions-shell-volume-mixer.po │ │ ├── de/ │ │ │ └── LC_MESSAGES/ │ │ │ ├── gnome-shell-extensions-shell-volume-mixer.mo │ │ │ └── gnome-shell-extensions-shell-volume-mixer.po │ │ ├── it/ │ │ │ └── LC_MESSAGES/ │ │ │ ├── gnome-shell-extensions-shell-volume-mixer.mo │ │ │ └── gnome-shell-extensions-shell-volume-mixer.po │ │ ├── nl/ │ │ │ └── LC_MESSAGES/ │ │ │ ├── gnome-shell-extensions-shell-volume-mixer.mo │ │ │ └── gnome-shell-extensions-shell-volume-mixer.po │ │ ├── pl/ │ │ │ └── LC_MESSAGES/ │ │ │ ├── gnome-shell-extensions-shell-volume-mixer.mo │ │ │ └── gnome-shell-extensions-shell-volume-mixer.po │ │ ├── pt_BR/ │ │ │ └── LC_MESSAGES/ │ │ │ ├── gnome-shell-extensions-shell-volume-mixer.mo │ │ │ └── gnome-shell-extensions-shell-volume-mixer.po │ │ ├── ru/ │ │ │ └── LC_MESSAGES/ │ │ │ ├── gnome-shell-extensions-shell-volume-mixer.mo │ │ │ └── gnome-shell-extensions-shell-volume-mixer.po │ │ └── translations.pot │ ├── metadata.json │ ├── pautils/ │ │ ├── lib/ │ │ │ ├── __init__.py │ │ │ ├── cards.py │ │ │ ├── libpulse.py │ │ │ ├── log.py │ │ │ ├── pulseaudio.py │ │ │ └── sinks.py │ │ └── query.py │ ├── prefs.js │ ├── prefs.ui │ ├── schemas/ │ │ ├── gschemas.compiled │ │ └── org.gnome.shell.extensions.shell-volume-mixer.gschema.xml │ └── stylesheet.css └── styles.scss