This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 | |
| # Desktop Entry Cleaner Script | |
| # This script removes all language-specific entries from desktop files | |
| # Usage: bash clean-desktop-files.sh /path/to/your/desktop/files | |
| DESKTOP_DIR="$1" | |
| if [ -z "$DESKTOP_DIR" ]; then | |
| echo "Please provide the directory containing desktop files" | |
| echo "Usage: bash clean-desktop-files.sh /path/to/your/desktop/files" |
This file contains hidden or 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
| #!/usr/bin/env bash | |
| sudo pacman -S dunst \ | |
| grim \ | |
| btop \ | |
| hyprland \ | |
| iwd \ | |
| kitty \ | |
| nano \ | |
| vim \ | |
| neovim \ |