Skip to content

Instantly share code, notes, and snippets.

@Nexarian
Nexarian / xrdp-setup-x264-no-hw-accel.sh
Last active January 17, 2025 21:38
XRDP setup enabling X264 with no Nvidia or Intel acceleration
#!/usr/bin/env bash
set -e
sudo -v
sudo apt-get update
sudo apt-get dist-upgrade -y
sudo apt-get autoremove -y
@unixabg
unixabg / Digital Signage
Last active June 8, 2024 14:01
Upcycle example kiosk Debian 12 XFCE
1. connect to network
2. open terminal
3. change password
1. $: passwd
4. update packages
1. $: sudo apt update
5. install chromium
1. $: sudo apt install chromium unclutter
6. Reboot
7. set chromium to launch at start up with custom url and flags
@Nexarian
Nexarian / xrdp-intel-setup.sh
Last active March 17, 2025 15:43
Setup for Intel acceleration and XRDP
#!/usr/bin/env bash
set -e
sudo -v
sudo apt-get update
sudo apt-get dist-upgrade -y
sudo apt-get autoremove -y
@Nexarian
Nexarian / xrdp-nvidia-setup.sh
Last active March 5, 2025 15:40
Setup for XRDP using Nvidia Acceleration
#!/usr/bin/env bash
set -e
cd ~
sudo -v
# Make sure system is in a good, updated, clean, state.
sudo apt-get -y update
@rcarmo
rcarmo / buid-xrdp-glamor-annotated.sh
Last active January 17, 2025 22:56 — forked from rkkoszewski/gist:aa531cee7126edf329b76bdd0546f502
Notes for installing XorgXrdp and Xrdp with GLAMOR support
#!/bin/bash
# Install Latest XRDP with XORGXRDP and GFX/Glamor server-side acceleration
# Tested on Ubuntu 22.04 LTS
BUILD_DIR=/tmp/xrdpbuild
echo "-> preparing $BUILD_DIR"
rm -f -r $BUILD_DIR
mkdir -p $BUILD_DIR
@Issykul
Issykul / Office 2019 ISO Links at Microsoft.md
Last active April 12, 2025 15:04
Office 2019 ISO Download Links at Microsoft
@kkrypt0nn
kkrypt0nn / ansi-colors-discord.md
Last active April 16, 2025 07:57
A guide to ANSI on Discord

A guide to ANSI on Discord

Discord is now slowly rolling out the ability to send colored messages within code blocks. It uses the ANSI color codes, so if you've tried to print colored text in your terminal or console with Python or other languages then it will be easy for you.

Quick Explanation

To be able to send a colored text, you need to use the ansi language for your code block and provide a prefix of this format before writing your text:

\u001b[{format};{color}m
@triangletodd
triangletodd / README.md
Last active April 3, 2025 16:29
k3s in LXC on Proxmox

On the host

Ensure these modules are loaded

cat /proc/sys/net/bridge/bridge-nf-call-iptables

Disable swap

sysctl vm.swappiness=0
swapoff -a