Compare commits

..

9 Commits

Author SHA1 Message Date
Ben Reaves
45801d9ff0 Merge pull request #137 from rbreaves/hotfix
- Fixed another global variable reference
2020-05-02 10:45:57 -05:00
Ben Reaves
17db80f54c - Fixed another global variable reference 2020-05-02 10:44:43 -05:00
Ben Reaves
650ff78b92 Merge pull request #135 from rbreaves/hotfix
- Defining global variable within function
2020-05-02 10:41:11 -05:00
Ben Reaves
7c0e22e33f - Defining global variable within function 2020-05-02 10:40:27 -05:00
Ben Reaves
1626443290 Merge pull request #132 from rbreaves/hotfix
- Updated IBus setup for Fedora
2020-05-01 23:28:58 -05:00
Ben Reaves
670d948ab0 - Updated IBus setup for Fedora 2020-05-01 23:27:35 -05:00
Ben Reaves
76e69ecc25 Merge pull request #130 from rbreaves/hotfix
- Fixed possible issue with Kinto xkb desktop login shortcut
2020-04-30 13:16:29 -05:00
Ben Reaves
bae786c3af - Fixed possible issue with Kinto xkb desktop login shortcut 2020-04-30 13:15:22 -05:00
Ben Reaves
701bf25c69 - Proper closing of kintox11 on logout 2020-04-28 16:53:24 -05:00
3 changed files with 18 additions and 8 deletions

View File

@@ -14,7 +14,7 @@ def cmdline(command):
shell=True
)
return process.communicate()[0]
distro = cmdline("awk -F= '$1==\"NAME\" { print $2 ;}' /etc/os-release").replace('"','').strip().split(" ")[0]
dename = cmdline("./system-config/dename.sh").replace('"','').strip().split(" ")[0].lower()
def requirements(pkgm):
@@ -26,20 +26,29 @@ def requirements(pkgm):
print("\n")
def install_ibus():
global distro
print(bcolors.CYELLOW2 + "You need to set IBus as the default Input Method for full word-wise support and re-run this installer.\n" + bcolors.ENDC)
print(bcolors.CYELLOW2 + "Confirm the IBus Setup by saying Yes and then closing the window.\n" + bcolors.ENDC)
print("ibus-setup\n")
print("im-config -n ibus\n")
print("im-config -n ibus or im-chooser\n")
run_install = yn_choice(bcolors.CYELLOW2 + "Would you like to run it now? (Will require logoff and logon.)\n" + bcolors.ENDC)
if(run_install):
os.system("ibus-setup")
os.system("im-config -n ibus")
print("\n")
input("IBus has been set as the default Input Method.\nPress any key to exit and re-run after logoff & logon...")
if distro=="fedora":
os.system("ibus-setup")
os.system("im-chooser")
print("\n")
print("IBus needs to have Input Method set to your language.")
print("im-chooser needs IBus to be selected & closed.")
input("Will need to log off and back on for it take effect...")
else:
os.system("ibus-setup")
os.system("im-config -n ibus")
print("\n")
input("IBus has been set as the default Input Method.\nPress any key to exit and re-run after logoff & logon...")
sys.exit()
def setShortcuts():
distro = cmdline("awk -F= '$1==\"NAME\" { print $2 ;}' /etc/os-release").replace('"','').strip().split(" ")[0]
global distro
distroVersion = cmdline("awk -F= '$1==\"VERSION_ID\" { print $2 ;}' /etc/os-release").replace('"','').strip()
print("\nIf Kinto is already running it will be stopped...")

View File

@@ -7,3 +7,4 @@ killall xbindkeys > /dev/null 2>&1 || :
gsettings set org.gnome.desktop.wm.keybindings switch-applications "['<Alt>Tab']"
gsettings set org.gnome.desktop.wm.keybindings switch-applications-backward "['<Shift><Alt>Tab']"
pkill -f /.config/kinto/xactive.sh

View File

@@ -2,7 +2,7 @@
Name=Kinto
GenericName=Kinto
Comment=Make Linux Type Like it's a Mac
Exec=/bin/sleep 5 /usr/bin/systemctl --user start keyswap
Exec=/bin/bash -c "/bin/sleep 5 && /usr/bin/systemctl --user start keyswap"
Terminal=false
Type=Application
X-GNOME-Autostart-enabled=true