Skip to content

Instantly share code, notes, and snippets.

@jiriks74
jiriks74 / Dockerfile
Last active January 23, 2024 12:13
Ree6 frontend in Docker
#Dockerfile
FROM node:18-alpine AS external-website
LABEL developer="Jiří Štefka <jiri@stefka.eu>"
LABEL maintainer="Jiří Štefka <jiri@stefka.eu>"
################
# Webinterface #
# settings #
@jiriks74
jiriks74 / nitrox-update.sh
Last active April 26, 2021 20:49
Script to update nitrox mod in lutris
#!/bin/bash
if zenity --question --ellipsize --title="Update Nitrox" \
--text="Do you wish to update nitrox?\nThis may overwrite some seting in the Nitrox Launcher\n(such as Subnautica game folder)"
then
{
wget -O nitrox.zip https://nitrox.rux.gg/deeplink/download/latest
echo 50
unzip -o -q nitrox.zip -d "drive_c/Program Files/Nitrox/"
echo 100
} |\