├── README.md ├── configuration.yaml ├── custom_components ├── hacs │ ├── .translations │ │ ├── da.json │ │ ├── de.json │ │ ├── el.json │ │ ├── en.json │ │ ├── es.json │ │ ├── fr.json │ │ ├── hu.json │ │ ├── it.json │ │ ├── nb.json │ │ ├── nl.json │ │ ├── nn.json │ │ ├── pl.json │ │ ├── pt-BR.json │ │ ├── ro.json │ │ ├── ru.json │ │ ├── sl.json │ │ ├── sv.json │ │ └── zh-Hans.json │ ├── __init__.py │ ├── config_flow.py │ ├── configuration_schema.py │ ├── const.py │ ├── constrains.py │ ├── globals.py │ ├── hacsbase │ │ ├── __init__.py │ │ ├── backup.py │ │ ├── configuration.py │ │ ├── const.py │ │ ├── data.py │ │ ├── exceptions.py │ │ └── task_factory.py │ ├── handler │ │ ├── __init__.py │ │ ├── download.py │ │ └── template.py │ ├── helpers │ │ ├── action.py │ │ ├── download.py │ │ ├── filters.py │ │ ├── get_defaults.py │ │ ├── information.py │ │ ├── install.py │ │ ├── misc.py │ │ ├── network.py │ │ ├── register_repository.py │ │ ├── remaining_github_calls.py │ │ └── validate_repository.py │ ├── http.py │ ├── iconset.js │ ├── manifest.json │ ├── repositories │ │ ├── __init__.py │ │ ├── appdaemon.py │ │ ├── integration.py │ │ ├── manifest.py │ │ ├── netdaemon.py │ │ ├── plugin.py │ │ ├── python_script.py │ │ ├── removed.py │ │ ├── repository.py │ │ ├── repositorydata.py │ │ └── theme.py │ ├── sensor.py │ ├── services.yaml │ ├── setup.py │ ├── store.py │ ├── translations │ │ ├── da.json │ │ ├── de.json │ │ ├── el.json │ │ ├── en.json │ │ ├── es.json │ │ ├── fr.json │ │ ├── hu.json │ │ ├── it.json │ │ ├── nb.json │ │ ├── nl.json │ │ ├── nn.json │ │ ├── pl.json │ │ ├── pt-BR.json │ │ ├── ro.json │ │ ├── ru.json │ │ ├── sl.json │ │ ├── sv.json │ │ └── zh-Hans.json │ └── ws_api_handlers.py └── virgintivo │ ├── manifest.json │ └── media_player.py ├── home_assistant_lovelace_remote_channels.png ├── home_assistant_lovelace_remote_radio.png ├── home_assistant_lovelace_remote_shield.png ├── home_assistant_lovelace_remote_tivo.png ├── lovelace ├── mediaplayer.yaml ├── remote_channels.yaml ├── remote_navigation.yaml ├── remote_radio.yaml ├── remote_shield.yaml ├── remote_tivo.yaml └── test1.yaml ├── packages ├── androidtv.yaml ├── broadlink.yaml ├── frontend.yaml ├── helpers.yaml ├── remote_control_scripts.yaml ├── sonos.yaml ├── tivo.yaml └── webos.yaml ├── themes └── midnight │ └── midnight.yaml ├── tivo_channels.yaml ├── ui-lovelace.yaml └── www ├── community ├── button-card │ ├── button-card.js │ └── button-card.js.gz ├── decluttering-card │ ├── decluttering-card.js │ └── decluttering-card.js.gz ├── lovelace-card-tools │ ├── card-tools.js │ ├── card-tools.js.gz │ ├── webpack.config.js │ └── webpack.config.js.gz ├── lovelace-layout-card │ ├── layout-card.js │ ├── layout-card.js.gz │ ├── webpack.config.js │ └── webpack.config.js.gz └── lovelace-state-switch │ ├── state-switch.js │ ├── state-switch.js.gz │ ├── webpack.config.js │ └── webpack.config.js.gz └── lovelace └── remote ├── lg.png ├── radio_asa.png ├── radio_banditrock.png ├── radio_gmusic.png ├── radio_guldkanalen.png ├── radio_lugna_favoriter.png ├── radio_matte.png ├── radio_mixmegapol.png ├── radio_nrj.png ├── radio_rixfm.png ├── radio_rockklassiker.png ├── radio_star_70.png ├── radio_star_80.png ├── radio_tvinput.png ├── radio_vinyl.png ├── radio_ytmusic.png ├── shield_logo.png ├── tivo_comhem_logo.png ├── tivo_sonos_logo.png ├── tivo_tivobox.png ├── tv_cmore.png ├── tv_kanal-11.png ├── tv_kanal5.png ├── tv_kanal9.png ├── tv_kodi.png ├── tv_lg_logo.png ├── tv_mtv_live.png ├── tv_mtv_rock.png ├── tv_netflix.png ├── tv_sjuan.png ├── tv_svt1.png ├── tv_svt2.png ├── tv_svtplay.png ├── tv_tv10.png ├── tv_tv12.png ├── tv_tv3.png ├── tv_tv4.png ├── tv_tv4play.png ├── tv_tv6.png ├── tv_tv8.png ├── tv_twitch.png ├── tv_vh1.png └── tv_youtube2.png /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/README.md -------------------------------------------------------------------------------- /configuration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/configuration.yaml -------------------------------------------------------------------------------- /custom_components/hacs/.translations/da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/.translations/da.json -------------------------------------------------------------------------------- /custom_components/hacs/.translations/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/.translations/de.json -------------------------------------------------------------------------------- /custom_components/hacs/.translations/el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/.translations/el.json -------------------------------------------------------------------------------- /custom_components/hacs/.translations/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/.translations/en.json -------------------------------------------------------------------------------- /custom_components/hacs/.translations/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/.translations/es.json -------------------------------------------------------------------------------- /custom_components/hacs/.translations/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/.translations/fr.json -------------------------------------------------------------------------------- /custom_components/hacs/.translations/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/.translations/hu.json -------------------------------------------------------------------------------- /custom_components/hacs/.translations/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/.translations/it.json -------------------------------------------------------------------------------- /custom_components/hacs/.translations/nb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/.translations/nb.json -------------------------------------------------------------------------------- /custom_components/hacs/.translations/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/.translations/nl.json -------------------------------------------------------------------------------- /custom_components/hacs/.translations/nn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/.translations/nn.json -------------------------------------------------------------------------------- /custom_components/hacs/.translations/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/.translations/pl.json -------------------------------------------------------------------------------- /custom_components/hacs/.translations/pt-BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/.translations/pt-BR.json -------------------------------------------------------------------------------- /custom_components/hacs/.translations/ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/.translations/ro.json -------------------------------------------------------------------------------- /custom_components/hacs/.translations/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/.translations/ru.json -------------------------------------------------------------------------------- /custom_components/hacs/.translations/sl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/.translations/sl.json -------------------------------------------------------------------------------- /custom_components/hacs/.translations/sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/.translations/sv.json -------------------------------------------------------------------------------- /custom_components/hacs/.translations/zh-Hans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/.translations/zh-Hans.json -------------------------------------------------------------------------------- /custom_components/hacs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/__init__.py -------------------------------------------------------------------------------- /custom_components/hacs/config_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/config_flow.py -------------------------------------------------------------------------------- /custom_components/hacs/configuration_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/configuration_schema.py -------------------------------------------------------------------------------- /custom_components/hacs/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/const.py -------------------------------------------------------------------------------- /custom_components/hacs/constrains.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/constrains.py -------------------------------------------------------------------------------- /custom_components/hacs/globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/globals.py -------------------------------------------------------------------------------- /custom_components/hacs/hacsbase/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/hacsbase/__init__.py -------------------------------------------------------------------------------- /custom_components/hacs/hacsbase/backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/hacsbase/backup.py -------------------------------------------------------------------------------- /custom_components/hacs/hacsbase/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/hacsbase/configuration.py -------------------------------------------------------------------------------- /custom_components/hacs/hacsbase/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/hacsbase/const.py -------------------------------------------------------------------------------- /custom_components/hacs/hacsbase/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/hacsbase/data.py -------------------------------------------------------------------------------- /custom_components/hacs/hacsbase/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/hacsbase/exceptions.py -------------------------------------------------------------------------------- /custom_components/hacs/hacsbase/task_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/hacsbase/task_factory.py -------------------------------------------------------------------------------- /custom_components/hacs/handler/__init__.py: -------------------------------------------------------------------------------- 1 | """Initialize handlers.""" 2 | -------------------------------------------------------------------------------- /custom_components/hacs/handler/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/handler/download.py -------------------------------------------------------------------------------- /custom_components/hacs/handler/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/handler/template.py -------------------------------------------------------------------------------- /custom_components/hacs/helpers/action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/helpers/action.py -------------------------------------------------------------------------------- /custom_components/hacs/helpers/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/helpers/download.py -------------------------------------------------------------------------------- /custom_components/hacs/helpers/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/helpers/filters.py -------------------------------------------------------------------------------- /custom_components/hacs/helpers/get_defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/helpers/get_defaults.py -------------------------------------------------------------------------------- /custom_components/hacs/helpers/information.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/helpers/information.py -------------------------------------------------------------------------------- /custom_components/hacs/helpers/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/helpers/install.py -------------------------------------------------------------------------------- /custom_components/hacs/helpers/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/helpers/misc.py -------------------------------------------------------------------------------- /custom_components/hacs/helpers/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/helpers/network.py -------------------------------------------------------------------------------- /custom_components/hacs/helpers/register_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/helpers/register_repository.py -------------------------------------------------------------------------------- /custom_components/hacs/helpers/remaining_github_calls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/helpers/remaining_github_calls.py -------------------------------------------------------------------------------- /custom_components/hacs/helpers/validate_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/helpers/validate_repository.py -------------------------------------------------------------------------------- /custom_components/hacs/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/http.py -------------------------------------------------------------------------------- /custom_components/hacs/iconset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/iconset.js -------------------------------------------------------------------------------- /custom_components/hacs/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/manifest.json -------------------------------------------------------------------------------- /custom_components/hacs/repositories/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/repositories/__init__.py -------------------------------------------------------------------------------- /custom_components/hacs/repositories/appdaemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/repositories/appdaemon.py -------------------------------------------------------------------------------- /custom_components/hacs/repositories/integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/repositories/integration.py -------------------------------------------------------------------------------- /custom_components/hacs/repositories/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/repositories/manifest.py -------------------------------------------------------------------------------- /custom_components/hacs/repositories/netdaemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/repositories/netdaemon.py -------------------------------------------------------------------------------- /custom_components/hacs/repositories/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/repositories/plugin.py -------------------------------------------------------------------------------- /custom_components/hacs/repositories/python_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/repositories/python_script.py -------------------------------------------------------------------------------- /custom_components/hacs/repositories/removed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/repositories/removed.py -------------------------------------------------------------------------------- /custom_components/hacs/repositories/repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/repositories/repository.py -------------------------------------------------------------------------------- /custom_components/hacs/repositories/repositorydata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/repositories/repositorydata.py -------------------------------------------------------------------------------- /custom_components/hacs/repositories/theme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/repositories/theme.py -------------------------------------------------------------------------------- /custom_components/hacs/sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/sensor.py -------------------------------------------------------------------------------- /custom_components/hacs/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/services.yaml -------------------------------------------------------------------------------- /custom_components/hacs/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/setup.py -------------------------------------------------------------------------------- /custom_components/hacs/store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/store.py -------------------------------------------------------------------------------- /custom_components/hacs/translations/da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/translations/da.json -------------------------------------------------------------------------------- /custom_components/hacs/translations/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/translations/de.json -------------------------------------------------------------------------------- /custom_components/hacs/translations/el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/translations/el.json -------------------------------------------------------------------------------- /custom_components/hacs/translations/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/translations/en.json -------------------------------------------------------------------------------- /custom_components/hacs/translations/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/translations/es.json -------------------------------------------------------------------------------- /custom_components/hacs/translations/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/translations/fr.json -------------------------------------------------------------------------------- /custom_components/hacs/translations/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/translations/hu.json -------------------------------------------------------------------------------- /custom_components/hacs/translations/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/translations/it.json -------------------------------------------------------------------------------- /custom_components/hacs/translations/nb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/translations/nb.json -------------------------------------------------------------------------------- /custom_components/hacs/translations/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/translations/nl.json -------------------------------------------------------------------------------- /custom_components/hacs/translations/nn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/translations/nn.json -------------------------------------------------------------------------------- /custom_components/hacs/translations/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/translations/pl.json -------------------------------------------------------------------------------- /custom_components/hacs/translations/pt-BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/translations/pt-BR.json -------------------------------------------------------------------------------- /custom_components/hacs/translations/ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/translations/ro.json -------------------------------------------------------------------------------- /custom_components/hacs/translations/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/translations/ru.json -------------------------------------------------------------------------------- /custom_components/hacs/translations/sl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/translations/sl.json -------------------------------------------------------------------------------- /custom_components/hacs/translations/sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/translations/sv.json -------------------------------------------------------------------------------- /custom_components/hacs/translations/zh-Hans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/translations/zh-Hans.json -------------------------------------------------------------------------------- /custom_components/hacs/ws_api_handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/hacs/ws_api_handlers.py -------------------------------------------------------------------------------- /custom_components/virgintivo/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/virgintivo/manifest.json -------------------------------------------------------------------------------- /custom_components/virgintivo/media_player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/custom_components/virgintivo/media_player.py -------------------------------------------------------------------------------- /home_assistant_lovelace_remote_channels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/home_assistant_lovelace_remote_channels.png -------------------------------------------------------------------------------- /home_assistant_lovelace_remote_radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/home_assistant_lovelace_remote_radio.png -------------------------------------------------------------------------------- /home_assistant_lovelace_remote_shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/home_assistant_lovelace_remote_shield.png -------------------------------------------------------------------------------- /home_assistant_lovelace_remote_tivo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/home_assistant_lovelace_remote_tivo.png -------------------------------------------------------------------------------- /lovelace/mediaplayer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/lovelace/mediaplayer.yaml -------------------------------------------------------------------------------- /lovelace/remote_channels.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/lovelace/remote_channels.yaml -------------------------------------------------------------------------------- /lovelace/remote_navigation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/lovelace/remote_navigation.yaml -------------------------------------------------------------------------------- /lovelace/remote_radio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/lovelace/remote_radio.yaml -------------------------------------------------------------------------------- /lovelace/remote_shield.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/lovelace/remote_shield.yaml -------------------------------------------------------------------------------- /lovelace/remote_tivo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/lovelace/remote_tivo.yaml -------------------------------------------------------------------------------- /lovelace/test1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/lovelace/test1.yaml -------------------------------------------------------------------------------- /packages/androidtv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/packages/androidtv.yaml -------------------------------------------------------------------------------- /packages/broadlink.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/packages/broadlink.yaml -------------------------------------------------------------------------------- /packages/frontend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/packages/frontend.yaml -------------------------------------------------------------------------------- /packages/helpers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/packages/helpers.yaml -------------------------------------------------------------------------------- /packages/remote_control_scripts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/packages/remote_control_scripts.yaml -------------------------------------------------------------------------------- /packages/sonos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/packages/sonos.yaml -------------------------------------------------------------------------------- /packages/tivo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/packages/tivo.yaml -------------------------------------------------------------------------------- /packages/webos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/packages/webos.yaml -------------------------------------------------------------------------------- /themes/midnight/midnight.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/themes/midnight/midnight.yaml -------------------------------------------------------------------------------- /tivo_channels.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/tivo_channels.yaml -------------------------------------------------------------------------------- /ui-lovelace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/ui-lovelace.yaml -------------------------------------------------------------------------------- /www/community/button-card/button-card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/www/community/button-card/button-card.js -------------------------------------------------------------------------------- /www/community/button-card/button-card.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/www/community/button-card/button-card.js.gz -------------------------------------------------------------------------------- /www/community/decluttering-card/decluttering-card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/www/community/decluttering-card/decluttering-card.js -------------------------------------------------------------------------------- /www/community/decluttering-card/decluttering-card.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/www/community/decluttering-card/decluttering-card.js.gz -------------------------------------------------------------------------------- /www/community/lovelace-card-tools/card-tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/www/community/lovelace-card-tools/card-tools.js -------------------------------------------------------------------------------- /www/community/lovelace-card-tools/card-tools.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/www/community/lovelace-card-tools/card-tools.js.gz -------------------------------------------------------------------------------- /www/community/lovelace-card-tools/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/www/community/lovelace-card-tools/webpack.config.js -------------------------------------------------------------------------------- /www/community/lovelace-card-tools/webpack.config.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/www/community/lovelace-card-tools/webpack.config.js.gz -------------------------------------------------------------------------------- /www/community/lovelace-layout-card/layout-card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/www/community/lovelace-layout-card/layout-card.js -------------------------------------------------------------------------------- /www/community/lovelace-layout-card/layout-card.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/www/community/lovelace-layout-card/layout-card.js.gz -------------------------------------------------------------------------------- /www/community/lovelace-layout-card/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/www/community/lovelace-layout-card/webpack.config.js -------------------------------------------------------------------------------- /www/community/lovelace-layout-card/webpack.config.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/www/community/lovelace-layout-card/webpack.config.js.gz -------------------------------------------------------------------------------- /www/community/lovelace-state-switch/state-switch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/www/community/lovelace-state-switch/state-switch.js -------------------------------------------------------------------------------- /www/community/lovelace-state-switch/state-switch.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/www/community/lovelace-state-switch/state-switch.js.gz -------------------------------------------------------------------------------- /www/community/lovelace-state-switch/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/www/community/lovelace-state-switch/webpack.config.js -------------------------------------------------------------------------------- /www/community/lovelace-state-switch/webpack.config.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/www/community/lovelace-state-switch/webpack.config.js.gz -------------------------------------------------------------------------------- /www/lovelace/remote/lg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/www/lovelace/remote/lg.png -------------------------------------------------------------------------------- /www/lovelace/remote/radio_asa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/www/lovelace/remote/radio_asa.png -------------------------------------------------------------------------------- /www/lovelace/remote/radio_banditrock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/www/lovelace/remote/radio_banditrock.png -------------------------------------------------------------------------------- /www/lovelace/remote/radio_gmusic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/www/lovelace/remote/radio_gmusic.png -------------------------------------------------------------------------------- /www/lovelace/remote/radio_guldkanalen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/www/lovelace/remote/radio_guldkanalen.png -------------------------------------------------------------------------------- /www/lovelace/remote/radio_lugna_favoriter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/www/lovelace/remote/radio_lugna_favoriter.png -------------------------------------------------------------------------------- /www/lovelace/remote/radio_matte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/www/lovelace/remote/radio_matte.png -------------------------------------------------------------------------------- /www/lovelace/remote/radio_mixmegapol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/www/lovelace/remote/radio_mixmegapol.png -------------------------------------------------------------------------------- /www/lovelace/remote/radio_nrj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/www/lovelace/remote/radio_nrj.png -------------------------------------------------------------------------------- /www/lovelace/remote/radio_rixfm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/www/lovelace/remote/radio_rixfm.png -------------------------------------------------------------------------------- /www/lovelace/remote/radio_rockklassiker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/www/lovelace/remote/radio_rockklassiker.png -------------------------------------------------------------------------------- /www/lovelace/remote/radio_star_70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/www/lovelace/remote/radio_star_70.png -------------------------------------------------------------------------------- /www/lovelace/remote/radio_star_80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/www/lovelace/remote/radio_star_80.png -------------------------------------------------------------------------------- /www/lovelace/remote/radio_tvinput.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/www/lovelace/remote/radio_tvinput.png -------------------------------------------------------------------------------- /www/lovelace/remote/radio_vinyl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/www/lovelace/remote/radio_vinyl.png -------------------------------------------------------------------------------- /www/lovelace/remote/radio_ytmusic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/www/lovelace/remote/radio_ytmusic.png -------------------------------------------------------------------------------- /www/lovelace/remote/shield_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/www/lovelace/remote/shield_logo.png -------------------------------------------------------------------------------- /www/lovelace/remote/tivo_comhem_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/www/lovelace/remote/tivo_comhem_logo.png -------------------------------------------------------------------------------- /www/lovelace/remote/tivo_sonos_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/www/lovelace/remote/tivo_sonos_logo.png -------------------------------------------------------------------------------- /www/lovelace/remote/tivo_tivobox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/www/lovelace/remote/tivo_tivobox.png -------------------------------------------------------------------------------- /www/lovelace/remote/tv_cmore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/www/lovelace/remote/tv_cmore.png -------------------------------------------------------------------------------- /www/lovelace/remote/tv_kanal-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/www/lovelace/remote/tv_kanal-11.png -------------------------------------------------------------------------------- /www/lovelace/remote/tv_kanal5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/www/lovelace/remote/tv_kanal5.png -------------------------------------------------------------------------------- /www/lovelace/remote/tv_kanal9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/www/lovelace/remote/tv_kanal9.png -------------------------------------------------------------------------------- /www/lovelace/remote/tv_kodi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/www/lovelace/remote/tv_kodi.png -------------------------------------------------------------------------------- /www/lovelace/remote/tv_lg_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/www/lovelace/remote/tv_lg_logo.png -------------------------------------------------------------------------------- /www/lovelace/remote/tv_mtv_live.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/www/lovelace/remote/tv_mtv_live.png -------------------------------------------------------------------------------- /www/lovelace/remote/tv_mtv_rock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/www/lovelace/remote/tv_mtv_rock.png -------------------------------------------------------------------------------- /www/lovelace/remote/tv_netflix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/www/lovelace/remote/tv_netflix.png -------------------------------------------------------------------------------- /www/lovelace/remote/tv_sjuan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/www/lovelace/remote/tv_sjuan.png -------------------------------------------------------------------------------- /www/lovelace/remote/tv_svt1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/www/lovelace/remote/tv_svt1.png -------------------------------------------------------------------------------- /www/lovelace/remote/tv_svt2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/www/lovelace/remote/tv_svt2.png -------------------------------------------------------------------------------- /www/lovelace/remote/tv_svtplay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/www/lovelace/remote/tv_svtplay.png -------------------------------------------------------------------------------- /www/lovelace/remote/tv_tv10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/www/lovelace/remote/tv_tv10.png -------------------------------------------------------------------------------- /www/lovelace/remote/tv_tv12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/www/lovelace/remote/tv_tv12.png -------------------------------------------------------------------------------- /www/lovelace/remote/tv_tv3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/www/lovelace/remote/tv_tv3.png -------------------------------------------------------------------------------- /www/lovelace/remote/tv_tv4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/www/lovelace/remote/tv_tv4.png -------------------------------------------------------------------------------- /www/lovelace/remote/tv_tv4play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/www/lovelace/remote/tv_tv4play.png -------------------------------------------------------------------------------- /www/lovelace/remote/tv_tv6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/www/lovelace/remote/tv_tv6.png -------------------------------------------------------------------------------- /www/lovelace/remote/tv_tv8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/www/lovelace/remote/tv_tv8.png -------------------------------------------------------------------------------- /www/lovelace/remote/tv_twitch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/www/lovelace/remote/tv_twitch.png -------------------------------------------------------------------------------- /www/lovelace/remote/tv_vh1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/www/lovelace/remote/tv_vh1.png -------------------------------------------------------------------------------- /www/lovelace/remote/tv_youtube2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfrojd/hassio_lovelace_multiremote/HEAD/www/lovelace/remote/tv_youtube2.png --------------------------------------------------------------------------------