Skip to content

Instantly share code, notes, and snippets.

@H0gwartsDr0pout
H0gwartsDr0pout / stow_headless.sh
Last active May 10, 2026 00:25
stow-headless
#!/usr/bin/env bash
cd $HOME/dotfiles-shared
shared=(
lua
nvim-server
p10k-headless
ssh
vim
#!/usr/bin/env bash
cd $HOME/dotfiles-shared
shared=(
kitty
lua
nvim
p10k-gui
rofi
@H0gwartsDr0pout
H0gwartsDr0pout / dotfiles_server_install
Last active May 10, 2026 17:36
dotfiles_server_install
#!/usr/bin/env bash
# Exit on error
set -e
# Detect OS
if [ -f /etc/os-release ]; then
. /etc/os-release
OS=$ID
else