feat(archiso+branding): rebrand to m-archy, ship fastfetch logo and os-release
Steps taken:
- Added overlay/airootfs/etc/os-release with NAME="M-Archy", ID=m-archy,
ID_LIKE=arch so fastfetch and other tools show the correct distro name while
keeping pacman/AUR helpers happy via ID_LIKE.
- Added overlay/airootfs/etc/fastfetch/config.jsonc — system-wide fastfetch
config equivalent to:
--logo-type file --logo /etc/fastfetch/m-archy-SPC.txt
--logo-color-1 red --logo-color-2 red --color red
(keys + title colored red, custom file logo, no other defaults changed).
- Added overlay/airootfs/etc/fastfetch/m-archy-SPC.txt — copy of the pin.txt
ASCII logo; lands on the live ISO via the existing cp -r overlay/airootfs/
step in build.sh, no build.sh or profiledef.sh changes needed.
- Renamed resources/pin.txt → resources/m-archy-SPC.txt and updated all
references in .bashrc, .zshrc, and both kitty/bash-remoteconf files.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
main
parent
8b9c5c70b2
commit
d9e4d67013
2
.bashrc
2
.bashrc
|
|
@ -121,7 +121,7 @@ eval "$(starship init bash)"
|
||||||
|
|
||||||
# Display system info on shell start using fastfetch with the custom ASCII logo.
|
# Display system info on shell start using fastfetch with the custom ASCII logo.
|
||||||
# Colors are forced to red to match the CyberQueer theme branding.
|
# Colors are forced to red to match the CyberQueer theme branding.
|
||||||
fastfetch --logo-color-1 red --logo-color-2 red --color red -l ~/Dotfiles/pin.txt
|
fastfetch --logo-color-1 red --logo-color-2 red --color red -l ~/Dotfiles/m-archy-SPC.txt
|
||||||
|
|
||||||
# Load the Rust/Cargo environment — primarily adds ~/.cargo/bin to PATH so that
|
# Load the Rust/Cargo environment — primarily adds ~/.cargo/bin to PATH so that
|
||||||
# binaries installed via `cargo install` (e.g., ripgrep, bat, starship itself)
|
# binaries installed via `cargo install` (e.g., ripgrep, bat, starship itself)
|
||||||
|
|
|
||||||
2
.zshrc
2
.zshrc
|
|
@ -174,7 +174,7 @@ export EDITOR='nvim'
|
||||||
# distrobox containers. CONTAINER_ID is set by distrobox on entry; checking
|
# distrobox containers. CONTAINER_ID is set by distrobox on entry; checking
|
||||||
# for it prevents a duplicate/confusing fetch banner inside containers.
|
# for it prevents a duplicate/confusing fetch banner inside containers.
|
||||||
if [ -z "${CONTAINER_ID}" ]; then
|
if [ -z "${CONTAINER_ID}" ]; then
|
||||||
fastfetch --logo-color-1 red --logo-color-2 red --color red -l ~/Dotfiles/resources/pin.txt
|
fastfetch --logo-color-1 red --logo-color-2 red --color red -l ~/Dotfiles/resources/m-archy-SPC.txt
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -58,6 +58,6 @@ export TERM=xterm-256color
|
||||||
|
|
||||||
#eval "$(starship init bash)"
|
#eval "$(starship init bash)"
|
||||||
|
|
||||||
#fastfetch --logo-color-1 red --logo-color-2 red --color red -l ~/Dotfiles/pin.txt
|
#fastfetch --logo-color-1 red --logo-color-2 red --color red -l ~/Dotfiles/m-archy-SPC.txt
|
||||||
|
|
||||||
export PS1="\u@\H>\t "
|
export PS1="\u@\H>\t "
|
||||||
|
|
|
||||||
|
|
@ -58,6 +58,6 @@ export TERM=xterm-256color
|
||||||
|
|
||||||
#eval "$(starship init bash)"
|
#eval "$(starship init bash)"
|
||||||
|
|
||||||
#fastfetch --logo-color-1 red --logo-color-2 red --color red -l ~/Dotfiles/pin.txt
|
#fastfetch --logo-color-1 red --logo-color-2 red --color red -l ~/Dotfiles/m-archy-SPC.txt
|
||||||
|
|
||||||
export PS1="\u@\H>\t "
|
export PS1="\u@\H>\t "
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,17 @@
|
||||||
|
{
|
||||||
|
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json",
|
||||||
|
"logo": {
|
||||||
|
"source": "/etc/fastfetch/m-archy-SPC.txt",
|
||||||
|
"type": "file",
|
||||||
|
"color": {
|
||||||
|
"1": "red",
|
||||||
|
"2": "red"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"display": {
|
||||||
|
"color": {
|
||||||
|
"keys": "red",
|
||||||
|
"title": "red"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,17 @@
|
||||||
|
|
||||||
|
┌────────────────────────┐
|
||||||
|
│ ╔══════════════════╗ │\
|
||||||
|
│ ║==~~ _______ ~===║ │ \
|
||||||
|
│ ║ / \ ║ │ \
|
||||||
|
│ ║ { #@ @# } ║ │ |
|
||||||
|
│ ║ \ # / ║ │ |
|
||||||
|
│ ║ ~~= | # | ║ │ |
|
||||||
|
│ ║ |_|_|_| ==~~║ │ |
|
||||||
|
│ ║~~=~ ~==~ ║ │ /
|
||||||
|
│• ╚══════════════════╝ │ /
|
||||||
|
└────────────────────────┘/
|
||||||
|
╭────────────────────────────╮
|
||||||
|
│ •• ┌──────┐ • ──══── │
|
||||||
|
│ •──────• │
|
||||||
|
╰────────────────────────────╯
|
||||||
|
|
||||||
|
|
@ -0,0 +1,10 @@
|
||||||
|
NAME="M-Archy"
|
||||||
|
PRETTY_NAME="M-Archy Linux"
|
||||||
|
ID=m-archy
|
||||||
|
ID_LIKE=arch
|
||||||
|
BUILD_ID=rolling
|
||||||
|
ANSI_COLOR="38;2;23;147;209"
|
||||||
|
HOME_URL="https://git.abdelbaki.eu/The_miro/Dotfiles"
|
||||||
|
DOCUMENTATION_URL="https://git.abdelbaki.eu/The_miro/Dotfiles"
|
||||||
|
SUPPORT_URL="https://git.abdelbaki.eu/The_miro/Dotfiles"
|
||||||
|
LOGO=m-archy
|
||||||
Loading…
Reference in New Issue