├── .clang-format ├── .github └── LSI_Settings.png ├── .gitignore ├── .gitmodules ├── .tx └── config ├── LICENSE ├── README.md ├── TECHNICAL.md ├── TEST_LIST ├── data ├── lsi-settings.desktop.in ├── lsi-steam.desktop └── meson.build ├── meson.build ├── meson_options.txt ├── mkgobuildy.sh ├── mkrelease.sh ├── po ├── LINGUAS ├── POTFILES.in ├── ar.po ├── ca.po ├── ca_ES.po ├── cs.po ├── da.po ├── da_DK.po ├── de.po ├── de_CH.po ├── en_GB.po ├── eo.po ├── es.po ├── es_419.po ├── es_AR.po ├── es_ES.po ├── es_MX.po ├── es_PE.po ├── fi.po ├── fr_FR.po ├── he.po ├── hu.po ├── id_ID.po ├── it_IT.po ├── ko.po ├── ko_KR.po ├── linux-steam-integration.pot ├── lt.po ├── meson.build ├── nb_NO.po ├── ne_NP.po ├── nl_BE.po ├── nl_NL.po ├── pl.po ├── pl_PL.po ├── pt_BR.po ├── pt_PT.po ├── ro_RO.po ├── ru.po ├── sv_SE.po ├── tr.po ├── update_linguas.sh └── zh_CN.po ├── snapd ├── meson.build └── pulseaudio ├── src ├── common │ ├── common.h │ ├── files.c │ ├── files.h │ ├── log.c │ ├── log.h │ ├── meson.build │ ├── vdf.c │ └── vdf.h ├── frontend │ ├── main-window.c │ ├── main-window.h │ ├── main.c │ └── meson.build ├── intercept │ ├── main.c │ ├── meson.build │ └── sym.map ├── lsi │ ├── lsi.c │ ├── lsi.h │ └── meson.build ├── meson.build ├── redirect │ ├── main.c │ ├── meson.build │ ├── private.h │ ├── profile.c │ ├── profile.h │ ├── profiles │ │ ├── ark.c │ │ └── project_highrise.c │ ├── redirect.h │ ├── sym.map │ └── unity.c └── shim │ ├── lsi-exec.c │ ├── main.c │ ├── meson.build │ ├── shim.c │ └── shim.h └── update_format.sh /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/LSI_Settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/.github/LSI_Settings.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/.gitmodules -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/.tx/config -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/README.md -------------------------------------------------------------------------------- /TECHNICAL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/TECHNICAL.md -------------------------------------------------------------------------------- /TEST_LIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/TEST_LIST -------------------------------------------------------------------------------- /data/lsi-settings.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/data/lsi-settings.desktop.in -------------------------------------------------------------------------------- /data/lsi-steam.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/data/lsi-steam.desktop -------------------------------------------------------------------------------- /data/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/data/meson.build -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/meson.build -------------------------------------------------------------------------------- /meson_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/meson_options.txt -------------------------------------------------------------------------------- /mkgobuildy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/mkgobuildy.sh -------------------------------------------------------------------------------- /mkrelease.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/mkrelease.sh -------------------------------------------------------------------------------- /po/LINGUAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/po/LINGUAS -------------------------------------------------------------------------------- /po/POTFILES.in: -------------------------------------------------------------------------------- 1 | src/frontend/main-window.c 2 | -------------------------------------------------------------------------------- /po/ar.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/po/ar.po -------------------------------------------------------------------------------- /po/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/po/ca.po -------------------------------------------------------------------------------- /po/ca_ES.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/po/ca_ES.po -------------------------------------------------------------------------------- /po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/po/cs.po -------------------------------------------------------------------------------- /po/da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/po/da.po -------------------------------------------------------------------------------- /po/da_DK.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/po/da_DK.po -------------------------------------------------------------------------------- /po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/po/de.po -------------------------------------------------------------------------------- /po/de_CH.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/po/de_CH.po -------------------------------------------------------------------------------- /po/en_GB.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/po/en_GB.po -------------------------------------------------------------------------------- /po/eo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/po/eo.po -------------------------------------------------------------------------------- /po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/po/es.po -------------------------------------------------------------------------------- /po/es_419.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/po/es_419.po -------------------------------------------------------------------------------- /po/es_AR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/po/es_AR.po -------------------------------------------------------------------------------- /po/es_ES.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/po/es_ES.po -------------------------------------------------------------------------------- /po/es_MX.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/po/es_MX.po -------------------------------------------------------------------------------- /po/es_PE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/po/es_PE.po -------------------------------------------------------------------------------- /po/fi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/po/fi.po -------------------------------------------------------------------------------- /po/fr_FR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/po/fr_FR.po -------------------------------------------------------------------------------- /po/he.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/po/he.po -------------------------------------------------------------------------------- /po/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/po/hu.po -------------------------------------------------------------------------------- /po/id_ID.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/po/id_ID.po -------------------------------------------------------------------------------- /po/it_IT.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/po/it_IT.po -------------------------------------------------------------------------------- /po/ko.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/po/ko.po -------------------------------------------------------------------------------- /po/ko_KR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/po/ko_KR.po -------------------------------------------------------------------------------- /po/linux-steam-integration.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/po/linux-steam-integration.pot -------------------------------------------------------------------------------- /po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/po/lt.po -------------------------------------------------------------------------------- /po/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/po/meson.build -------------------------------------------------------------------------------- /po/nb_NO.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/po/nb_NO.po -------------------------------------------------------------------------------- /po/ne_NP.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/po/ne_NP.po -------------------------------------------------------------------------------- /po/nl_BE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/po/nl_BE.po -------------------------------------------------------------------------------- /po/nl_NL.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/po/nl_NL.po -------------------------------------------------------------------------------- /po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/po/pl.po -------------------------------------------------------------------------------- /po/pl_PL.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/po/pl_PL.po -------------------------------------------------------------------------------- /po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/po/pt_BR.po -------------------------------------------------------------------------------- /po/pt_PT.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/po/pt_PT.po -------------------------------------------------------------------------------- /po/ro_RO.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/po/ro_RO.po -------------------------------------------------------------------------------- /po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/po/ru.po -------------------------------------------------------------------------------- /po/sv_SE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/po/sv_SE.po -------------------------------------------------------------------------------- /po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/po/tr.po -------------------------------------------------------------------------------- /po/update_linguas.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/po/update_linguas.sh -------------------------------------------------------------------------------- /po/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/po/zh_CN.po -------------------------------------------------------------------------------- /snapd/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/snapd/meson.build -------------------------------------------------------------------------------- /snapd/pulseaudio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/snapd/pulseaudio -------------------------------------------------------------------------------- /src/common/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/src/common/common.h -------------------------------------------------------------------------------- /src/common/files.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/src/common/files.c -------------------------------------------------------------------------------- /src/common/files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/src/common/files.h -------------------------------------------------------------------------------- /src/common/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/src/common/log.c -------------------------------------------------------------------------------- /src/common/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/src/common/log.h -------------------------------------------------------------------------------- /src/common/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/src/common/meson.build -------------------------------------------------------------------------------- /src/common/vdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/src/common/vdf.c -------------------------------------------------------------------------------- /src/common/vdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/src/common/vdf.h -------------------------------------------------------------------------------- /src/frontend/main-window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/src/frontend/main-window.c -------------------------------------------------------------------------------- /src/frontend/main-window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/src/frontend/main-window.h -------------------------------------------------------------------------------- /src/frontend/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/src/frontend/main.c -------------------------------------------------------------------------------- /src/frontend/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/src/frontend/meson.build -------------------------------------------------------------------------------- /src/intercept/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/src/intercept/main.c -------------------------------------------------------------------------------- /src/intercept/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/src/intercept/meson.build -------------------------------------------------------------------------------- /src/intercept/sym.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/src/intercept/sym.map -------------------------------------------------------------------------------- /src/lsi/lsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/src/lsi/lsi.c -------------------------------------------------------------------------------- /src/lsi/lsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/src/lsi/lsi.h -------------------------------------------------------------------------------- /src/lsi/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/src/lsi/meson.build -------------------------------------------------------------------------------- /src/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/src/meson.build -------------------------------------------------------------------------------- /src/redirect/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/src/redirect/main.c -------------------------------------------------------------------------------- /src/redirect/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/src/redirect/meson.build -------------------------------------------------------------------------------- /src/redirect/private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/src/redirect/private.h -------------------------------------------------------------------------------- /src/redirect/profile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/src/redirect/profile.c -------------------------------------------------------------------------------- /src/redirect/profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/src/redirect/profile.h -------------------------------------------------------------------------------- /src/redirect/profiles/ark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/src/redirect/profiles/ark.c -------------------------------------------------------------------------------- /src/redirect/profiles/project_highrise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/src/redirect/profiles/project_highrise.c -------------------------------------------------------------------------------- /src/redirect/redirect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/src/redirect/redirect.h -------------------------------------------------------------------------------- /src/redirect/sym.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/src/redirect/sym.map -------------------------------------------------------------------------------- /src/redirect/unity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/src/redirect/unity.c -------------------------------------------------------------------------------- /src/shim/lsi-exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/src/shim/lsi-exec.c -------------------------------------------------------------------------------- /src/shim/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/src/shim/main.c -------------------------------------------------------------------------------- /src/shim/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/src/shim/meson.build -------------------------------------------------------------------------------- /src/shim/shim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/src/shim/shim.c -------------------------------------------------------------------------------- /src/shim/shim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/src/shim/shim.h -------------------------------------------------------------------------------- /update_format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/linux-steam-integration/HEAD/update_format.sh --------------------------------------------------------------------------------