-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(bluefin, branding): add bluefin fastfetch configuration directly…
… here (#86)
- Loading branch information
1 parent
b072c49
commit 6c0937a
Showing
2 changed files
with
118 additions
and
1 deletion.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,105 @@ | ||
{ | ||
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json", | ||
"display": { | ||
"separator": " ", | ||
"color": { | ||
"keys": "38;2;87;160;198" | ||
} | ||
}, | ||
"modules": [ | ||
{ | ||
"type": "title", | ||
"key": "", | ||
"color": { | ||
"user": "38;2;87;160;198", | ||
"at": "white", | ||
"host": "bright_green" | ||
} | ||
}, | ||
"break", | ||
{ | ||
"type": "command", | ||
"key": "", | ||
"text": "/usr/libexec/ublue-image-info.sh" | ||
}, | ||
{ | ||
"type": "os", | ||
"key": "", | ||
"format": "{pretty-name}" | ||
}, | ||
{ | ||
"type": "kernel", | ||
"key": "", | ||
"format": "{1} {2}" | ||
}, | ||
{ | ||
"type": "uptime", | ||
"key": "" | ||
}, | ||
{ | ||
"type": "command", | ||
"key": "", | ||
"text": "date -d$(ls -alct / --time-style=full-iso|tail -1|awk '{print $6}') +'Forged on %b %d %G'", | ||
"shell": "/bin/bash" | ||
}, | ||
"break", | ||
{ | ||
"type": "host", | ||
"key": "" | ||
}, | ||
{ | ||
"type": "cpu", | ||
"key": "" | ||
}, | ||
{ | ||
"type": "gpu", | ||
"key": "" | ||
}, | ||
{ | ||
"type": "memory", | ||
"key": "" | ||
}, | ||
{ | ||
"type": "disk", | ||
"key": "" | ||
}, | ||
{ | ||
"type": "display", | ||
"key": "" | ||
}, | ||
{ | ||
"type": "battery", | ||
"key": "" | ||
}, | ||
{ | ||
"type": "gamepad", | ||
"key": "" | ||
}, | ||
"break", | ||
{ | ||
"type": "de", | ||
"key": "" | ||
}, | ||
{ | ||
"type": "wm", | ||
"key": "" | ||
}, | ||
{ | ||
"type": "shell", | ||
"key": "" | ||
}, | ||
{ | ||
"type": "terminal", | ||
"key": "" | ||
}, | ||
{ | ||
"type": "packages", | ||
"key": "" | ||
}, | ||
"break", | ||
{ | ||
"type": "colors", | ||
"paddingLeft": 2 | ||
} | ||
] | ||
} |