Skip to content

Commit

Permalink
feat(bluefin, branding): add bluefin fastfetch configuration directly…
Browse files Browse the repository at this point in the history
… here (#86)
  • Loading branch information
tulilirockz authored Dec 29, 2024
1 parent b072c49 commit 6c0937a
Show file tree
Hide file tree
Showing 2 changed files with 118 additions and 1 deletion.
14 changes: 13 additions & 1 deletion bluefin/branding/bluefin-branding.spec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

Name: bluefin
Version: 0.1.0
Release: 4%{?dist}
Release: 5%{?dist}
Summary: Bluefin branding

License: CC-BY-CA
Expand Down Expand Up @@ -32,6 +32,7 @@ mv wallpapers/* %{buildroot}%{_datadir}/backgrounds/%{vendor}
mv faces %{buildroot}%{_datadir}/pixmaps/faces/bluefin
mv logos/* %{buildroot}%{_datadir}/pixmaps
mv cli-logos %{buildroot}%{_datadir}/ublue-os/bluefin-logos
mv fastfetch/fastfetch.jsonc %{buildroot}%{_datadir}/ublue-os/fastfetch.jsonc
mv schemas/dconf %{buildroot}%{_sysconfdir}
mv schemas/glib-2.0 %{buildroot}%{_datadir}

Expand Down Expand Up @@ -63,6 +64,17 @@ Logos for CLI applications like Fastfetch
%files cli-logos
%attr(0755,root,root) %{_datadir}/ublue-os/bluefin-logos/*

%package fastfetch
Summary: Fastfetch configuration for Bluefin
License: CC-BY-CA

%description fastfetch
Fastfetch configuration for Bluefin

%files fastfetch
%attr(0755,root,root) %{_datadir}/ublue-os/fastfetch.jsonc


%package schemas
Summary: GNOME Schemas for Bluefin

Expand Down
105 changes: 105 additions & 0 deletions bluefin/branding/fastfetch/fastfetch.jsonc
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
}
]
}

0 comments on commit 6c0937a

Please sign in to comment.