Add feature: quit button, customize lock keys display
[indicator-keyboard-led.git] / indicator-keyboard-led.py
CommitLineData
fc1c0791
AIL
1#!/usr/bin/env python3
2# -*- coding: utf-8 -*-
3#
4# indicator-keyboard-led - simulate keyboard lock keys LED
5# Copyright (c) 2016 Adrian I Lam <adrianiainlam@gmail.com>
6#
7# Permission is hereby granted, free of charge, to any person obtaining a
8# copy of this software and associated documentation files (the "Software"),
9# to deal in the Software without restriction, including without limitation
10# the rights to use, copy, modify, merge, publish, distribute, sublicense,
11# and/or sell copies of the Software, and to permit persons to whom the
12# Software is furnished to do so, subject to the following conditions:
13#
14# The above copyright notice and this permission notice shall be included in
15# all copies or substantial portions of the Software.
16#
17# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20# THE AUTHOR OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
22# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
23# IN THE SOFTWARE.
24#
25# I would like to thank Tobias Schlitt <toby@php.net>, who wrote
26# indicator-chars <https://github.com/tobyS/indicator-chars> which I used
27# as a reference when writing this software.
28
29import signal
30import subprocess
31from os import path
32import argparse
170ff396 33import sys
fc1c0791
AIL
34import gi
35gi.require_version('Gdk', '3.0')
36gi.require_version('Gtk', '3.0')
37gi.require_version('AppIndicator3', '0.1')
38from gi.repository import Gdk, Gtk, AppIndicator3
39
40class IndicatorKeyboardLED:
170ff396 41 locks = { 'N': 'Num', 'C': 'Caps', 'S': 'Scroll' }
fc1c0791 42
170ff396 43 def __init__(self, short=False, order='NCS'):
fc1c0791
AIL
44 self.indicator = AppIndicator3.Indicator.new(
45 'indicator-keyboard-led',
46 path.join(path.dirname(path.realpath(__file__)), 'icon.svg'),
47 AppIndicator3.IndicatorCategory.APPLICATION_STATUS)
48 self.indicator.set_status(AppIndicator3.IndicatorStatus.ACTIVE)
170ff396 49
fc1c0791 50 if short:
170ff396 51 self.locks = { 'N': 'N', 'C': 'C', 'S': 'S' }
fc1c0791
AIL
52
53 keymap = Gdk.Keymap.get_default()
170ff396
AIL
54 keymap.connect('state-changed', self.update_indicator, order)
55 self.update_indicator(keymap, order)
fc1c0791
AIL
56
57 menu = Gtk.Menu()
58 items = {
170ff396
AIL
59 'N': Gtk.MenuItem.new_with_label('Num Lock'),
60 'C': Gtk.MenuItem.new_with_label('Caps Lock'),
61 'S': Gtk.MenuItem.new_with_label('Scroll Lock')
fc1c0791 62 }
170ff396
AIL
63 items['N'].connect('activate', self.send_keypress, 'Num_Lock')
64 items['C'].connect('activate', self.send_keypress, 'Caps_Lock')
65 items['S'].connect('activate', self.send_keypress, 'Scroll_Lock')
66
67 for i in order:
68 menu.append(items[i])
fc1c0791 69
170ff396
AIL
70 quit_item = Gtk.MenuItem.new_with_label('Quit')
71 menu.append(Gtk.SeparatorMenuItem())
72 menu.append(quit_item)
73 quit_item.connect('activate', Gtk.main_quit)
fc1c0791
AIL
74
75 self.indicator.set_menu(menu)
76 menu.show_all()
77
170ff396
AIL
78 def update_indicator(self, keymap, order):
79 labels = []
80 for i in order:
81 if i == 'N':
82 state = keymap.get_num_lock_state()
83 elif i == 'C':
84 state = keymap.get_caps_lock_state()
85 elif i == 'S':
86 state = keymap.get_scroll_lock_state()
87 else:
88 raise ValueError('Invalid value in ORDER')
89 labels += [('⚫' if state else '⚪') + self.locks[i]]
90 self.indicator.set_label(' '.join(labels), '')
fc1c0791
AIL
91
92 def send_keypress(self, menuitem, keystroke):
93 subprocess.call(['xdotool', 'key', keystroke])
94
170ff396
AIL
95def validate_order(args):
96 args.order = args.order.upper()
97 for i in args.order:
98 if i not in ['N', 'C', 'S']:
99 sys.exit('Illegal character in ORDER. (Choices: [N, C, S])')
100 if len(args.order) != len(set(args.order)):
101 sys.exit('Repeated character in ORDER. '
102 'Please specify each lock at most once.')
103
fc1c0791
AIL
104if __name__ == '__main__':
105 signal.signal(signal.SIGINT, lambda signum, frame: Gtk.main_quit())
170ff396 106
fc1c0791 107 parser = argparse.ArgumentParser(
170ff396
AIL
108 description='indicator-keyboard-led - simulate keyboard lock keys LED',
109 formatter_class=argparse.ArgumentDefaultsHelpFormatter)
110 parser.add_argument('-s', '--short', action='store_true',
2b75a98c 111 help='use short label, i.e. ⚫N ⚫C ⚫S instead of ⚫Num ⚫Caps ⚫Scroll',
fc1c0791 112 required=False)
170ff396
AIL
113 parser.add_argument('-o', '--order', required=False, default='NCS',
114 help='specify the order of the locks displayed, e.g. CSN for '
115 '⚫Caps ⚫Scroll ⚫Num, or NC for ⚫Num ⚫Caps without Scroll lock')
fc1c0791 116 args = parser.parse_args()
170ff396
AIL
117 validate_order(args)
118
119 IndicatorKeyboardLED(short=args.short, order=args.order)
fc1c0791 120 Gtk.main()