├── .gitignore ├── README.md ├── desktop └── font │ ├── component.xml │ └── mscorefonts │ ├── actions.py │ └── pspec.xml ├── multimedia ├── graphics │ ├── component.xml │ └── pixeluvo │ │ ├── actions.py │ │ ├── files │ │ └── pixeluvo.desktop │ │ └── pspec.xml ├── music │ ├── bitwig-studio │ │ ├── actions.py │ │ ├── files │ │ │ ├── bitwig-studio.desktop │ │ │ └── bitwig-wrapper │ │ └── pspec.xml │ ├── component.xml │ ├── ocenaudio │ │ ├── actions.py │ │ └── pspec.xml │ ├── spotify │ │ ├── actions.py │ │ └── pspec.xml │ └── sunvox │ │ ├── actions.py │ │ └── pspec.xml └── video │ ├── component.xml │ ├── flash-player-npapi │ ├── actions.py │ └── pspec.xml │ ├── flash-player-ppapi │ ├── actions.py │ └── pspec.xml │ └── plexmediaserver │ ├── actions.py │ ├── files │ ├── plexmediaserver.conf │ ├── plexmediaserver.service │ └── plexmediaserver.tmpfile │ └── pspec.xml ├── network ├── download │ ├── component.xml │ ├── insync │ │ ├── actions.py │ │ └── pspec.xml │ ├── spideroak │ │ ├── actions.py │ │ └── pspec.xml │ └── synology-cloud-station-drive │ │ ├── actions.py │ │ └── pspec.xml ├── im │ ├── component.xml │ ├── franz │ │ ├── actions.py │ │ └── pspec.xml │ ├── google-talkplugin │ │ ├── actions.py │ │ └── pspec.xml │ ├── skype │ │ ├── actions.py │ │ └── pspec.xml │ ├── slack-desktop │ │ ├── actions.py │ │ └── pspec.xml │ └── viber │ │ ├── actions.py │ │ └── pspec.xml ├── util │ ├── anydesk │ │ ├── actions.py │ │ └── pspec.xml │ ├── component.xml │ └── teamviewer │ │ ├── actions.py │ │ └── pspec.xml └── web │ ├── browser │ ├── component.xml │ ├── google-chrome-beta │ │ ├── actions.py │ │ └── pspec.xml │ ├── google-chrome-stable │ │ ├── actions.py │ │ ├── files │ │ │ └── rpm2cpio.sh │ │ └── pspec.xml │ └── google-chrome-unstable │ │ ├── actions.py │ │ └── pspec.xml │ ├── component.xml │ └── google-earth │ ├── actions.py │ └── pspec.xml ├── office ├── component.xml ├── mendeleydesktop │ ├── actions.py │ └── pspec.xml ├── moneydance │ ├── actions.py │ └── pspec.xml ├── pomodoneapp │ ├── actions.py │ └── pspec.xml ├── scrivener │ ├── actions.py │ └── pspec.xml └── wps-office │ ├── actions.py │ └── pspec.xml ├── programming ├── android-studio │ ├── actions.py │ ├── files │ │ └── android-studio.desktop │ └── pspec.xml ├── clion │ ├── actions.py │ ├── files │ │ └── clion.desktop │ └── pspec.xml ├── component.xml ├── datagrip │ ├── actions.py │ ├── files │ │ └── datagrip.desktop │ └── pspec.xml ├── gitkraken │ ├── actions.py │ └── pspec.xml ├── idea │ ├── actions.py │ ├── files │ │ └── idea.desktop │ └── pspec.xml ├── phpstorm │ ├── actions.py │ ├── files │ │ └── phpstorm.desktop │ └── pspec.xml ├── pycharm-ce │ ├── actions.py │ ├── files │ │ └── pycharm-ce.desktop │ └── pspec.xml ├── pycharm │ ├── actions.py │ ├── files │ │ └── pycharm.desktop │ └── pspec.xml ├── rider │ ├── actions.py │ ├── files │ │ └── rider.desktop │ └── pspec.xml ├── rubymine │ ├── actions.py │ ├── files │ │ └── rubymine.desktop │ └── pspec.xml ├── sublime-text-3 │ ├── actions.py │ └── pspec.xml ├── tools │ ├── android-tools │ │ ├── actions.py │ │ └── pspec.xml │ └── component.xml ├── unity-editor │ ├── actions.py │ ├── files │ │ └── unity-editor.desktop │ └── pspec.xml └── webstorm │ ├── actions.py │ ├── files │ └── webstorm.desktop │ └── pspec.xml ├── scripts └── chromereleases.py └── security ├── component.xml └── enpass ├── actions.py └── pspec.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/README.md -------------------------------------------------------------------------------- /desktop/font/component.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/desktop/font/component.xml -------------------------------------------------------------------------------- /desktop/font/mscorefonts/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/desktop/font/mscorefonts/actions.py -------------------------------------------------------------------------------- /desktop/font/mscorefonts/pspec.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/desktop/font/mscorefonts/pspec.xml -------------------------------------------------------------------------------- /multimedia/graphics/component.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/multimedia/graphics/component.xml -------------------------------------------------------------------------------- /multimedia/graphics/pixeluvo/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/multimedia/graphics/pixeluvo/actions.py -------------------------------------------------------------------------------- /multimedia/graphics/pixeluvo/files/pixeluvo.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/multimedia/graphics/pixeluvo/files/pixeluvo.desktop -------------------------------------------------------------------------------- /multimedia/graphics/pixeluvo/pspec.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/multimedia/graphics/pixeluvo/pspec.xml -------------------------------------------------------------------------------- /multimedia/music/bitwig-studio/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/multimedia/music/bitwig-studio/actions.py -------------------------------------------------------------------------------- /multimedia/music/bitwig-studio/files/bitwig-studio.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/multimedia/music/bitwig-studio/files/bitwig-studio.desktop -------------------------------------------------------------------------------- /multimedia/music/bitwig-studio/files/bitwig-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/multimedia/music/bitwig-studio/files/bitwig-wrapper -------------------------------------------------------------------------------- /multimedia/music/bitwig-studio/pspec.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/multimedia/music/bitwig-studio/pspec.xml -------------------------------------------------------------------------------- /multimedia/music/component.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/multimedia/music/component.xml -------------------------------------------------------------------------------- /multimedia/music/ocenaudio/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/multimedia/music/ocenaudio/actions.py -------------------------------------------------------------------------------- /multimedia/music/ocenaudio/pspec.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/multimedia/music/ocenaudio/pspec.xml -------------------------------------------------------------------------------- /multimedia/music/spotify/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/multimedia/music/spotify/actions.py -------------------------------------------------------------------------------- /multimedia/music/spotify/pspec.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/multimedia/music/spotify/pspec.xml -------------------------------------------------------------------------------- /multimedia/music/sunvox/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/multimedia/music/sunvox/actions.py -------------------------------------------------------------------------------- /multimedia/music/sunvox/pspec.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/multimedia/music/sunvox/pspec.xml -------------------------------------------------------------------------------- /multimedia/video/component.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/multimedia/video/component.xml -------------------------------------------------------------------------------- /multimedia/video/flash-player-npapi/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/multimedia/video/flash-player-npapi/actions.py -------------------------------------------------------------------------------- /multimedia/video/flash-player-npapi/pspec.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/multimedia/video/flash-player-npapi/pspec.xml -------------------------------------------------------------------------------- /multimedia/video/flash-player-ppapi/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/multimedia/video/flash-player-ppapi/actions.py -------------------------------------------------------------------------------- /multimedia/video/flash-player-ppapi/pspec.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/multimedia/video/flash-player-ppapi/pspec.xml -------------------------------------------------------------------------------- /multimedia/video/plexmediaserver/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/multimedia/video/plexmediaserver/actions.py -------------------------------------------------------------------------------- /multimedia/video/plexmediaserver/files/plexmediaserver.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/multimedia/video/plexmediaserver/files/plexmediaserver.conf -------------------------------------------------------------------------------- /multimedia/video/plexmediaserver/files/plexmediaserver.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/multimedia/video/plexmediaserver/files/plexmediaserver.service -------------------------------------------------------------------------------- /multimedia/video/plexmediaserver/files/plexmediaserver.tmpfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/multimedia/video/plexmediaserver/files/plexmediaserver.tmpfile -------------------------------------------------------------------------------- /multimedia/video/plexmediaserver/pspec.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/multimedia/video/plexmediaserver/pspec.xml -------------------------------------------------------------------------------- /network/download/component.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/network/download/component.xml -------------------------------------------------------------------------------- /network/download/insync/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/network/download/insync/actions.py -------------------------------------------------------------------------------- /network/download/insync/pspec.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/network/download/insync/pspec.xml -------------------------------------------------------------------------------- /network/download/spideroak/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/network/download/spideroak/actions.py -------------------------------------------------------------------------------- /network/download/spideroak/pspec.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/network/download/spideroak/pspec.xml -------------------------------------------------------------------------------- /network/download/synology-cloud-station-drive/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/network/download/synology-cloud-station-drive/actions.py -------------------------------------------------------------------------------- /network/download/synology-cloud-station-drive/pspec.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/network/download/synology-cloud-station-drive/pspec.xml -------------------------------------------------------------------------------- /network/im/component.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/network/im/component.xml -------------------------------------------------------------------------------- /network/im/franz/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/network/im/franz/actions.py -------------------------------------------------------------------------------- /network/im/franz/pspec.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/network/im/franz/pspec.xml -------------------------------------------------------------------------------- /network/im/google-talkplugin/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/network/im/google-talkplugin/actions.py -------------------------------------------------------------------------------- /network/im/google-talkplugin/pspec.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/network/im/google-talkplugin/pspec.xml -------------------------------------------------------------------------------- /network/im/skype/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/network/im/skype/actions.py -------------------------------------------------------------------------------- /network/im/skype/pspec.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/network/im/skype/pspec.xml -------------------------------------------------------------------------------- /network/im/slack-desktop/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/network/im/slack-desktop/actions.py -------------------------------------------------------------------------------- /network/im/slack-desktop/pspec.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/network/im/slack-desktop/pspec.xml -------------------------------------------------------------------------------- /network/im/viber/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/network/im/viber/actions.py -------------------------------------------------------------------------------- /network/im/viber/pspec.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/network/im/viber/pspec.xml -------------------------------------------------------------------------------- /network/util/anydesk/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/network/util/anydesk/actions.py -------------------------------------------------------------------------------- /network/util/anydesk/pspec.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/network/util/anydesk/pspec.xml -------------------------------------------------------------------------------- /network/util/component.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/network/util/component.xml -------------------------------------------------------------------------------- /network/util/teamviewer/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/network/util/teamviewer/actions.py -------------------------------------------------------------------------------- /network/util/teamviewer/pspec.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/network/util/teamviewer/pspec.xml -------------------------------------------------------------------------------- /network/web/browser/component.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/network/web/browser/component.xml -------------------------------------------------------------------------------- /network/web/browser/google-chrome-beta/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/network/web/browser/google-chrome-beta/actions.py -------------------------------------------------------------------------------- /network/web/browser/google-chrome-beta/pspec.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/network/web/browser/google-chrome-beta/pspec.xml -------------------------------------------------------------------------------- /network/web/browser/google-chrome-stable/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/network/web/browser/google-chrome-stable/actions.py -------------------------------------------------------------------------------- /network/web/browser/google-chrome-stable/files/rpm2cpio.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/network/web/browser/google-chrome-stable/files/rpm2cpio.sh -------------------------------------------------------------------------------- /network/web/browser/google-chrome-stable/pspec.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/network/web/browser/google-chrome-stable/pspec.xml -------------------------------------------------------------------------------- /network/web/browser/google-chrome-unstable/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/network/web/browser/google-chrome-unstable/actions.py -------------------------------------------------------------------------------- /network/web/browser/google-chrome-unstable/pspec.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/network/web/browser/google-chrome-unstable/pspec.xml -------------------------------------------------------------------------------- /network/web/component.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/network/web/component.xml -------------------------------------------------------------------------------- /network/web/google-earth/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/network/web/google-earth/actions.py -------------------------------------------------------------------------------- /network/web/google-earth/pspec.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/network/web/google-earth/pspec.xml -------------------------------------------------------------------------------- /office/component.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/office/component.xml -------------------------------------------------------------------------------- /office/mendeleydesktop/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/office/mendeleydesktop/actions.py -------------------------------------------------------------------------------- /office/mendeleydesktop/pspec.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/office/mendeleydesktop/pspec.xml -------------------------------------------------------------------------------- /office/moneydance/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/office/moneydance/actions.py -------------------------------------------------------------------------------- /office/moneydance/pspec.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/office/moneydance/pspec.xml -------------------------------------------------------------------------------- /office/pomodoneapp/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/office/pomodoneapp/actions.py -------------------------------------------------------------------------------- /office/pomodoneapp/pspec.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/office/pomodoneapp/pspec.xml -------------------------------------------------------------------------------- /office/scrivener/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/office/scrivener/actions.py -------------------------------------------------------------------------------- /office/scrivener/pspec.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/office/scrivener/pspec.xml -------------------------------------------------------------------------------- /office/wps-office/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/office/wps-office/actions.py -------------------------------------------------------------------------------- /office/wps-office/pspec.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/office/wps-office/pspec.xml -------------------------------------------------------------------------------- /programming/android-studio/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/programming/android-studio/actions.py -------------------------------------------------------------------------------- /programming/android-studio/files/android-studio.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/programming/android-studio/files/android-studio.desktop -------------------------------------------------------------------------------- /programming/android-studio/pspec.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/programming/android-studio/pspec.xml -------------------------------------------------------------------------------- /programming/clion/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/programming/clion/actions.py -------------------------------------------------------------------------------- /programming/clion/files/clion.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/programming/clion/files/clion.desktop -------------------------------------------------------------------------------- /programming/clion/pspec.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/programming/clion/pspec.xml -------------------------------------------------------------------------------- /programming/component.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/programming/component.xml -------------------------------------------------------------------------------- /programming/datagrip/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/programming/datagrip/actions.py -------------------------------------------------------------------------------- /programming/datagrip/files/datagrip.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/programming/datagrip/files/datagrip.desktop -------------------------------------------------------------------------------- /programming/datagrip/pspec.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/programming/datagrip/pspec.xml -------------------------------------------------------------------------------- /programming/gitkraken/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/programming/gitkraken/actions.py -------------------------------------------------------------------------------- /programming/gitkraken/pspec.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/programming/gitkraken/pspec.xml -------------------------------------------------------------------------------- /programming/idea/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/programming/idea/actions.py -------------------------------------------------------------------------------- /programming/idea/files/idea.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/programming/idea/files/idea.desktop -------------------------------------------------------------------------------- /programming/idea/pspec.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/programming/idea/pspec.xml -------------------------------------------------------------------------------- /programming/phpstorm/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/programming/phpstorm/actions.py -------------------------------------------------------------------------------- /programming/phpstorm/files/phpstorm.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/programming/phpstorm/files/phpstorm.desktop -------------------------------------------------------------------------------- /programming/phpstorm/pspec.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/programming/phpstorm/pspec.xml -------------------------------------------------------------------------------- /programming/pycharm-ce/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/programming/pycharm-ce/actions.py -------------------------------------------------------------------------------- /programming/pycharm-ce/files/pycharm-ce.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/programming/pycharm-ce/files/pycharm-ce.desktop -------------------------------------------------------------------------------- /programming/pycharm-ce/pspec.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/programming/pycharm-ce/pspec.xml -------------------------------------------------------------------------------- /programming/pycharm/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/programming/pycharm/actions.py -------------------------------------------------------------------------------- /programming/pycharm/files/pycharm.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/programming/pycharm/files/pycharm.desktop -------------------------------------------------------------------------------- /programming/pycharm/pspec.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/programming/pycharm/pspec.xml -------------------------------------------------------------------------------- /programming/rider/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/programming/rider/actions.py -------------------------------------------------------------------------------- /programming/rider/files/rider.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/programming/rider/files/rider.desktop -------------------------------------------------------------------------------- /programming/rider/pspec.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/programming/rider/pspec.xml -------------------------------------------------------------------------------- /programming/rubymine/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/programming/rubymine/actions.py -------------------------------------------------------------------------------- /programming/rubymine/files/rubymine.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/programming/rubymine/files/rubymine.desktop -------------------------------------------------------------------------------- /programming/rubymine/pspec.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/programming/rubymine/pspec.xml -------------------------------------------------------------------------------- /programming/sublime-text-3/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/programming/sublime-text-3/actions.py -------------------------------------------------------------------------------- /programming/sublime-text-3/pspec.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/programming/sublime-text-3/pspec.xml -------------------------------------------------------------------------------- /programming/tools/android-tools/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/programming/tools/android-tools/actions.py -------------------------------------------------------------------------------- /programming/tools/android-tools/pspec.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/programming/tools/android-tools/pspec.xml -------------------------------------------------------------------------------- /programming/tools/component.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/programming/tools/component.xml -------------------------------------------------------------------------------- /programming/unity-editor/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/programming/unity-editor/actions.py -------------------------------------------------------------------------------- /programming/unity-editor/files/unity-editor.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/programming/unity-editor/files/unity-editor.desktop -------------------------------------------------------------------------------- /programming/unity-editor/pspec.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/programming/unity-editor/pspec.xml -------------------------------------------------------------------------------- /programming/webstorm/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/programming/webstorm/actions.py -------------------------------------------------------------------------------- /programming/webstorm/files/webstorm.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/programming/webstorm/files/webstorm.desktop -------------------------------------------------------------------------------- /programming/webstorm/pspec.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/programming/webstorm/pspec.xml -------------------------------------------------------------------------------- /scripts/chromereleases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/scripts/chromereleases.py -------------------------------------------------------------------------------- /security/component.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/security/component.xml -------------------------------------------------------------------------------- /security/enpass/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/security/enpass/actions.py -------------------------------------------------------------------------------- /security/enpass/pspec.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/3rd-party/HEAD/security/enpass/pspec.xml --------------------------------------------------------------------------------