Skip to content

Instantly share code, notes, and snippets.

View itsmaxymoo's full-sized avatar

Max itsmaxymoo

View GitHub Profile
@itsmaxymoo
itsmaxymoo / minecraft-launcher-desktop-creator.py
Last active June 19, 2024 20:11
Script to create a desktop file for the official Minecraft launcher
#!/bin/python3
# ------------------------------------
# For easy execution, run the command:
# curl https://gist.githubusercontent.com/itsmaxymoo/3ffd38ed8f4d896e67e7c5af25b40173/raw | python3 -
# ------------------------------------
import os
@itsmaxymoo
itsmaxymoo / t480-touchscreen-disable.sh
Created July 1, 2022 20:54
Completely disable touch screen on Lenovo T480
#!/bin/bash
# Disable touch screen on Lenovo T480
# This may produce great battery savings
# To re-enable, delete the file created by this script & reboot
DISABLE_TEXT="SUBSYSTEM==\"usb\", ATTRS{idVendor}==\"2a94\", ATTRS{idProduct}==\"464d\", ATTR{authorized}=\"0\""
echo $DISABLE_TEXT | sudo tee -a /etc/udev/rules.d/80-touchscreen.rules
sudo udevadm control --reload-rules && sudo udevadm trigger