2021-01-01 21:20:33 +00:00
|
|
|
#!/usr/bin/python3
|
|
|
|
# -*- coding: utf-8 -*-
|
2022-01-01 12:00:49 +00:00
|
|
|
# input-remapper - GUI for device specific keyboard mappings
|
2022-01-01 12:52:33 +00:00
|
|
|
# Copyright (C) 2022 sezanzeb <proxima@sezanzeb.de>
|
2021-01-01 21:20:33 +00:00
|
|
|
#
|
2022-01-01 12:00:49 +00:00
|
|
|
# This file is part of input-remapper.
|
2021-01-01 21:20:33 +00:00
|
|
|
#
|
2022-01-01 12:00:49 +00:00
|
|
|
# input-remapper is free software: you can redistribute it and/or modify
|
2021-01-01 21:20:33 +00:00
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
2022-01-01 12:00:49 +00:00
|
|
|
# input-remapper is distributed in the hope that it will be useful,
|
2021-01-01 21:20:33 +00:00
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
2022-01-01 12:00:49 +00:00
|
|
|
# along with input-remapper. If not, see <https://www.gnu.org/licenses/>.
|
2021-01-01 21:20:33 +00:00
|
|
|
|
|
|
|
|
2021-02-13 19:34:33 +00:00
|
|
|
"""Utility functions."""
|
2021-01-01 21:20:33 +00:00
|
|
|
|
2021-11-21 20:45:02 +00:00
|
|
|
import sys
|
2022-10-23 16:39:23 +00:00
|
|
|
from typing import Optional
|
2021-01-02 01:26:44 +00:00
|
|
|
|
2022-10-23 16:39:23 +00:00
|
|
|
import evdev
|
2021-11-21 20:45:02 +00:00
|
|
|
|
2022-10-23 16:39:23 +00:00
|
|
|
|
|
|
|
def is_service() -> bool:
|
2022-01-01 12:00:49 +00:00
|
|
|
return sys.argv[0].endswith("input-remapper-service")
|
2022-10-23 16:39:23 +00:00
|
|
|
|
|
|
|
|
|
|
|
def get_evdev_constant_name(type_: int, code: int, *_) -> Optional[str]:
|
|
|
|
"""Handy function to get the evdev constant name."""
|
|
|
|
# this is more readable than
|
|
|
|
# type_, code = event.type_and_code
|
|
|
|
# name = evdev.ecodes.bytype[type_][code]
|
|
|
|
name = evdev.ecodes.bytype.get(type_, {}).get(code)
|
|
|
|
if isinstance(name, list):
|
|
|
|
return name[0]
|
|
|
|
|
|
|
|
return name
|