Merge pull request #35 from rbreaves/dev

- Corrected new Home and End remaps in terminal
This commit is contained in:
Ben Reaves
2020-02-19 13:08:50 -06:00
committed by GitHub
2 changed files with 3 additions and 2 deletions

View File

@@ -26,13 +26,13 @@ default partial xkb_symbols "mac_levelssym" {
// HOME // HOME
replace key <LEFT> { replace key <LEFT> {
type[Group1]= "ONE_LEVEL_CTRL", type[Group1]= "ONE_LEVEL_CTRL",
symbols[Group1]= [ Up, Up, NoSymbol ], symbols[Group1]= [ Left, Left, NoSymbol ],
actions[Group1]= [ NoAction(), NoAction(), RedirectKey(key=<HOME>,clearmods=Shift+Control)] actions[Group1]= [ NoAction(), NoAction(), RedirectKey(key=<HOME>,clearmods=Shift+Control)]
}; };
// END // END
replace key <RGHT> { replace key <RGHT> {
type[Group1]= "ONE_LEVEL_CTRL", type[Group1]= "ONE_LEVEL_CTRL",
symbols[Group1]= [ Down, Down, NoSymbol ], symbols[Group1]= [ RGHT, RGHT, NoSymbol ],
actions[Group1]= [ NoAction(), NoAction(), RedirectKey(key=<END>,clearmods=Shift+Control)] actions[Group1]= [ NoAction(), NoAction(), RedirectKey(key=<END>,clearmods=Shift+Control)]
}; };
}; };

View File

@@ -5,6 +5,7 @@ PartOf=graphical-session.target
[Service] [Service]
Type=simple Type=simple
Restart=always Restart=always
#Environment=DISPLAY=:0.0
RestartSec=1 RestartSec=1
WorkingDirectory=/home/{username}/.config/kinto WorkingDirectory=/home/{username}/.config/kinto
ExecStart=/bin/bash -c "/home/{username}/.config/kinto/xactive.sh carrots" ExecStart=/bin/bash -c "/home/{username}/.config/kinto/xactive.sh carrots"