Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Update bluefin-logo to a portrait version #1196

Merged
merged 10 commits into from
Apr 24, 2024
Merged
16 changes: 0 additions & 16 deletions system_files/dx/usr/share/ublue-os/bluefin-logo

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
#!/usr/bin/sh

alias fastfetch="/usr/bin/fastfetch --file /usr/share/ublue-os/aurora-logo.txt --logo-type file --logo-color-1 94 --logo-color-2 95 --logo-color-3 91 --logo-color-4 97 -c /usr/share/ublue-os/ublue-os.jsonc"
alias neofetch="/usr/bin/fastfetch --file /usr/share/ublue-os/aurora-logo.txt --logo-type file --logo-color-1 94 --logo-color-2 95 --logo-color-3 91 --logo-color-4 97 -c /usr/share/ublue-os/ublue-os.jsonc"
alias fastfetch="/usr/bin/fastfetch --file /usr/share/ublue-os/aurora-logo.txt --logo-type file --logo-color-1 94 --logo-color-2 95 --logo-color-3 91 --logo-color-4 97 -c /usr/share/ublue-os/ublue-os.jsonc"
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
alias fastfetch="/usr/bin/fastfetch --file /usr/share/ublue-os/aurora-logo.txt --logo-type file --logo-color-1 94 --logo-color-2 95 --logo-color-3 91 --logo-color-4 97 -c /usr/share/ublue-os/ublue-os.jsonc"
alias neofetch="/usr/bin/fastfetch --file /usr/share/ublue-os/aurora-logo.txt --logo-type file --logo-color-1 94 --logo-color-2 95 --logo-color-3 91 --logo-color-4 97 -c /usr/share/ublue-os/ublue-os.jsonc"
alias fastfetch="/usr/bin/fastfetch --file /usr/share/ublue-os/aurora-logo.txt --logo-type file --logo-color-1 94 --logo-color-2 95 --logo-color-3 91 --logo-color-4 97 -c /usr/share/ublue-os/ublue-os.jsonc"
45 changes: 22 additions & 23 deletions system_files/shared/usr/share/ublue-os/ublue-os.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -3,99 +3,98 @@
"display": {
"separator": "  ",
"color": {
"keys": "bright_cyan"
"keys": "\u001b[38;2;87;160;198;48"
}
},
"modules": [
{
"type": "title",
"key": " ",
"key": "",
"color": {
"user": "cyan",
"user": "\u001b[38;2;87;160;198;48",
"at": "white",
"host": "bright_green"
}
},
"break",
{
"type": "command",
"key": " 󱋩",
"key": "󱋩",
"text": "/usr/libexec/ublue-image-info.sh"
},
{
"type": "os",
"key": " 󰣛"
"key": "󰣛"
},
{
"type": "kernel",
"key": " ",
"key": "",
"format": "{1} {2}"
},
{
"type": "uptime",
"key": " 󰅐"
"key": "󰅐"
},
"break",
{
"type": "command",
"key": " 󰾰",
"key": "󰾰",
"text": "cat /sys/devices/virtual/dmi/id/product_name",
"shell": "/bin/bash"
},
{
"type": "cpu",
"key": " 󰻠"
"key": "󰻠"
},
{
"type": "gpu",
"key": " 󰍛"
"key": "󰍛"
},
{
"type": "memory",
"key": " 󰧑"
"key": "󰧑"
},
{
"type": "disk",
"key": " "
"key": ""
},
{
"type": "display",
"key": " 󰍹"
"key": "󰍹"
},
{
"type": "battery",
"key": " "
"key": ""
},
{
"type": "gamepad",
"key": " 󰖺"
"key": "󰖺"
},
"break",
{
"type": "de",
"key": " 󰕮"
"key": "󰕮"
},
{
"type": "wm",
"key": " "
"key": ""
},
{
"type": "shell",
"key": " "
"key": ""
},
{
"type": "terminal",
"key": " "
"key": ""
},
{
"type": "packages",
"key": " 󰏖"
"key": "󰏖"
},
"break",
{
"type": "colors",
"paddingLeft": 2,
"symbol": "circle"
"paddingLeft": 2
}
]
}
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
#!/bin/sh

alias fastfetch="/usr/bin/fastfetch --logo /usr/share/ublue-os/bluefin-logo -c /usr/share/ublue-os/ublue-os.jsonc"
alias neofetch="/usr/bin/fastfetch --logo /usr/share/ublue-os/bluefin-logo -c /usr/share/ublue-os/ublue-os.jsonc"
BLUEFIN_LOGO_PATH=/usr/share/ublue-os/bluefin-logos/symbols
BLUEFIN_LOGO_RANDOM=$(shuf -e "$(ls -1 ${BLUEFIN_LOGO_PATH})" | head -1)
BLUEFIN_FETCH_LOGO="${BLUEFIN_LOGO_PATH}/${BLUEFIN_LOGO_RANDOM}"

#shellcheck disable=SC2139
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe we can make this run the shuffle each time so that you can run it more than once in a terminal session to see the other dinos. Makes it more fun. :) I'd put the randomization code in the alias.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not necessarily in this PR :-)

alias fastfetch="/usr/bin/fastfetch --logo ${BLUEFIN_FETCH_LOGO} -c /usr/share/ublue-os/ublue-os.jsonc"
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
alias fastfetch="/usr/bin/fastfetch --logo /usr/share/ublue-os/bluefin-logo -c /usr/share/ublue-os/ublue-os.jsonc"
alias neofetch="/usr/bin/fastfetch --logo /usr/share/ublue-os/bluefin-logo -c /usr/share/ublue-os/ublue-os.jsonc"
alias fastfetch="/usr/bin/fastfetch --logo /usr/share/ublue-os/bluefin-logos/symbols/dolly -c /usr/share/ublue-os/ublue-os.jsonc"
16 changes: 0 additions & 16 deletions system_files/silverblue/usr/share/ublue-os/bluefin-logo

This file was deleted.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Loading
Loading