Clean Supermemory plugin for OpenCode. Follows the Supermemory docs directly. no legacy compatibility shims, no cross-editor config discovery, no compaction takeover, no version-check banners.
JavaScript
# Backup Your Home Directory
## So simple you mother could do it
#### This script expects you to have a secondary storage drive mounted in /mnt (/mnt/<Desired_Location>
> ##### This is not a strictly enforced requirement and you may edit the script to suit your needs.
---
#!/bin/bash
read -n1 -p "1:NVTOP 2:NVIDIA-SMI DMON 3:NVIDIA-SMI PMON > " c; echo
case $c in
1) nvtop ;;
A simple script dependent on Pypdf. It merges any pdf contained inside of the folder the script is in into one .pdf named output.pdf
Python
#!/bin/bash
printf "Set Temporary NVIDIA GPU Power Limit\n"
read -p "Enter wattage (RTX 5090 range: 400-600): " WATTS
if sudo nvidia-smi -pl "$WATTS"; then
#!/bin/bash
sudo swapoff -a;sudo zramctl --reset /dev/zram0;echo "ensure if a ZRAM line is configured that you remove it now";sleep 10;wait;sudo nano /etc/fstab;sudo systemctl mask --now systemd-zram-setup@zram0.service;sudo touch /etc/systemd/zram-generator.conf;echo "Here you are going to write vm.swappiness=0, save(ctrl+s), and then exit(ctrl+x, Enter)";sleep 10;wait;sudo nano /etc/sysctl.d/99-swappiness.conf;echo "ZRAM is OFF";sleep 3;wait;exit 0