Change to fastfetch and create initial configs with just logos

This commit is contained in:
John Mertz 2024-01-30 21:53:38 -07:00
parent 68caaeb433
commit 3ca76c52f8
6 changed files with 96 additions and 5 deletions

View File

@ -119,11 +119,10 @@ fi
source "$HOME/.cargo/env"
source ~/perl5/perlbrew/etc/bashrc
. "$HOME/.cargo/env"
if [[ -n "$(which neofetch 2> /dev/null)" ]]; then
if [ -n $DISTROBOX ] && [ -e ${HOME}/.dotfiles/neofetch/${DISTROBOX}.conf ]; then
neofetch --config ${HOME}/.dotfiles/neofetch/${DISTROBOX}.conf
if [[ -n "$(which fastfetch 2> /dev/null)" ]]; then
if [ -n $DISTROBOX ] && [ -e ${HOME}/.dotfiles/fastfetch/${DISTROBOX}.jsonc ]; then
fastfetch -C ${HOME}/.dotfiles/fastfetch/${DISTROBOX}.jsonc
else
neofetch --config ${HOME}/.dotfiles/neofetch/config.conf
fastfetch -C ${HOME}/.dotfiles/fastfetch/config.jsonc
fi
fi

View File

@ -0,0 +1,8 @@
{
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json",
"logo": {
"source": "Archlinux"
},
"modules": [
]
}

37
fastfetch/config.jsonc Normal file
View File

@ -0,0 +1,37 @@
{
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json",
"logo": {
"source": "Fedora-sericea"
},
"modules": [
//"title",
//"separator",
//"os",
//"host",
//"kernel",
//"uptime",
//"packages",
//"shell",
//"display",
//"de",
//"wm",
//"wmtheme",
//"theme",
//"icons",
//"font",
//"cursor",
//"terminal",
//"terminalfont",
//"cpu",
//"gpu",
//"memory",
//"swap",
//"disk",
//"localip",
//"battery",
//"poweradapter",
//"locale",
//"break",
//"colors"
]
}

12
fastfetch/debian.jsonc Normal file
View File

@ -0,0 +1,12 @@
{
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json",
"logo": {
"source": "Debian",
"color": {
"1": "bright_red",
"2": "red"
}
},
"modules": [
]
}

5
fastfetch/toolbox.jsonc Normal file
View File

@ -0,0 +1,5 @@
{
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json",
"modules": [
]
}

30
fastfetch/ubuntu.jsonc Normal file
View File

@ -0,0 +1,30 @@
{
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json",
"logo": {
"source": "Ubuntu",
"height": 18,
"printremaining": 0
},
"modules": [
"break",
"break",
"break",
"break",
"break",
"break",
"break",
"break",
"break",
"break",
"break",
"break",
"break",
"break",
"break",
"break",
"break",
"break",
"break",
"break"
]
}