2020-11-20 00:50:40 +00:00
|
|
|
#!/usr/bin/python3
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# key-mapper - GUI for device specific keyboard mappings
|
|
|
|
# Copyright (C) 2020 sezanzeb <proxima@hip70890b.de>
|
|
|
|
#
|
|
|
|
# This file is part of key-mapper.
|
|
|
|
#
|
|
|
|
# key-mapper is free software: you can redistribute it and/or modify
|
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
# key-mapper is distributed in the hope that it will be useful,
|
|
|
|
# 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
|
|
|
|
# along with key-mapper. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
|
|
|
|
"""Starts injecting keycodes based on the configuration."""
|
|
|
|
|
|
|
|
|
|
|
|
import sys
|
2020-12-05 22:40:02 +00:00
|
|
|
import os
|
2020-11-20 00:50:40 +00:00
|
|
|
import atexit
|
2020-12-05 22:40:02 +00:00
|
|
|
import grp
|
2020-11-20 00:50:40 +00:00
|
|
|
from argparse import ArgumentParser
|
|
|
|
|
2020-11-20 20:38:59 +00:00
|
|
|
import gi
|
|
|
|
gi.require_version('GLib', '2.0')
|
|
|
|
from gi.repository import GLib
|
2020-12-02 13:36:17 +00:00
|
|
|
from pydbus import SessionBus
|
2020-11-20 00:50:40 +00:00
|
|
|
|
2020-12-02 13:36:17 +00:00
|
|
|
from keymapper.logger import update_verbosity, log_info, \
|
2020-12-04 14:31:32 +00:00
|
|
|
add_filehandler, logger
|
2020-12-02 13:36:17 +00:00
|
|
|
from keymapper.daemon import Daemon, BUS_NAME
|
2020-12-05 18:38:38 +00:00
|
|
|
from keymapper.state import system_mapping
|
2020-12-05 22:40:02 +00:00
|
|
|
from keymapper.paths import USER
|
2020-11-25 22:36:03 +00:00
|
|
|
from keymapper.dev.permissions import can_read_devices
|
2020-11-20 00:50:40 +00:00
|
|
|
|
|
|
|
|
2020-12-05 22:40:02 +00:00
|
|
|
def run(cmd):
|
|
|
|
"""Run and log a command."""
|
|
|
|
logger.info('Running `%s`...', cmd)
|
|
|
|
code = os.system(cmd)
|
|
|
|
if code != 0:
|
|
|
|
logger.error('Failed. exit code %d', code)
|
|
|
|
|
|
|
|
|
|
|
|
def group_exists(name):
|
|
|
|
"""Check if a group with that name exists."""
|
|
|
|
try:
|
|
|
|
grp.getgrnam(name)
|
|
|
|
return True
|
|
|
|
except KeyError:
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
2020-11-20 00:50:40 +00:00
|
|
|
if __name__ == '__main__':
|
|
|
|
parser = ArgumentParser()
|
|
|
|
parser.add_argument(
|
|
|
|
'-d', '--debug', action='store_true', dest='debug',
|
|
|
|
help='Displays additional debug information',
|
|
|
|
default=False
|
|
|
|
)
|
2020-12-05 18:38:38 +00:00
|
|
|
parser.add_argument(
|
2020-12-05 22:49:02 +00:00
|
|
|
'-n', '--key-names', action='store_true', dest='key_names',
|
2020-12-05 18:38:38 +00:00
|
|
|
help='Print all available names for the mapping',
|
|
|
|
default=False
|
|
|
|
)
|
2020-12-05 22:40:02 +00:00
|
|
|
parser.add_argument(
|
|
|
|
'-s', '--setup-permissions', action='store_true', dest='setup',
|
|
|
|
help=(
|
2020-12-05 22:49:44 +00:00
|
|
|
'Requires sudo. Sets up all needed permissions to run '
|
2020-12-05 22:40:02 +00:00
|
|
|
'key-mapper as regular user'
|
|
|
|
),
|
|
|
|
default=False
|
|
|
|
)
|
2020-11-20 00:50:40 +00:00
|
|
|
|
|
|
|
options = parser.parse_args(sys.argv[1:])
|
2020-12-05 18:38:38 +00:00
|
|
|
|
2020-11-20 00:50:40 +00:00
|
|
|
update_verbosity(options.debug)
|
2020-11-25 20:55:04 +00:00
|
|
|
add_filehandler()
|
2020-11-20 00:50:40 +00:00
|
|
|
log_info()
|
|
|
|
|
2020-12-05 22:49:02 +00:00
|
|
|
if options.key_names:
|
2020-12-05 18:38:38 +00:00
|
|
|
print('\n'.join(system_mapping.list_names()))
|
|
|
|
sys.exit(0)
|
|
|
|
|
2020-12-05 22:40:02 +00:00
|
|
|
if options.setup:
|
|
|
|
if os.environ['USER'] != 'root' or USER == 'root':
|
|
|
|
# USER should contain the actual non-root user
|
|
|
|
logger.error('This only works using sudo')
|
|
|
|
sys.exit(1)
|
|
|
|
|
|
|
|
if group_exists('input'):
|
2020-12-06 17:42:56 +00:00
|
|
|
run(f'usermod -a -G input {USER}')
|
2020-12-05 22:40:02 +00:00
|
|
|
|
|
|
|
if group_exists('plugdev'):
|
2020-12-06 17:42:56 +00:00
|
|
|
run(f'usermod -a -G plugdev {USER}')
|
2020-12-05 22:40:02 +00:00
|
|
|
|
2020-12-06 17:42:56 +00:00
|
|
|
run(f'setfacl -m u:{USER}:rw- /dev/uinput')
|
2020-12-05 22:40:02 +00:00
|
|
|
|
|
|
|
logger.info(
|
|
|
|
'For these changes to take effect log out and in. '
|
|
|
|
'In some environments you may need to reboot.'
|
|
|
|
)
|
|
|
|
sys.exit(0)
|
|
|
|
|
2020-11-25 22:36:03 +00:00
|
|
|
can_read_devices()
|
2020-11-20 20:38:59 +00:00
|
|
|
|
2020-12-02 13:36:17 +00:00
|
|
|
bus = SessionBus()
|
|
|
|
loop = GLib.MainLoop()
|
2020-12-04 14:31:32 +00:00
|
|
|
daemon = Daemon(loop)
|
|
|
|
|
|
|
|
try:
|
|
|
|
bus.publish(BUS_NAME, daemon)
|
|
|
|
except RuntimeError:
|
|
|
|
logger.error('The service is already running')
|
|
|
|
sys.exit(1)
|
|
|
|
|
|
|
|
daemon.autoload()
|
2020-11-20 00:50:40 +00:00
|
|
|
|
2020-12-02 13:36:17 +00:00
|
|
|
atexit.register(lambda: daemon.stop(True))
|
2020-11-20 00:50:40 +00:00
|
|
|
|
2020-12-02 13:36:17 +00:00
|
|
|
loop.run()
|