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
| -- put user settings here | |
| -- this module will be loaded after everything else when the application starts | |
| -- it will be automatically reloaded when saved | |
| local core = require "core" | |
| local keymap = require "core.keymap" | |
| local config = require "core.config" | |
| local style = require "core.style" | |
| ------------------------------ Themes ---------------------------------------- |
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
| export GITHUB_REF="refs/heads/main" | |
| export GITHUB_TOKEN="token" | |
| export GITHUB_NAME="git-test" | |
| export GITHUB_OWNER="GamePlayer-8" | |
| export GITHUB_REPO="GamePlayer-8/git-test" |
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/sh | |
| VM_NAME="${VM_NAME:-$1}" | |
| VM_NAME="${VM_NAME:-'Ventura'}" | |
| VBoxManage modifyvm "$VM_NAME" --cpuidset 00000001 000106e5 00100800 0098e3fd bfebfbff | |
| VBoxManage setextradata "$VM_NAME" "VBoxInternal/Devices/efi/0/Config/DmiSystemProduct" "iMac19,3" | |
| VBoxManage setextradata "$VM_NAME" "VBoxInternal/Devices/efi/0/Config/DmiSystemVersion" "1.0" | |
| VBoxManage setextradata "$VM_NAME" "VBoxInternal/Devices/efi/0/Config/DmiBoardProduct" "Iloveapple" | |
| VBoxManage setextradata "$VM_NAME" "VBoxInternal/Devices/smc/0/Config/DeviceKey" "ourhardworkbythesewordsguardedpleasedontsteal(c)AppleComputerInc" |
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
| # Maintainer: Chimmie Firefly <gameplayer2019pl (at) tutamail (dot) com> | |
| pkgname=cubic-server-git | |
| _pkgname=cubic-server-git | |
| pkgver=r1442.efa5d7d4 | |
| pkgrel=1 | |
| pkgdesc='A fast and extensible C++ implementation of Minecraft is server.' | |
| arch=( | |
| 'i686' | |
| 'x86_64' |
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 | |
| podman images | grep '<none>' | cut -d '>' -f 3 | cut -d ' ' -f 10 | xargs -I "{}" podman image rm -f "{}" |
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
| FROM archlinux | |
| RUN useradd yay | |
| RUN mkdir /home/yay && \ | |
| chown -R yay:yay /home/yay | |
| RUN pacman -Syu --noconfirm go git base-devel sudo | |
| RUN echo '%wheel ALL=(ALL:ALL) NOPASSWD: ALL' >> /etc/sudoers && \ | |
| usermod -aG wheel yay |
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
| STEP 1/10: FROM archlinux | |
| STEP 2/10: RUN useradd yay | |
| --> 9979f3485cab | |
| STEP 3/10: RUN mkdir /home/yay && chown -R yay:yay /home/yay | |
| --> 1fc81fd0c69e | |
| STEP 4/10: RUN pacman -Syu --noconfirm go git base-devel sudo | |
| :: Synchronizing package databases... | |
| core downloading... | |
| extra downloading... | |
| :: Starting full system upgrade... |
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/sh | |
| result=$(free -m | awk '/Mem/ {printf "%.0f\n", $7/1024}') | |
| divided_value=$(awk "BEGIN { printf \"%.2f\n\", $result / 1.7 }") | |
| final_value=$(awk "BEGIN { printf \"%.0f\n\", $divided_value }") | |
| echo 'Allocating '$final_value' GB of RAM as RamDrive at /ramdrive...' | |
| mkdir /ramdrive 2>/dev/null 3>&2 | |
| umount -R /ramdrive 2>/dev/null 3>&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
| kernel.printk = 4 4 1 7 | |
| kernel.panic = 10 | |
| kernel.sysrq = 0 | |
| kernel.shmmax = 4294967296 | |
| kernel.shmall = 4194304 | |
| kernel.core_uses_pid = 1 | |
| kernel.msgmnb = 65536 | |
| kernel.msgmax = 65536 | |
| vm.swappiness = 20 | |
| vm.dirty_ratio = 80 |
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
| # Please see https://dev.maxmind.com/geoip/updating-databases?lang=en for | |
| # instructions on setting up geoipupdate, including information on how to | |
| # download a pre-filled GeoIP.conf file. | |
| # Replace YOUR_ACCOUNT_ID_HERE and YOUR_LICENSE_KEY_HERE with an active account | |
| # ID and license key combination associated with your MaxMind account. These | |
| # are available from https://www.maxmind.com/en/my_license_key. | |
| AccountID YOUR_ACCOUNT_ID_HERE | |
| LicenseKey YOUR_LICENSE_KEY_HERE |