mirror of
https://github.com/rbreaves/kinto.git
synced 2025-08-05 18:38:26 +02:00
- Force initial setup, added assets
- Added assets for gui - Updated gui to resize better - gui sizing improvements - Updated UI more and changed terminal vte import - Fixed possible issue with VTE term implementation
This commit is contained in:
BIN
xkeysnail-config/gui/capslock_1200x720.png
Executable file
BIN
xkeysnail-config/gui/capslock_1200x720.png
Executable file
Binary file not shown.
After Width: | Height: | Size: 7.0 KiB |
BIN
xkeysnail-config/gui/keys_1200x720.png
Executable file
BIN
xkeysnail-config/gui/keys_1200x720.png
Executable file
Binary file not shown.
After Width: | Height: | Size: 8.4 KiB |
@@ -2,6 +2,7 @@
|
||||
|
||||
import gi,os,time,fcntl,argparse,re
|
||||
gi.require_version('Gtk', '3.0')
|
||||
gi.require_version('Vte', '2.91')
|
||||
from gi.repository import Gtk,Gdk,GdkPixbuf
|
||||
from gi.repository import Vte,GLib
|
||||
from subprocess import Popen,PIPE,CalledProcessError
|
||||
@@ -45,7 +46,7 @@ class MyWindow(Gtk.Window):
|
||||
label = Gtk.Label()
|
||||
label.set_alignment(1, 0)
|
||||
ostype = os.environ.get('XDG_CURRENT_DESKTOP')
|
||||
global openWin
|
||||
global openWin
|
||||
openWin = False
|
||||
|
||||
global child_pid
|
||||
@@ -80,9 +81,6 @@ class MyWindow(Gtk.Window):
|
||||
|
||||
self.initSetup()
|
||||
|
||||
global restartsvc
|
||||
restartsvc = False
|
||||
|
||||
homedir = os.path.expanduser("~")
|
||||
self.kconfig = homedir+"/.config/kinto/kinto.py"
|
||||
|
||||
@@ -111,6 +109,8 @@ class MyWindow(Gtk.Window):
|
||||
# parser.add_argument('-e', type=int, default=2, help="")
|
||||
parser.add_argument('-d', dest='debug', action='store_true', help="runs kinto in debug mode")
|
||||
parser.add_argument('--debug', dest='debug', action='store_true', help="runs kinto in debug mode")
|
||||
parser.add_argument('-s', dest='setup', action='store_true', help="first time setup")
|
||||
parser.add_argument('--setup', dest='setup', action='store_true', help="first time setup")
|
||||
|
||||
args = parser.parse_args()
|
||||
|
||||
@@ -125,15 +125,12 @@ class MyWindow(Gtk.Window):
|
||||
None,
|
||||
None,
|
||||
)
|
||||
|
||||
if args.debug:
|
||||
# print("run debug")
|
||||
self.command = "sudo systemctl stop xkeysnail && sudo xkeysnail ~/.config/kinto/kinto.py\n"
|
||||
else:
|
||||
self.command = "journalctl -f --unit=xkeysnail.service -b\n"
|
||||
|
||||
self.cmdbytes = str.encode(self.command)
|
||||
self.InputToTerm(self.cmdbytes)
|
||||
self.InputToTerm(self.command)
|
||||
|
||||
grid = Gtk.Grid()
|
||||
grid.modify_bg(Gtk.StateFlags.NORMAL, Gdk.color_parse("#2d303b"))
|
||||
@@ -316,6 +313,7 @@ class MyWindow(Gtk.Window):
|
||||
# menu.append(radiomenuitem2)
|
||||
|
||||
def setKinto(self):
|
||||
global restartsvc
|
||||
if self.options["kbtype"] == "mac":
|
||||
print("setup mac")
|
||||
elif self.options["kbtype"] == "win":
|
||||
@@ -351,11 +349,18 @@ class MyWindow(Gtk.Window):
|
||||
if self.options["autostart"]:
|
||||
print("Enable autostart, copy autostart file")
|
||||
|
||||
restartsvc = True
|
||||
|
||||
|
||||
def initSetup(self):
|
||||
global win,openWin
|
||||
global win,openWin,restartsvc
|
||||
|
||||
checkkb = "perl -ne 'print if /^\s+K.*# (Mac2|WinMac|Chromebook|IBM)/' ~/.config/kinto/kinto.py | wc -l"
|
||||
parser = argparse.ArgumentParser()
|
||||
parser.add_argument('-s', dest='setup', action='store_true', help="first time setup")
|
||||
parser.add_argument('--setup', dest='setup', action='store_true', help="first time setup")
|
||||
args = parser.parse_args()
|
||||
|
||||
checkkb = "perl -ne 'print if /^\s+K.*# (Mac|WinMac|Chromebook|IBM)/' ~/.config/kinto/kinto.py | wc -l"
|
||||
checkkb_result = int(self.queryConfig(checkkb))
|
||||
|
||||
if checkkb_result == 0:
|
||||
@@ -381,17 +386,18 @@ class MyWindow(Gtk.Window):
|
||||
pass
|
||||
|
||||
else:
|
||||
print('keyboard is set - nothing to do')
|
||||
|
||||
# **** EXIT ****
|
||||
return
|
||||
if not args.setup:
|
||||
openWin = True
|
||||
return
|
||||
|
||||
# Set kbtype automatically
|
||||
if self.options["kbtype"] != "ask":
|
||||
self.setKinto()
|
||||
win.show_all()
|
||||
else:
|
||||
openWin = True
|
||||
self.setKinto()
|
||||
# win.show_all()
|
||||
else:
|
||||
openWin = False
|
||||
restartsvc = False
|
||||
self.setupwin.set_keep_above(True);
|
||||
|
||||
path = os.environ['HOME']+'/.config/kinto/kinto-color.svg'
|
||||
@@ -586,8 +592,7 @@ class MyWindow(Gtk.Window):
|
||||
# self.InputToTerm(self.cmdbytes)
|
||||
# self.command2 = "send \003; echo 'hello'\n"
|
||||
command = "send \003 sudo systemctl stop xkeysnail && sudo xkeysnail ~/.config/kinto/kinto.py\n"
|
||||
cmdbytes = str.encode(command)
|
||||
self.InputToTerm(cmdbytes)
|
||||
self.InputToTerm(command)
|
||||
|
||||
def openSupport(self,button):
|
||||
Gtk.show_uri_on_window(None, "https://github.com/rbreaves/kinto#table-of-contents", Gtk.get_current_event_time())
|
||||
@@ -829,9 +834,10 @@ class MyWindow(Gtk.Window):
|
||||
|
||||
except CalledProcessError:
|
||||
Popen(['notify-send','Kinto: Error restarting Kinto after setting tweaks!','-i','budgie-desktop-symbolic'])
|
||||
|
||||
if openWin:
|
||||
# win.show_all()
|
||||
if openWin and self.get_title() == "Keyboard Assistant":
|
||||
openWin = False
|
||||
win.show_all()
|
||||
else:
|
||||
# openWin = False
|
||||
Gtk.main_quit()
|
||||
|
||||
@@ -955,8 +961,7 @@ class MyWindow(Gtk.Window):
|
||||
pkillxkey.wait()
|
||||
Popen(['sudo', 'systemctl','start','xkeysnail'])
|
||||
self.command = "send \003 journalctl -f --unit=xkeysnail.service -b\n"
|
||||
self.cmdbytes = str.encode(self.command)
|
||||
self.InputToTerm(self.cmdbytes)
|
||||
self.InputToTerm(self.command)
|
||||
except:
|
||||
Popen(['notify-send','Kinto: Errror restarting Kinto!','-i','budgie-desktop-symbolic'])
|
||||
|
||||
@@ -977,12 +982,10 @@ class MyWindow(Gtk.Window):
|
||||
self.menuitem_enable.set_active(True)
|
||||
self.menuitem_enable.signal_id = self.menuitem_enable.connect('activate',self.setEnable,False)
|
||||
self.command = "send \003 journalctl -f --unit=xkeysnail.service -b\n"
|
||||
self.cmdbytes = str.encode(self.command)
|
||||
self.InputToTerm(cmdbytes)
|
||||
self.InputToTerm(self.command)
|
||||
else:
|
||||
Popen(['sudo', 'systemctl','stop','xkeysnail'])
|
||||
self.command = "send \003 journalctl -f --unit=xkeysnail.service -b\n"
|
||||
self.cmdbytes = str.encode(self.command)
|
||||
self.menuitem_enable.disconnect(self.menuitem_enable.signal_id)
|
||||
self.menuitem_enable.set_active(False)
|
||||
self.menuitem_enable.signal_id = self.menuitem_enable.connect('activate',self.setEnable,True)
|
||||
@@ -1111,6 +1114,7 @@ class MyWindow(Gtk.Window):
|
||||
|
||||
def key_press_event(self, widget, event, page):
|
||||
# print("key detected")
|
||||
global openWin
|
||||
trigger = "None"
|
||||
keyname = Gdk.keyval_name(event.keyval)
|
||||
current = self.second_page
|
||||
@@ -1157,10 +1161,23 @@ class MyWindow(Gtk.Window):
|
||||
elif trigger == "Done":
|
||||
self.setKinto()
|
||||
self.setupwin.show_all()
|
||||
openWin = True
|
||||
|
||||
# self.hide()
|
||||
|
||||
def InputToTerm(self,cmd):
|
||||
terminal.feed_child_binary(cmd)
|
||||
# Not clearly known which VTE versions
|
||||
# require which fix
|
||||
try:
|
||||
query = str.encode(cmd)
|
||||
terminal.feed_child_binary(query)
|
||||
except:
|
||||
pass
|
||||
try:
|
||||
terminal.feed_child(cmd,len(cmd))
|
||||
except:
|
||||
pass
|
||||
|
||||
print(Vte.get_minor_version())
|
||||
|
||||
# def on_menu_auto(self, widget):
|
||||
@@ -1177,12 +1194,17 @@ class Main(Gtk.Box):
|
||||
super().__init__(spacing=10)
|
||||
self.__parent_window = parent_window
|
||||
|
||||
f = Gtk.Frame()
|
||||
# f = Gtk.Frame()
|
||||
# b = Gtk.Box(orientation=Gtk.Orientation.VERTICAL, spacing=6)
|
||||
# f.add(b)
|
||||
|
||||
label_start = Gtk.Label(" ")
|
||||
self.pack_start(label_start, True, True, 0)
|
||||
# label_start = Gtk.Label(" ")
|
||||
# label_start = Gtk.Label(" ")
|
||||
# image=Gtk.Image.new_from_icon_name("image-missing",Gtk.IconSize.DIALOG)
|
||||
# image.set_size_request(96,96)
|
||||
# # self.add(image)
|
||||
# # spacing = Gtk.
|
||||
# self.pack_start(image, True, True, 0)
|
||||
|
||||
# self.start_new_game()
|
||||
|
||||
@@ -1210,31 +1232,46 @@ class UninstallPage(Gtk.Box):
|
||||
super().__init__(spacing=10)
|
||||
self.__parent_window = parent_window
|
||||
|
||||
b = Gtk.Grid()
|
||||
label_start = Gtk.Label()
|
||||
self.grid = Gtk.Grid()
|
||||
vbox = Gtk.VBox()
|
||||
vbox_container = Gtk.VBox()
|
||||
scroller = Gtk.ScrolledWindow()
|
||||
scroller.set_policy(Gtk.PolicyType.NEVER, Gtk.PolicyType.ALWAYS)
|
||||
|
||||
label_start.set_markup('<b>Uninstall Kinto</b>\n\nWould you like to uninstall kinto?\n\n If you need support please visit <a href="http://kinto.sh">kinto.sh</a>.')
|
||||
label_start.set_padding(0,70)
|
||||
label_start.set_margin_right(30)
|
||||
label_start.set_margin_bottom(73)
|
||||
b.add(label_start)
|
||||
label_start = Gtk.Label()
|
||||
label_start.set_markup('<b>Uninstall</b>\n\n\n\nWould you like to uninstall kinto?\n\n If you need support please visit <a href="http://kinto.sh">kinto.sh</a>.')
|
||||
label_start.set_alignment(0,0)
|
||||
label_start.set_line_wrap(True)
|
||||
vbox.add(label_start)
|
||||
scroller.add(vbox)
|
||||
|
||||
hbox = Gtk.HBox()
|
||||
previous = Gtk.Button("Uninstall")
|
||||
previous.connect("clicked", self.goback)
|
||||
previous.set_margin_right(280)
|
||||
previous.set_margin_right(206)
|
||||
hbox.add(previous)
|
||||
|
||||
onward = Gtk.Button("Install")
|
||||
onward = Gtk.Button("Continue")
|
||||
onward.connect("clicked", self.forward)
|
||||
|
||||
hbox.add(onward)
|
||||
|
||||
hbox.set_hexpand(False)
|
||||
hbox.set_vexpand(False)
|
||||
hbox.set_margin_bottom(6)
|
||||
hbox.set_margin_right(25)
|
||||
|
||||
b.attach_next_to(hbox, label_start, Gtk.PositionType.BOTTOM, 2, 1)
|
||||
|
||||
self.pack_start(b,True,True,0)
|
||||
scroller.set_hexpand(True)
|
||||
scroller.set_vexpand(True)
|
||||
vbox_container.add(scroller)
|
||||
vbox_container.set_margin_top(55)
|
||||
vbox_container.set_margin_right(25)
|
||||
self.grid.set_margin_left(157)
|
||||
vbox_container.set_margin_bottom(18)
|
||||
vbox.set_margin_right(10)
|
||||
vbox.set_margin_bottom(18)
|
||||
self.grid.add(vbox_container)
|
||||
self.grid.attach_next_to(hbox, vbox_container, Gtk.PositionType.BOTTOM, 2, 1)
|
||||
self.add(self.grid)
|
||||
|
||||
def goback(self, *args):
|
||||
# for grandkid in self.__parent_window.overlay.get_children():
|
||||
@@ -1262,37 +1299,47 @@ class FirstPage(Gtk.Box):
|
||||
self.__parent_window = parent_window
|
||||
|
||||
self.grid = Gtk.Grid()
|
||||
vbox = Gtk.VBox()
|
||||
vbox_container = Gtk.VBox()
|
||||
scroller = Gtk.ScrolledWindow()
|
||||
scroller.set_policy(Gtk.PolicyType.NEVER, Gtk.PolicyType.ALWAYS)
|
||||
# self.grid.modify_bg(Gtk.StateFlags.NORMAL, Gdk.color_parse("#2d303b"))
|
||||
# scroller.modify_bg(Gtk.StateFlags.NORMAL, Gdk.color_parse("#aaaaaa"))
|
||||
|
||||
label_start = Gtk.Label("Before we continue please make sure you do not have any other remappers running. Kinto works best when it is the only application remapping your keys.")
|
||||
label_start2 = Gtk.Label()
|
||||
label_start2.set_markup("By continuing you also agree that Kinto is not held liable for any harm, damage(s) or unexpected behaviors.\nThis software is free, open-source, and provided as-is.\n\n<sup><b>© 2019, 2020 by Ben Reaves ~ Kinto is licensed on GPLv2.</b></sup>")
|
||||
label_start.set_padding(20,70)
|
||||
label_start.set_margin_right(17)
|
||||
label_start = Gtk.Label()
|
||||
label_start.set_markup("Before we continue please make sure you do not have any other remappers running. Kinto works best when it is the only application remapping your keys.\n\nBy continuing you also agree that Kinto is not held liable for any harm, damage(s) or unexpected behaviors.\nThis software is free, open-source, and provided as-is.\n\n<sup><b>© 2019, 2020 by Ben Reaves ~ Kinto is licensed on GPLv2.</b></sup>")
|
||||
label_start.set_alignment(0,0)
|
||||
label_start.set_line_wrap(True)
|
||||
self.grid.add(label_start)
|
||||
label_start2.set_padding(13,0)
|
||||
label_start2.set_margin_right(17)
|
||||
label_start2.set_margin_bottom(11)
|
||||
label_start2.set_line_wrap(True)
|
||||
self.grid.attach_next_to(label_start2, label_start, Gtk.PositionType.BOTTOM, 2, 1)
|
||||
vbox.add(label_start)
|
||||
scroller.add(vbox)
|
||||
|
||||
hbox = Gtk.HBox()
|
||||
previous = Gtk.Button("Decline")
|
||||
previous.connect("clicked", self.goback)
|
||||
previous.set_margin_right(282)
|
||||
previous.set_margin_right(245)
|
||||
hbox.add(previous)
|
||||
|
||||
onward = Gtk.Button("Agree")
|
||||
onward.connect("clicked", self.forward)
|
||||
onward.set_margin_right(24)
|
||||
|
||||
hbox.add(onward)
|
||||
hbox.set_hexpand(False)
|
||||
hbox.set_vexpand(False)
|
||||
hbox.set_margin_bottom(6)
|
||||
hbox.set_margin_right(25)
|
||||
|
||||
self.grid.attach_next_to(hbox, label_start2, Gtk.PositionType.BOTTOM, 3, 1)
|
||||
|
||||
self.pack_start(self.grid,True,True,0)
|
||||
scroller.set_hexpand(True)
|
||||
scroller.set_vexpand(True)
|
||||
vbox_container.add(scroller)
|
||||
vbox_container.set_margin_top(55)
|
||||
vbox_container.set_margin_right(28)
|
||||
self.grid.set_margin_left(157)
|
||||
vbox_container.set_margin_bottom(18)
|
||||
vbox.set_margin_right(10)
|
||||
vbox.set_margin_bottom(18)
|
||||
self.grid.add(vbox_container)
|
||||
self.grid.attach_next_to(hbox, vbox_container, Gtk.PositionType.BOTTOM, 2, 1)
|
||||
self.add(self.grid)
|
||||
|
||||
def goback(self, *args):
|
||||
for grandkid in self.__parent_window.overlay.get_children():
|
||||
@@ -1320,28 +1367,46 @@ class SecondPage(Gtk.Box):
|
||||
super().__init__(spacing=10)
|
||||
self.__parent_window = parent_window
|
||||
|
||||
b = Gtk.Grid()
|
||||
self.grid = Gtk.Grid()
|
||||
vbox = Gtk.VBox()
|
||||
vbox_container = Gtk.VBox()
|
||||
scroller = Gtk.ScrolledWindow()
|
||||
scroller.set_policy(Gtk.PolicyType.NEVER, Gtk.PolicyType.ALWAYS)
|
||||
|
||||
label_start = Gtk.Label()
|
||||
label_start.set_markup('<b>Identifying your Keyboard...</b>\n\nPress the <b>2nd</b> key <b>Left</b> of the spacebar.')
|
||||
label_start.set_padding(0,70)
|
||||
label_start.set_margin_right(30)
|
||||
label_start.set_margin_bottom(114)
|
||||
b.add(label_start)
|
||||
label_start.set_alignment(0,0)
|
||||
label_start.set_line_wrap(True)
|
||||
vbox.add(label_start)
|
||||
scroller.add(vbox)
|
||||
|
||||
hbox = Gtk.HBox()
|
||||
previous = Gtk.Button("Go Back")
|
||||
previous.connect("clicked", self.goback)
|
||||
previous.set_margin_right(265)
|
||||
previous.set_visible(False)
|
||||
previous.set_margin_right(315)
|
||||
hbox.add(previous)
|
||||
|
||||
# onward = Gtk.Button("Continue")
|
||||
# onward.connect("clicked", self.capsforward)
|
||||
# onward.connect("clicked", self.forward)
|
||||
# hbox.add(onward)
|
||||
|
||||
b.attach_next_to(hbox, label_start, Gtk.PositionType.BOTTOM, 2, 1)
|
||||
hbox.set_hexpand(False)
|
||||
hbox.set_vexpand(False)
|
||||
hbox.set_margin_bottom(6)
|
||||
hbox.set_margin_right(25)
|
||||
|
||||
self.pack_start(b,True,True,0)
|
||||
scroller.set_hexpand(True)
|
||||
scroller.set_vexpand(True)
|
||||
vbox_container.add(scroller)
|
||||
vbox_container.set_margin_top(55)
|
||||
vbox_container.set_margin_right(25)
|
||||
self.grid.set_margin_left(157)
|
||||
vbox_container.set_margin_bottom(18)
|
||||
vbox.set_margin_right(10)
|
||||
vbox.set_margin_bottom(18)
|
||||
self.grid.add(vbox_container)
|
||||
self.grid.attach_next_to(hbox, vbox_container, Gtk.PositionType.BOTTOM, 2, 1)
|
||||
self.add(self.grid)
|
||||
|
||||
def goback(self, *args):
|
||||
for grandkid in self.__parent_window.overlay.get_children():
|
||||
@@ -1381,28 +1446,46 @@ class CapsPage(Gtk.Box):
|
||||
super().__init__(spacing=10)
|
||||
self.__parent_window = parent_window
|
||||
|
||||
b = Gtk.Grid()
|
||||
self.grid = Gtk.Grid()
|
||||
vbox = Gtk.VBox()
|
||||
vbox_container = Gtk.VBox()
|
||||
scroller = Gtk.ScrolledWindow()
|
||||
scroller.set_policy(Gtk.PolicyType.NEVER, Gtk.PolicyType.ALWAYS)
|
||||
|
||||
label_start = Gtk.Label()
|
||||
pad = ' '
|
||||
label_start.set_markup('<b>Identifying your Keyboard...</b>\n\nPress the <b>capslock</b> key twice.'+pad)
|
||||
label_start.set_padding(0,70)
|
||||
label_start.set_margin_right(30)
|
||||
label_start.set_margin_bottom(114)
|
||||
b.add(label_start)
|
||||
label_start.set_markup('<b>Identifying your Keyboard...</b>\n\nPress the <b>capslock</b> key twice.')
|
||||
label_start.set_alignment(0,0)
|
||||
label_start.set_line_wrap(True)
|
||||
vbox.add(label_start)
|
||||
scroller.add(vbox)
|
||||
|
||||
hbox = Gtk.HBox()
|
||||
previous = Gtk.Button("Go Back")
|
||||
previous.connect("clicked", self.goback)
|
||||
previous.set_margin_right(265)
|
||||
previous.set_margin_right(315)
|
||||
hbox.add(previous)
|
||||
|
||||
# onward = Gtk.Button("Continue")
|
||||
# onward.connect("clicked", self.forward)
|
||||
# hbox.add(onward)
|
||||
|
||||
b.attach_next_to(hbox, label_start, Gtk.PositionType.BOTTOM, 2, 1)
|
||||
hbox.set_hexpand(False)
|
||||
hbox.set_vexpand(False)
|
||||
hbox.set_margin_bottom(6)
|
||||
hbox.set_margin_right(25)
|
||||
|
||||
self.pack_start(b,True,True,0)
|
||||
scroller.set_hexpand(True)
|
||||
scroller.set_vexpand(True)
|
||||
vbox_container.add(scroller)
|
||||
vbox_container.set_margin_top(55)
|
||||
vbox_container.set_margin_right(25)
|
||||
self.grid.set_margin_left(157)
|
||||
vbox_container.set_margin_bottom(18)
|
||||
vbox.set_margin_right(10)
|
||||
vbox.set_margin_bottom(18)
|
||||
self.grid.add(vbox_container)
|
||||
self.grid.attach_next_to(hbox, vbox_container, Gtk.PositionType.BOTTOM, 2, 1)
|
||||
self.add(self.grid)
|
||||
|
||||
def goback(self, *args):
|
||||
for grandkid in self.__parent_window.overlay.get_children():
|
||||
@@ -1432,9 +1515,10 @@ class SuccessPage(Gtk.Box):
|
||||
super().__init__(spacing=10)
|
||||
self.__parent_window = parent_window
|
||||
|
||||
global win
|
||||
global win,openWin
|
||||
win = MyWindow()
|
||||
win.connect("delete-event", Gtk.main_quit)
|
||||
# win.show_all()
|
||||
if openWin:
|
||||
win.show_all()
|
||||
|
||||
Gtk.main()
|
BIN
xkeysnail-config/gui/tuxbg.png
Executable file
BIN
xkeysnail-config/gui/tuxbg.png
Executable file
Binary file not shown.
After Width: | Height: | Size: 111 KiB |
BIN
xkeysnail-config/gui/tuxcry4.png
Executable file
BIN
xkeysnail-config/gui/tuxcry4.png
Executable file
Binary file not shown.
After Width: | Height: | Size: 63 KiB |
BIN
xkeysnail-config/gui/tuxuninstall.png
Executable file
BIN
xkeysnail-config/gui/tuxuninstall.png
Executable file
Binary file not shown.
After Width: | Height: | Size: 94 KiB |
40
xkeysnail-config/initkb
Normal file
40
xkeysnail-config/initkb
Normal file
@@ -0,0 +1,40 @@
|
||||
kbtype = ask
|
||||
rightmod = true
|
||||
vsc2st3 = false
|
||||
capslock = default
|
||||
systray = true
|
||||
autostart = true
|
||||
|
||||
#
|
||||
# kbtype - ask|win|mac|ibm|cbk|wmk
|
||||
#
|
||||
# What physical keyboard type does the user have?
|
||||
# ask - Prompt the user
|
||||
# win - Standard layout Ctrl, Win, Alt, Spacebar
|
||||
# mac - Mac layout Ctrl, Alt, Cmd, Spacebar
|
||||
# ibm - Model M layout Ctrl, Alt, Spacebar (Capslock is Capslock)
|
||||
# cbk - Chromebook layout Ctrl, Alt, Spacebar (Capslock is Search (Win))
|
||||
# wmk - WinMac layout
|
||||
# wmk - Uses Apple driver to swap Cmd & Alt so
|
||||
# swapping between Win & Mac keyboards is seamless.
|
||||
#
|
||||
# rightmod - Remap modifiers on right
|
||||
# true (default)
|
||||
#
|
||||
# ^ Note: Useful to set to false for multi-language users (aka AltGr)
|
||||
#
|
||||
# vsc2st3 - Remap VS Code to use Sublime Text keymap
|
||||
# false (default)
|
||||
#
|
||||
# capslock - esc_cmd|cmd|default
|
||||
# esc_cmd - escape if tapped, cmd if held
|
||||
# cmd - remaps to cmd
|
||||
# default - no remap
|
||||
#
|
||||
# systray - Sets whether the system tray will show
|
||||
# true - default
|
||||
# false - only defaults on gnome3 and kde
|
||||
#
|
||||
# autostart - Sets whether or not kinto will automatically start
|
||||
# true - deefault
|
||||
#
|
Reference in New Issue
Block a user