diff options
Diffstat (limited to 'releng/airootfs/etc/profile.d')
| -rwxr-xr-x | releng/airootfs/etc/profile.d/autostart.sh | 4 | ||||
| -rw-r--r-- | releng/airootfs/etc/profile.d/raveos-fastfetch.sh | 18 |
2 files changed, 22 insertions, 0 deletions
diff --git a/releng/airootfs/etc/profile.d/autostart.sh b/releng/airootfs/etc/profile.d/autostart.sh new file mode 100755 index 0000000..1dfb4a5 --- /dev/null +++ b/releng/airootfs/etc/profile.d/autostart.sh @@ -0,0 +1,4 @@ +#!/bin/bash +if [[ -z $DISPLAY ]] && [[ $(tty) = /dev/tty1 ]]; then + startx +fi diff --git a/releng/airootfs/etc/profile.d/raveos-fastfetch.sh b/releng/airootfs/etc/profile.d/raveos-fastfetch.sh new file mode 100644 index 0000000..c97dc67 --- /dev/null +++ b/releng/airootfs/etc/profile.d/raveos-fastfetch.sh @@ -0,0 +1,18 @@ +#!/bin/bash +# RaveOS terminal greeting +# Guard: prevent double execution (login shell profile.d + .bashrc) +[[ -n "$_RAVEOS_GREETING_DONE" ]] && return 2>/dev/null +_RAVEOS_GREETING_DONE=1 + +if command -v fastfetch &>/dev/null; then + if [[ "$TERM" == "xterm-kitty" ]]; then + _rows=$(tput lines 2>/dev/null || echo 40) + _logo_h=$(( _rows * 40 / 100 )) + (( _logo_h < 8 )) && _logo_h=8 + (( _logo_h > 24 )) && _logo_h=24 + fastfetch --config ~/.config/fastfetch/config-kitty.jsonc --logo-height "$_logo_h" + unset _rows _logo_h + else + fastfetch + fi +fi |