let skip_defaults_vim=1
syntax on
set tabstop=8 softtabstop=0 expandtab shiftwidth=4 smarttab
from requests import session | |
import re | |
username = "" | |
password = "" | |
gitlab_url = "https://gitlab.example.com" | |
mattermost_url = "https://mattermost.example.com" | |
sess = session() |
#!/bin/bash | |
export CURDIR="$(cd $(dirname $0); pwd -P)" | |
export PROTON_VER=Proton-6.21-GE-2 | |
export WINE="$CURDIR/$PROTON_VER/files/bin/wine" | |
export WINEPREFIX="$CURDIR/prefix" | |
export WINEARCH=win64 | |
export PATH="$CURDIR/$PROTON_VER/files/bin:$PATH" | |
export XL_WINEONLINUX=true | |
export DXVK_FRAME_RATE=0 |
""" Game fix for FFXIV | |
""" | |
#pylint: disable=C0103 | |
from protonfixes import util | |
import os | |
from subprocess import call | |
import sys | |
def main(): |