Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aaronc81/stubappindicator
Stub out libappindicator on crashy things
https://github.com/aaronc81/stubappindicator
gtk gtk3
Last synced: 15 days ago
JSON representation
Stub out libappindicator on crashy things
- Host: GitHub
- URL: https://github.com/aaronc81/stubappindicator
- Owner: AaronC81
- License: lgpl-3.0
- Created: 2020-05-18T11:47:59.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-05-18T11:48:19.000Z (over 4 years ago)
- Last Synced: 2025-01-12T16:52:03.694Z (20 days ago)
- Topics: gtk, gtk3
- Language: C
- Size: 5.86 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# stubappindicator
This is a libappindicator stub designed to be loaded instead of the real
libappindicator. This means that...1. Apps which crash because of libappindicator, like Slack and Discord, shouldn't anymore...
2. ...but they also won't have a tray icon## Usage
First, build it (Makefiles are overrated):```
./build.sh
```Then run your crashing application with the generated `libappindicator.so`
in `LD_PRELOAD`:```
LD_PRELOAD=$(pwd)/libappindicator.so discord
```