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
static void Main(string[] args) | |
{ | |
// v0.2 | |
// Place lights starting with following string and the appended resource type to create a resource check. -- TypeId:SubtypeId | |
// e.g.: "Resource Status Light Ore:Stone" for a check for stone | |
// TypeIds: Ore Ingot Component | |
const string WARNING_LIGHT_PREFIX = "RSL "; | |
const string SOUND_BLOCK_NAME = null; | |
const string TYPE_SEPARATOR = ":"; |
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 | |
sudo apt update | |
# podman installation | |
echo 'deb http://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/unstable/xUbuntu_22.04/ /' | sudo tee /etc/apt/sources.list.d/devel:kubic:libcontainers:unstable.list | |
curl -fsSL https://download.opensuse.org/repositories/devel:kubic:libcontainers:unstable/xUbuntu_22.04/Release.key | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/devel_kubic_libcontainers_unstable.gpg > /dev/null | |
sudo apt update | |
sudo apt install podman |