Skip to content

Latest commit

 

History

History
73 lines (50 loc) · 2.35 KB

README.md

File metadata and controls

73 lines (50 loc) · 2.35 KB

Install holomatch

Download a release from one of:

The download from holomat.ch includes all of the necessary files. For the other versions you need to copy over a baseEF directory from somewhere else.

If you use Wine to install the Windows executable from holomat.ch, then you need to run winetricks vcrun2015.

Native support

If you are using a client with native protocol handler support then you just need stvef.desktop. If your favorite game client has not merged support yet then feel free to use my test build.

You need to modify the file to make sure it is launching the correct executable.

# Download the icon file and install it:
curl -L -o stvef.png https://github.com/stefansundin/stvef-protocol/raw/main/linux/stvef.png
xdg-icon-resource install stvef.png --size 64 --novendor

# Download the example file:
curl -L -o stvef.desktop https://github.com/stefansundin/stvef-protocol/raw/main/linux/stvef.desktop

# Modify the stvef.desktop file. You need to edit the "Exec=" path to be correct.

# Install the desktop file:
xdg-desktop-menu install stvef.desktop --novendor

# Optional clean up:
rm stvef.desktop
rm stvef.png

Uninstall:

xdg-desktop-menu uninstall stvef.desktop
xdg-icon-resource uninstall stvef.png

Install stvef-protocol

The stvef-protocol script makes some assumptions regarding where the game is installed. Edit the script if the game is located elsewhere.

Install using curl:

sudo curl -L -o /usr/local/bin/stvef-protocol https://github.com/stefansundin/stvef-protocol/raw/main/linux/stvef-protocol
sudo chmod +x /usr/local/bin/stvef-protocol
curl -L -o stvef-protocol.desktop https://github.com/stefansundin/stvef-protocol/raw/main/linux/stvef-protocol.desktop
xdg-desktop-menu install stvef-protocol.desktop
rm stvef-protocol.desktop

Install by cloning repository:

git clone https://github.com/stefansundin/stvef-protocol.git
cd stvef-protocol/linux
sudo cp stvef-protocol /usr/local/bin/
xdg-desktop-menu install stvef-protocol.desktop

Uninstall:

xdg-desktop-menu uninstall stvef-protocol.desktop
sudo rm /usr/local/bin/stvef-protocol