EhsanKia / keypirinha-plugins

A collection of Keypirinha plugins made by me
MIT License
37 stars 5 forks source link

Software Support #8

Closed bojjenclon closed 6 years ago

bojjenclon commented 6 years ago

Keypirinha doesn't seem to list any of the programs I have installed under the "SOFTWARE" heading in Steam. Is that supported by this plugin?

EhsanKia commented 6 years ago

https://github.com/EhsanKia/keypirinha-plugins/blob/master/keypirinha-steam/src/steam.py#L142

I filter non-games there. Mostly to get rid of DLCs. If you can, play with the code and messing around that line to see if you can get software to show up and launch.

bojjenclon commented 6 years ago

A simple change from

if not common or common[b'type'].lower() != b'game':

to

if not common or (common[b'type'].lower() != b'game' and common[b'type'].lower() != b'application'):

Seems to be working.

EhsanKia commented 6 years ago

Awesome, thanks for testing. I've updated the repo to add support to it.