This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/env bash | |
# Create the basic directory structure | |
mkdir -p ~/.config/nvim/lua/core | |
mkdir -p ~/.config/nvim/lua/configs | |
mkdir -p ~/.config/nvim/lua/themes/void | |
mkdir -p ~/.config/nvim/lua/utils | |
# Create placeholder files | |
touch ~/.config/nvim/lua/core/options.lua |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
find . -type d -name .git -not -path ./.git -exec dirname {} \; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
toilet Hyprland only env -f pagga | boxes -d ansi-double | wlc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jp2a --background=dark --chars="01234567" --height=20 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ascii-matrix -f ~/.local/build/ascii-matrix/archlinux.txt -c1 navy -c2 aqua -c3 grey -a1 s -a2 s -a3 s -i |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cat myfile.als | gunzip | egrep "<.*Track |EffectiveName|PlugName" | sed -e 's/^[ \t]*//g' | less |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -e | |
log() { | |
echo "[CUSTOMIZE] $1" | |
} | |
log "Updating system packages" | |
pacman -Syu --noconfirm |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
ISO=ubuntu-24.10-desktop-amd64.iso | |
IMG=ubuntu-24-10.qcow2 | |
if [ ! -f "$ISO" ]; then | |
wget https://releases.ubuntu.com/oracular/$ISO | |
fi | |
if [ ! -f "$IMG" ]; then |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
scrcpy --video-bit-rate 2M --max-size 1080 --keyboard=uhid --mouse-bind=++bh:++sn --stay-awake |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# File: ~/.local/bin/update-repos.sh | |
# Make sure to chmod +x this script after creating it | |
# Define color variables for styling output | |
BLUE='\033[0;32m' | |
YELLOW='\033[1;33m' | |
RED='\033[0;31m' | |
BLUE='\033[1;34m' | |
MAGENTA='\033[1;35m' |
NewerOlder