Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 12 additions & 8 deletions src/ctrlm_utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1324,10 +1324,10 @@ static const map<uint16_t, tuple<const char*, const char*>> ctrlm_linux_key_name
{KEY_BATTERY, {"Battery Low", "Battery Low"}},
{KEY_F16, {"Plus", "Plus"}},
{KEY_F13, {"Option", "Option"}},
{KEY_F4, {"Netflix App", "Netflix App"}}, // APP key for PLATCO
{KEY_INSERT, {"Peacock App", "Peakcock App"}}, // APP key for PLATCO
{KEY_END, {"Disney+ App", "Disney+ App"}}, // APP key for PLATCO
{KEY_DELETE, {"Prime Video App", "Prime Video App"}}, // APP key for PLATCO
{KEY_F4, {"Netflix App", "Netflix App"}},
Comment thread
egalla204 marked this conversation as resolved.
{KEY_INSERT, {"Peacock App", "Peacock App"}},
{KEY_END, {"Disney+ App", "Disney+ App"}},
{KEY_DELETE, {"Prime Video App", "Prime Video App"}},
Comment thread
egalla204 marked this conversation as resolved.
{KEY_PAGEUP, {"Channel+", "Channel+"}},
{KEY_PAGEDOWN, {"Channel-", "Channel-"}},
{KEY_SCROLLUP, {"Page+", "Page+"}},
Expand All @@ -1342,9 +1342,9 @@ static const map<uint16_t, tuple<const char*, const char*>> ctrlm_linux_key_name
{KEY_F6, {"Provider", "Provider"}},
{KEY_KPDOT, {"App A", "App A"}}, // A key for RF4CE remotes (also asterisk key)
{KEY_F14, {"Quick Access", "Quick Access"}}, // B key for RF4CE remotes (C and D are not defined yet)
{KEY_KPRIGHTPAREN, {"App 1", "App 1"}}, // APP key for LLAMA
{KEY_KPLEFTPAREN, {"App 2", "App 2"}}, // APP key for LLAMA
{KEY_KPCOMMA, {"App 3", "App 3"}}, // APP key for LLAMA
{KEY_KPRIGHTPAREN, {"App 1", "App 1"}},
{KEY_KPLEFTPAREN, {"App 2", "App 2"}},
{KEY_KPCOMMA, {"App 3", "App 3"}},
Comment thread
egalla204 marked this conversation as resolved.
{KEY_CONNECT, {"US BLE Pairing", "US BLE Pairing"}},
{KEY_BLUETOOTH, {"EU BLE Pairing", "EU BLE Pairing"}},
{KEY_VOLUMEDOWN, {"Vol Down", "Vol Down"}},
Expand All @@ -1361,7 +1361,11 @@ static const map<uint16_t, tuple<const char*, const char*>> ctrlm_linux_key_name
{KEY_PLAYPAUSE, {"Play/Pause", "Play/Pause"}},
{KEY_CONFIG, {"Config", "Config"}},
{KEY_POWER, {"Power", "Power"}},
{KEY_MUTE, {"Mute", "Mute"}}
{KEY_MUTE, {"Mute", "Mute"}},
{KEY_FN_F9, {"Sports", "Sports"}},
{KEY_BOOKMARKS, {"Playlist/Library", "Playlist/Library"}},
{KEY_TV, {"Live TV", "Live TV"}},
{KEY_FN_F8, {"Best Of", "Best Of"}}
};


Expand Down
Loading