- ) Setup SPT -- Make a 2nd copy for the headless server
- ) Edit the launch-server.sh file and make sure the path to your dotnet binary is set correctly. On
- ) Install all the fika! You need the server, plugin & and the headless plugin for this to work
- ) https://github.com/project-fika/Fika-Server-CSharp/releases << -- Server
- ) https://github.com/project-fika/Fika-Headless/releases << -- Headless dll
- ) https://github.com/project-fika/Fika-Plugin/releases << -- Client (which the headless needs)
- ) https://github.com/project-fika/Fika-Headless-Manager/releases << -- This manager that actually starts the headless section
- ) Once installed, run the launch-server.sh at least once to create the fika folders and initialize the server.
- ) Create a symlink to the fika.jsonc file for easy access
- ) cd /path/to/sptarkov
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # This file is located in ~/.local/share/applications/rustique.desktop | |
| # These changes will make it so the terminal does not open and redirects all output to a | |
| # log file so you can see what is happening. | |
| # The /path/to/rustique should already be set, just modify it to wrap it in bash -c ' >> /tmp/rustique.log' | |
| [Desktop Entry] | |
| Type=Application | |
| Name=Rustique Mod Manager | |
| Exec=bash -c '/path/to/rustique install %u >> /tmp/rustique.log' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Copy the file to /etc/wireguard/ | |
| # Make it executable: chmod +x /etc/wireguard/wg-killswitch.sh | |
| # Add the following lines to your wireguard conf (/etc/wireguard/wg0.conf) | |
| # PostUp = /etc/wireguard/wg-killswitch.sh up %i 123.45.78.99 | |
| # PostDown = /etc/wireguard/wg-killswitch.sh down %i 123.45.78.99 | |
| # Make sure you update the ip addresses in this file to match your wireguard config and your network |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # /etc/init.d/vintagestory.sh | |
| # version 0.4.2 2016-02-09 (YYYY-MM-DD) | |
| # This shell script launches the game server on linux | |
| # | |
| ### BEGIN INIT INFO | |
| # Provides: vintagestory | |
| # Required-Start: $local_fs $remote_fs tmux-cleanup | |
| # Required-Stop: $local_fs $remote_fs | |
| # Should-Start: $network |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function (context, args) { | |
| let qrstates = []; | |
| let corruptChars = #fs.scripts.lib().corruption_chars.split('') | |
| function buildQRPattern() { | |
| // Convert string to array of characters | |
| const chars = "<qr missing>".split(''); | |
| // For each character, create a pattern that matches either the original |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [package] | |
| name = "ktab" | |
| version = "0.1.0" | |
| edition = "2021" | |
| [dependencies] | |
| [profile.release] | |
| opt-level = 3 | |
| lto = "fat" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| # create a new tab and set the title | |
| # make sure to update your ~/.conf/kitty/kitty.conf to enable: allow_remote_control on | |
| import subprocess | |
| import argparse | |
| import sys | |
| def open_kitty_tab_with_title(title: str) -> None: | |
| # The command to open a new tab with the specified title |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [Display] | |
| fDefault1stPersonFOV=90 | |
| fDefaultFOV=90 | |
| fDefaultWorldFOV=90 | |
| fFPWorldFOV=90 | |
| fTPWorldFOV=90 | |
| ;bEnableRaytracing=1 | |
| ;bUseSkyLighting=1 | |
| ;set to 0 to disable | |
| fMaxAnisotropy=2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #/lib/modules/6.5.0-gentoo-nox/kernel/virt/lib/irqbypass.ko | |
| :%s/.*\/\([^/]\+\)\.k\{,1\}o\?$/\1/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import sys | |
| from PyQt5.QtWidgets import QApplication, QWidget, QPushButton, QLineEdit, QLabel | |
| from PyQt5.QtGui import QCursor, QKeyEvent | |
| from PyQt5.QtCore import Qt, QEvent | |
| class Example(QWidget): | |
| def __init__(self): | |
| super().__init__() | |
| self.initUI() |
NewerOlder