A list of compatibility flags which can be used with various software to make it run natively on Wayland. Recommended for PopOS 24.04 with COSMIC.
QT_QPA_PLATFORMTHEME=qt5ct
QT_IM_MODULE=ibus
#!/bin/bash | |
# Simple script for quickly installing and setting up a Zabbix stack. | |
# This includes database, snmptraps, server and web interface. | |
# A local agent can be installed optionally. | |
read -p "Zabbix version (default 'ubuntu-6.4-latest'): " version | |
if [ -z "${version}" ]; then | |
echo "Using default Zabbix version" | |
export ZSTACK_VERSION="ubuntu-6.4-latest" |