Add fastfetch config
This commit is contained in:
parent
9f1d786097
commit
d95e4e5cca
3 changed files with 53 additions and 1 deletions
42
fastfetch/dot-config/fastfetch/config.jsonc
Normal file
42
fastfetch/dot-config/fastfetch/config.jsonc
Normal file
|
@ -0,0 +1,42 @@
|
||||||
|
{
|
||||||
|
"$schema": "https://raw.githubusercontent.com/fastfetch-cli/fastfetch/refs/heads/dev/doc/json_schema.json",
|
||||||
|
"display": {
|
||||||
|
"brightColor": true,
|
||||||
|
"color": "magenta"
|
||||||
|
},
|
||||||
|
"general": {
|
||||||
|
// Weird stuff happens when using an image for logo source, this fixes it
|
||||||
|
"preRun": "echo"
|
||||||
|
},
|
||||||
|
"logo": {
|
||||||
|
"source": "~/.config/fastfetch/nonbinary_cat.png",
|
||||||
|
"width": 20
|
||||||
|
},
|
||||||
|
"modules": [
|
||||||
|
"title",
|
||||||
|
"separator",
|
||||||
|
"os",
|
||||||
|
"kernel",
|
||||||
|
"uptime",
|
||||||
|
"packages",
|
||||||
|
"shell",
|
||||||
|
"display",
|
||||||
|
"de",
|
||||||
|
"wm",
|
||||||
|
"wmtheme",
|
||||||
|
"theme",
|
||||||
|
"icons",
|
||||||
|
"font",
|
||||||
|
"cursor",
|
||||||
|
"terminal",
|
||||||
|
"terminalfont",
|
||||||
|
"cpu",
|
||||||
|
"gpu",
|
||||||
|
"memory",
|
||||||
|
"disk",
|
||||||
|
"battery",
|
||||||
|
"poweradapter",
|
||||||
|
"break",
|
||||||
|
"colors"
|
||||||
|
]
|
||||||
|
}
|
BIN
fastfetch/dot-config/fastfetch/nonbinary_cat.png
Normal file
BIN
fastfetch/dot-config/fastfetch/nonbinary_cat.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 11 KiB |
12
justfile
12
justfile
|
@ -8,8 +8,10 @@ _echoerror text:
|
||||||
_echowarning text:
|
_echowarning text:
|
||||||
@echo -e "{{ style("warning") }}{{ text }}{{ NORMAL }}"
|
@echo -e "{{ style("warning") }}{{ text }}{{ NORMAL }}"
|
||||||
|
|
||||||
full-auto: packages dev-setup fish-shell helix-editor yazi-file-manager
|
# Full auto installation
|
||||||
|
full-auto: packages dev-setup fish-shell helix-editor yazi-file-manager fastfetch
|
||||||
|
|
||||||
|
# Fuller auto (graphical) installation
|
||||||
full-auto-gui: full-auto kitty-terminal niri-window-manager
|
full-auto-gui: full-auto kitty-terminal niri-window-manager
|
||||||
|
|
||||||
# (Run first unless running full-auto) Setup Flatpak, pacman mirrors, Chaotic AUR, and paru AUR helper
|
# (Run first unless running full-auto) Setup Flatpak, pacman mirrors, Chaotic AUR, and paru AUR helper
|
||||||
|
@ -51,6 +53,14 @@ dev-setup:
|
||||||
@just _echowarning "\n3) Setting git global config"
|
@just _echowarning "\n3) Setting git global config"
|
||||||
git config --global init.defaultBranch "main"
|
git config --global init.defaultBranch "main"
|
||||||
|
|
||||||
|
[group("other")]
|
||||||
|
fastfetch:
|
||||||
|
@just _echowarning "1) Installing fastfetch and dependencies"
|
||||||
|
paru -S fastfetch imagemagick
|
||||||
|
|
||||||
|
@just _echowarning "\n2) Stowing fastfetch config"
|
||||||
|
stow --dotfiles -S fastfetch
|
||||||
|
|
||||||
# fish shell and plugins
|
# fish shell and plugins
|
||||||
[group("essentials")]
|
[group("essentials")]
|
||||||
fish-shell:
|
fish-shell:
|
||||||
|
|
Loading…
Add table
Reference in a new issue