Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Making an executable(or equivalent) that install the files #2

Open
mateowoetam opened this issue Mar 8, 2022 · 2 comments
Open

Making an executable(or equivalent) that install the files #2

mateowoetam opened this issue Mar 8, 2022 · 2 comments

Comments

@mateowoetam
Copy link

I'm a beginner in Linux and also it becomes repetitive to install on every device with so many steps.
with a program that does it for you, one could download one file, click it and that's it, Halmak on my device (similar to the windows version of this), I would kindly ask that this gets developed for the different Halmak configuration like HamalkGL for example, as well as an uninstall executable.

Thank you.

@mirrorsonthewall
Copy link
Owner

Hi @Mathew420w0 that sounds possibly like a good idea. I just created this so that something, anything existed, it was just a quick fix that worked for me that I wanted to share.

Looking at it now, it looks like some simple "cp [file] [directory]" commands could be used to make it easier. On the other hand, it's only a couple files, so I don't know if it would be that much work if you need to put it on multiple computers (unless you have a lot of computers).

@limiteinductive
Copy link

@Mathew420w0 you can use the following script. You create a file called install-halmak.sh and copy paste that code. You have to make the file executable (some distributions let you do that with a right click then properties) then you just have to execute it

#!/bin/bash
git clone https://github.com/mirrorsonthewall/halmaklinuxsupport.git
cd halmaklinuxsupport/
sudo cp halmak-linux/zz /usr/share/X11/xkb/symbols/
sudo cp halmak-linux/evdev.xml /usr/share/X11/xkb/rules/
cd ..
rm -rf halmaklinuxsupport/
echo "Halmak is now installed. Don't forget to restart your computer ;)"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants