Change to fastfetch and create initial configs with just logos
This commit is contained in:
parent
68caaeb433
commit
3ca76c52f8
|
@ -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
|
||||
|
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json",
|
||||
"logo": {
|
||||
"source": "Archlinux"
|
||||
},
|
||||
"modules": [
|
||||
]
|
||||
}
|
|
@ -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"
|
||||
]
|
||||
}
|
|
@ -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": [
|
||||
]
|
||||
}
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json",
|
||||
"modules": [
|
||||
]
|
||||
}
|
|
@ -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"
|
||||
]
|
||||
}
|
Loading…
Reference in New Issue