feature: style update, waybar update, funny fastfetch update and other fixes

This commit is contained in:
2026-06-19 13:57:23 +03:00
parent 9d23965acc
commit 50d5c4fbd9
222 changed files with 8109 additions and 1219 deletions
+1
View File
@@ -1,3 +1,4 @@
#!/bin/bash
# bash history # bash history
export HISTCONTROL=ignoreboth export HISTCONTROL=ignoreboth
export HISTFILESIZE=-1 export HISTFILESIZE=-1
+18 -7
View File
@@ -1,3 +1,4 @@
#!/bin/bash
# includes # includes
if [ -f "$HOME/.bashrc" ]; then if [ -f "$HOME/.bashrc" ]; then
. "$HOME/.bashrc" . "$HOME/.bashrc"
@@ -7,10 +8,20 @@ if [ -f "$HOME/.bash_exports" ]; then
. "$HOME/.bash_exports" . "$HOME/.bash_exports"
fi fi
if [ -n "$SSH_CONNECTION" ]; then
# bash decorations echo -e "\e[33m\e[30m⛧ \e[31m Domain expansion.."
# arch-linux default: case $(uname -s) in
# PS1='[\u@\h \W]\$ ' Darwin) os="macOS $(sw_vers -productversion 2>/dev/null)" ;;
# servers: Linux)
# PS1='|\u@\h \W|\$ ' if [ -f "$HOME/.os-release" ]; then
PS1='[\u@\h \W]\$ ' . "$HOME/.os-release" 2>/dev/null && os="$PRETTY_NAME"
else
. /etc/os-release 2>/dev/null && os="$PRETTY_NAME"
fi
[ -z "$os" ] && os="Linux $(uname -r)"
;;
Haiku) os="Haiku $(uname -r)" ;;
*) os="$(uname -s) $(uname -r)" ;;
esac
echo -e "\e[30m⛧ \e[33m\e[31m Driver: $os\e[0m"
fi
+18 -14
View File
@@ -1,24 +1,28 @@
#!/bin/bash
# History append # History append
shopt -s histappend shopt -s histappend
# Prompt # Prompt
set_prompt() { set_prompt() {
local EXIT_STATUS=$? local EXIT_STATUS=$?
local SUCCESS="\[\e[32m\]" local SUCCESS="\[\e[32m\]"
local ERROR="\[\e[34m\]" local ERROR="\[\e[34m\]"
local RESET="\[\e[0m\]" local RESET="\[\e[0m\]"
history -a history -a
history -c history -c
history -r history -r
if [ $EXIT_STATUS -eq 0 ]; then if [ $EXIT_STATUS -eq 0 ]; then
local COLOR=$SUCCESS local COLOR=$SUCCESS
else else
local COLOR=$ERROR local COLOR=$ERROR
fi fi
# PS1="[\u@\h \W]${COLOR}\\\$${RESET} " # PS1="[\u@\h \W]${COLOR}\\\$${RESET} "
PS1="[\u@\h \! \W]${COLOR}\\\$${RESET} " PS1="[\u@\h \! \W]${COLOR}\\\$${RESET} "
if [ -n "$SSH_CONNECTION" ]; then
PS1="|\u@\h \! \W|${COLOR}\\\$${RESET} "
fi
} }
PROMPT_COMMAND=set_prompt PROMPT_COMMAND=set_prompt
+79 -10
View File
@@ -1,3 +1,20 @@
#!/bin/bash
# Binds
bind '"\C-f": forward-search-history'
bind '"\C-k": history-search-backward'
bind '"\C-j": history-search-forward'
# bind ctrl+; to enter
bind '"\e[24;5~": accept-line'
# ctrl+y to copy current command in line
kitty_copy_line() {
echo -n "$READLINE_LINE" | wl-copy
}
bind -x '"\C-y": kitty_copy_line'
# Aliases
# aliases aliases # aliases aliases
alias aliasm='alias |comm -13 <(grep -h ^alias ~/.bashrc ~/.bash_private | sort) -' alias aliasm='alias |comm -13 <(grep -h ^alias ~/.bashrc ~/.bash_private | sort) -'
alias aliasd='aliasm |diff -u --color ~/.bash_aliases -' alias aliasd='aliasm |diff -u --color ~/.bash_aliases -'
@@ -13,6 +30,9 @@ alias l='ls --color=auto'
alias s='ls --color=auto' alias s='ls --color=auto'
# cd aliases # cd aliases
alias ..='cd ..'
alias ...='cd ../..'
alias ....='cd ../../..'
alias cr='cd ..' alias cr='cd ..'
alias cdp='cd ~/Programming' alias cdp='cd ~/Programming'
alias cds='cd ~/services' alias cds='cd ~/services'
@@ -45,9 +65,11 @@ alias cfgdunst='(cd ~/.config/dunst && nvim .)'
alias cfgyazi='(cd ~/.config/yazi && nvim .)' alias cfgyazi='(cd ~/.config/yazi && nvim .)'
alias cfgfastfetch='(cd ~/.config/fastfetch && nvim .)' alias cfgfastfetch='(cd ~/.config/fastfetch && nvim .)'
alias cfgbash='(cd ~/.config/bash && nvim .)' alias cfgbash='(cd ~/.config/bash && nvim .)'
alias cfgquickshell='(cd ~/.config/quickshell && nvim .)' alias cfgtmux='(cd ~/.config/tmux && nvim .)'
alias cfgdriftwm='(cd ~/.config/driftwm && nvim .)'
alias cfgscripts='(cd ~/config-scripts && nvim .)' alias cfgscripts='(cd ~/config-scripts && nvim .)'
alias cfgquickshell='(cd ~/.config/quickshell && nvim .)'
alias cfgxfce='(cd ~/.config/xfce4 && nvim .)'
alias cfgdriftwm='(cd ~/.config/driftwm && nvim .)'
alias script='(cd ~/scripts && nvim .)' alias script='(cd ~/scripts && nvim .)'
alias scripts='(cd ~/scripts && nvim .)' alias scripts='(cd ~/scripts && nvim .)'
alias notes='(cd ~/Documents/obsidian/Notes && nvim .)' alias notes='(cd ~/Documents/obsidian/Notes && nvim .)'
@@ -56,11 +78,20 @@ alias notes='(cd ~/Documents/obsidian/Notes && nvim .)'
alias cleartmp='rm -rf ~/tmp && mkdir -p ~/tmp/daily' alias cleartmp='rm -rf ~/tmp && mkdir -p ~/tmp/daily'
alias tmp='(cd ~/tmp/daily && nvim $(date +"%Y-%m-%d-%H").md)' alias tmp='(cd ~/tmp/daily && nvim $(date +"%Y-%m-%d-%H").md)'
alias tmpmd='(cd ~/tmp/daily && nvim $(date +"%Y-%m-%d-%H").md)' alias tmpmd='(cd ~/tmp/daily && nvim $(date +"%Y-%m-%d-%H").md)'
alias tmpraw='(cd ~/tmp/daily && nvim $(date +"%Y-%m-%d-%H"))'
alias tmppy='(cd ~/tmp/daily && nvim $(date +"%Y-%m-%d-%H").py)' alias tmppy='(cd ~/tmp/daily && nvim $(date +"%Y-%m-%d-%H").py)'
alias tmppy-run='(cd ~/tmp/daily && python ./$(date +"%Y-%m-%d-%H").py)'
alias tmpsh='(cd ~/tmp/daily && nvim $(date +"%Y-%m-%d-%H").sh)' alias tmpsh='(cd ~/tmp/daily && nvim $(date +"%Y-%m-%d-%H").sh)'
alias tmpsh-run='(cd ~/tmp/daily && chmod +x ./$(date +"%Y-%m-%d-%H").sh && ./$(date +"%Y-%m-%d-%H").sh)'
# productivity aliases # productivity aliases
alias sudo='sudo '
alias s='sudo '
alias profile='source ~/.bash_profile' alias profile='source ~/.bash_profile'
alias host='echo $HOSTNAME'
alias pi='ping google.com'
# modes
# rewrite "modes" to scripts # rewrite "modes" to scripts
alias mode-local='cat ~/.config/nvim/lua/templates/clipboard/local-clipboard.lua > ~/.config/nvim/lua/config/clipboard.lua' alias mode-local='cat ~/.config/nvim/lua/templates/clipboard/local-clipboard.lua > ~/.config/nvim/lua/config/clipboard.lua'
alias mode-remote='cat ~/.config/nvim/lua/templates/clipboard/remote-clipboard.lua > ~/.config/nvim/lua/config/clipboard.lua' alias mode-remote='cat ~/.config/nvim/lua/templates/clipboard/remote-clipboard.lua > ~/.config/nvim/lua/config/clipboard.lua'
@@ -72,16 +103,23 @@ alias wifi-reload-on='nmcli r wifi on'
# kitty aliases # kitty aliases
alias ssh='kitty +kitten ssh' alias ssh='kitty +kitten ssh'
alias sshr='command ssh'
alias edit-in-kitty='kitten edit-in-kitty' alias edit-in-kitty='kitten edit-in-kitty'
# yay/pacman aliases # yay/pacman aliases
alias pzf='yay -Qq | fzf --preview '\''yay -Qil {}'\'' --layout reverse --bind '\''enter:execute(yay -Qil {} | less)'\'' --bind '\''ctrl-r:execute(yay -R {} | less)'\''' alias pzf='yay -Qq | fzf --preview '\''yay -Qil {}'\'' --layout reverse --bind '\''enter:execute(yay -Qil {} | less)'\'' --bind '\''ctrl-r:execute(yay -R {} | less)'\'''
alias paclean='sudo pacman -Rs ' alias paclean='sudo pacman -Rs '
alias update='yay --noconfirm' alias update='yay --noconfirm'
alias yayc='yay --editmenu'
# grep aliases
alias agrep='ps aux | grep --color'
alias g='grep --color'
# fastfetch aliases # fastfetch aliases
alias fastfetch='~/.config/fastfetch/detect_os.py' alias fastfetch='~/.config/fastfetch/detect_os.py'
alias ff='~/.config/fastfetch/detect_os.py' alias ff='~/.config/fastfetch/detect_os.py'
alias ffr='command fastfetch'
# curl aliases # curl aliases
alias post='curl -X POST -H "Content-Type: application\json"' alias post='curl -X POST -H "Content-Type: application\json"'
@@ -100,6 +138,9 @@ alias swagger-docs='sudo host-docs'
alias x='sudo chmod +x' alias x='sudo chmod +x'
alias y='yazi' alias y='yazi'
alias n='nvim .' alias n='nvim .'
alias t='tmux'
alias a='abduco'
alias al='if [ -n "$A_SESSION_NAME" ]; then abduco -l | sed "s/.*$A_SESSION_NAME.*/\x1b[32m&\x1b[0m/"; else abduco -l; fi'
alias py='python' alias py='python'
alias pyv='python --version' alias pyv='python --version'
alias clipclear='cliphist wipe' alias clipclear='cliphist wipe'
@@ -107,24 +148,49 @@ alias download='aria2c -x16 -s16'
alias scrcpy-def='scrcpy -S --no-audio -K' alias scrcpy-def='scrcpy -S --no-audio -K'
alias share='python3 -m http.server' alias share='python3 -m http.server'
alias globalshare='(cd ~/Share && python3 -m http.server)' alias globalshare='(cd ~/Share && python3 -m http.server)'
alias agrep='ps aux | grep' alias clearlock='faillock --user YOUR_USERNAME --reset'
# fun aliases # fun aliases
alias please='sudo '
alias mm='unimatrix -f -a -s 92 -l coo -c yellow' alias mm='unimatrix -f -a -s 92 -l coo -c yellow'
alias mmbee='unimatrix -f -a -s 86 -u '\''bee'\'' -c yellow' alias mmbee='unimatrix -f -a -s 86 -u '\''bee'\'' -c yellow'
alias mmbeesquit='unimatrix -f -s 86 -u '\''beesquit'\'' -c yellow' alias mmbeesquit='unimatrix -f -s 86 -u '\''beesquit'\'' -c yellow'
alias mmsnow='unimatrix -u ❄❆❅᪥𑁍⭒*❄❆❅᪥* -c white -a' alias mmsnow='unimatrix -u ❄❆❅᪥𑁍⭒*❄❆❅᪥* -c white -a'
alias mute-light-disable='sudo sh -c "echo 0 > /sys/class/leds/platform::micmute/brightness"'
alias quick-info='echo "Cores: $(lscpu | awk "/Core\(s\) per socket:/ {print \$4}") | Threads: $(nproc) | RAM: $(free -h | awk "/Mem:/ {print \$2}")"'
# extra
# functions # Functions
meomap() { scannet() {
for net in "$@"; do for net in "$@"; do
sudo nmap -sn "$net/24" sudo nmap -sn "$net/24"
done done
} }
# additional aliases setos() {
if [ -z "$1" ]; then
echo "Error: Please provide a source file path."
echo "Usage: setos <source_file>"
return 1
fi
cp "$1" "$HOME/.os-release"
}
aa() {
abduco -e ^d -a "$@"
printf "\033[?1049l"
}
look-into-kitty() {
KITTY_RAW_PID="$@"
KITTY_PID="${KITTY_RAW_PID#kitty-}"
ABDUCO_PID=$(ps -ef | grep abduco | grep -v grep | grep "$KITTY_PID" | awk '{print $2}' | head -n 1)
pstree -p "$ABDUCO_PID"
}
# Imports
if [ -f "$HOME/.bash_private" ]; then if [ -f "$HOME/.bash_private" ]; then
. "$HOME/.bash_private" . "$HOME/.bash_private"
fi fi
@@ -134,3 +200,6 @@ fi
if [ -f "$HOME/.bash_prompt" ]; then if [ -f "$HOME/.bash_prompt" ]; then
. "$HOME/.bash_prompt" . "$HOME/.bash_prompt"
fi fi
if [ -f "$HOME/.multiplexer" ]; then
. "$HOME/.multiplexer"
fi
@@ -0,0 +1,20 @@
$1HHHHH HHHHH
HHHHH HHHHH
HHHHH HHHHH
HHHHH HHHHH
HHHHH HHHHH
HHHHH. .HHHHH
HHHHHHH. .HHHHHHH
HHHHHHHHHH#o.s#HHHHHHHHHH
HHHH` `HHHH
HH $2HelixOS$1 HH
HH $3> Core$1 HH
HHHH. .HHHH
HHHHHHHHHH#o`s#HHHHHHHHHH
HHHHHHH` `HHHHHHH
HHHHH` `HHHHH
HHHHH HHHHH $4.ooo. .ssss
$1HHHHH HHHHH $4o o s.
$1HHHHH HHHHH $4o o `sss.
$1HHHHH HHHHH $4o o .s
$1HHHHH HHHHH $4`ooo` ssss`
@@ -0,0 +1,21 @@
$1HHHHH $5*$1 $5$1HHHHH
HHHHH $5☆$1 HHHHH
HHHHH $5⟡$1 HHHHH
HHHHH $5.$1 HHHHH
HHHHH $5⊹$1 $5*$1 HHHHH
HHHHH. .HHHHH
HHHHHHH. $5✴︎$1 .HHHHHHH
HHHHHHHHHH#o.s#HHHHHHHHHH
HHHH` `HHHH
HH $2HelixOS$1 HH $5⟡$1
$5*$1 HH $3> Genesis$1 HH
HHHH. .HHHH
HHHHHHHHHH#o`s#HHHHHHHHHH
HHHHHHH` `HHHHHHH
HHHHH` $5$1 `HHHHH
HHHHH $5✴︎$1HHHHH $4 -`- .---*
$1HHHHH $5o$1 HHHHH $4/ \ |.
$1HHHHH $5✦$1 HHHHH $4[ * ] `---.
$1HHHHH $5˖$1 $5.$1 HHHHH $4\ / .|
$1HHHHH HHHHH $4 -.- *---`
@@ -0,0 +1,19 @@
$1HHHHH HHHHH
HHHHH HHHHH
HHHHH HHHHH
HHHHH HHHHH
HHHHH HHHHH
HHHHH. .HHHHH
HHHHHHH. .HHHHHHH
HHHHHHHHHH#o.s#HHHHHHHHHH
HHHH` `HHHH
HH $2HelixOS$1 HH
HHHH. .HHHH
HHHHHHHHHH#o`s#HHHHHHHHHH
HHHHHHH` `HHHHHHH
HHHHH` `HHHHH
HHHHH HHHHH $3.ooo. .ssss
$1HHHHH HHHHH $3o o s.
$1HHHHH HHHHH $3o o `sss.
$1HHHHH HHHHH $3o o .s
$1HHHHH HHHHH $3`ooo` ssss`
@@ -0,0 +1,20 @@
$1HHH%$5%%%%%+$1 HH@HL
HHHH #HHH|
H#HH HH@HH
HH0H $5-+HHHHH$1HHH%
HH@@N $5.$1 HHH%
H&HHH. $5..$1 .||&HH
#|#HH$5..$1 .@HHHH&
#HH##HHH@#o.s#HHHHH0O H
HHH` `HHH
# $2HelixOS$1 %
@ $3! Overclock$1 H
H@H. .HHH
HHHT HHHH#o`s####### HR
#@HHHH` $5##$1 |HH R
H||HH` $5##$1 `HH H
HHMH $5#$1 $5-+@@@$1@H|H $4.%#%. .###%
$1HHH@H $5##$1 THHH $4% % #.
$1FHHHT $5#$1 HERRH $4O$5#$4 # `#S#.
$1 HHH $5H$1 $5+$1 HHH#H $4% % ^ .#
$1HTHH TH @H $4`%#%` %###`
@@ -0,0 +1,20 @@
$1HHHHH HHHHH
H$5[T]$1H H$5[T]$1H
H$5[|]$1H H$5[|]$1H
H$5[|]$1H H$5[|]$1H
H$5[|]$1H H$5[|]$1H
H$5[|]$1HH. .HH$5[|]$1H
H$5[⟂]$1HHHHH.. ..HHHHH$5[⟂]$1H
HHHHHHHHHH#####HHHHHHHHHH
`HHHH` ``` `HHHH`
`HH` $2HelixOS$1 `HH`
.HH. $3> Overlord$1 .HH.
.HHHH. ,,, .HHHH.
HHHHHHHHHH#####HHHHHHHHHH
H$5[T]$1HHHHH`` ``HHHHH$5[T]$1H
H$5[|]$1HH` `HH$5[|]$1H
H$5[|]$1H H$5[|]$1H $4,OOO, ,SSSS
$1H$5[|]$1H H$5[|]$1H $4O` `O S,
$1H$5[|]$1H H$5[|]$1H $4O O `SSS,
$1H$5[⟂]$1H H$5[⟂]$1H $4O, ,O ,S
$1HHHHH HHHHH $4`OOO` SSSS`
@@ -0,0 +1,20 @@
$1 /HHHH HHHH\
/HHHH $5 ^ $1 HHHH\
/HHHH $5 /|\ $1 HHHH\
HHHHH $5 / | \ $1 HHHHH
HHHHH $5/ | \$1 HHHHH
HHHHH. $5`-.!.~'$1 .HHHHH
HHHHHHH. .HHHHHHH
\HHHHHHHHH#o.s#HHHHHHHHH/
\HHH` `HHH/
\H $2HelixOS$1 H/
/H $3> Prism$1 H\
/HHH. .HHH\
/HHHHHHHHH#o`s#HHHHHHHHH\
HHHHHHH` `HHHHHHH
HHHHH` `HHHHH
HHHHH HHHHH $4/o`o\ /ssss
$1HHHHH HHHHH $4o o s.
$1\HHHH HHHH/ $4o o \sss\
$1 \HHHH HHHH/ $4o o .s
$1 \HHHH HHHH/ $4\o.o/ ssss/
@@ -0,0 +1,20 @@
$1.'. .'.
| | | |
| | | |
| | | |
| | | |
| \ / |
| \ / |
\ \___________/ /
\ /
\ $2HelixOS$1 /
/ $3> Surgery$1 \
/ ___________ \
/ / \ \
| / \ |
| / \ |
| | | | $4 _-_ .----
$1| | | | $4/ \ |
$1| | | | $4| | `---.
$1| | | | $4\ / |
$1`,` `,` $4 `-` ----`
@@ -0,0 +1,20 @@
$1 vvvvv vvvvv
vvvvv vvvvv
vvvvv vvvvv
vvvvv vvvvv
vvvvv vvvvv
vv$5/$1vv. .vv$5/$1vv
v$5\*\$1vvv. .vvv$5\*\$1v
vv$5/$1vvvvvvv#o.s#vvvvvvv$5/$1vv
vvvv` `vvvv
vv $2HelixOS$1 vv
vv $3> Vortex$1 vv
vvvv. .vvvv
vv$5/$1vvvvvvv#o`s#vvvvvvv$5/$1vv
v$5\*\$1vvv` `vvv$5\*\$1v
vv$5/$1vv` `vv$5/$1vv
vvvvv vvvvv $4.ooo. .ssss
$1 vvvvv vvvvv $4o / o s.
$1 vvvvv vvvvv $4o\*\o `sss.
$1 vvvvv vvvvv $4o / o .s
$1vvvvv vvvvv $4`ooo` ssss`
@@ -0,0 +1,20 @@
$1h h h h
h h h h
H H H H
H H H H
H H H H
H H. .H H
H H. .H H
H .HHH#-.-#HHH. H
H H` `H H
`H $2HelixOS$1 H`
.H $3> Wisp$1 H.
H H. .H H
H `HHH#-`-#HHH` H
H H` `H H
H H` `H H
H H H H $4.*o*. .***s
$1H H H H $4* * *
$1H H H H $4o o `***.
$1h h h h $4* * *
$1h h h h $4`*o*` s***`
@@ -0,0 +1,16 @@
$1 ___
$1 / $2I$1\
$1 ,--( )--.
$1 ___/ $5I$1 \___/ $3I$1 \___
$1 / \ / \ / \
$1( $3I$1 )--($4I$1 )--( $2I$1 )
$1 \___/ $4I$1 \___/ $5I$1 \___/
$1 / \ / \ / \
$1( $2I$1 )--( $2I$1 )--( $4I$1 )
$1 \___/ \___/ $3I$1 \___/
$1 / $4I$1 \ $5I$1 / \ / $2I$1 \
$1( )--( $5I$1 )--( )
$1 \___/ \___/ \___/
$1 \ $3I$1 / $4I$1 \ $2I$1 /
$1 `--( )--'
$1 \___/
@@ -0,0 +1,17 @@
$1 .4 .4
.4 wWWWw wWWWw .4 .4
.wWWw.wWWWWWWWWWWWWWWWWWWw.wWWWw
.wWWWW$2&&&&&&&&&$3LVTHNLVTHN$2UUUUUU$1WWWWWw
$2####&&& $3LVTHNLVTHNLVTHN$2 UUUUUU
### & $3LVTHN $4.$3 LVTHN$2 UUU##
## & $3LVTHN $4oo$3 LVTHN$2 U #
## U&& $3LVTHN $4ooot$3 LVTHN$2 UU ##
## UU &&$3LVTHN $4coooo$3 LVTHN$2 UU #
&## U $3LVTHN $4ooooo$3 LVTHN$2&&&U #
&&# U $3LVTHN $4oooog$3 LVTHN$2 &&& #
& ##UU $3LVTHN $4qooo$3 LVTHN$2 && ##
& UU $3LVTHN $4oo$3 LVTHN$2 &&&#
&& UUUUUU$3LVTHN $4`$3 LVTHN$2 &&
& $3LVTHNLVTHNLVTHN$2 &&
&&&&&& $3LVTHNLVTHN$2 &&&&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&
@@ -0,0 +1,17 @@
$1.###############################.
$1##$2\ | /$1##
$1## $2\ $3LVTH$2A$3LVTHN $2/$1 ##
$1## $2\ $3LVTHNLVTHNLVTHN $2/$1 ##
$1## $2\ $3LVTHN $4,$3 LVTHN $2/$1 ##
$1## $2R$3VTHN $4oo$3 LVTH$2K $1##
$1## $3LVTHN $4ooot$3 LVTHN $1##
$1## $3LVTHN $4coooo$3 LVTHN $1##
$1## $3LVTHN $4ooooo$3 LVTHN $1##
$1## $3LVTHN $4oooog$3 LVTHN $1##
$1## $3LVTHN $4qooo$3 LVTHN $1##
$1## $2G$3VTHN $4oo$3 LVTH$2Q $1##
$1## $2/ $3LVTHN $4`$3 LVTHN $2\$1 ##
$1## $2/ $3LVTHNLVTHNLVTHN $2\$1 ##
$1## $2/ $3LVTHN$2Y$3VTHN $2\$1 ##
$1##$2/ | \$1##
$1`###############################`
@@ -0,0 +1,17 @@
$1 .4 .4
.4 wWWWw wWWWw .4 .4
.wWWw.wWWWWWWWWWWWWWWWWWWw.wWWWw
.wWWWW$2&&&&&&&&&$3LVTHNLVTHN$2UUUUUU$1WWWWWw
$2####&&& $3LVTHNLVTHNLVTHN$2 UUUUUU
### & $3LVTHN $4.$3 LVTHN$2 UUU##
## & $3LVTHN $4oo$3 LVTHN$2 U #
## U&& $3LVTHN $4o\/t$3 LVTHN$2 UU ##
## UU &&$3LVTHN $4cL/oo$3 LVTHN$2 UU #
&## U $3LVTHN $4o/\oo$3 LVTHN$2&&&U #
&&# U $3LVTHN $4/oo\g$3 LVTHN$2 &&& #
& ##UU $3LVTHN $4qo/o$3 LVTHN$2 && ##
& UU $3LVTHN $4Xo$3 LVTHN$2 &&&#
&& UUUUUU$3LVTHN $4`$3 LVTHN$2 &&
& $3LVTHNLVTHNLVTHN$2 &&
&&&&&& $3LVTHNLVTHN$2 &&&&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&
@@ -0,0 +1,15 @@
$2UUUUUUUUUUUUUUUUUU
$2&&&&&& $3LVTHNLVTHN$2 UUU
$2####&&& $3LVTHNLVTHNLVTHN$2 UUUU
### & $3LVTHN $4.$3 LVTHN$2 UU##
## & $3LVTHN $4oo$3 LVTHN$2 U #
## U&& $3LVTHN $4ooot$3 LVTHN$2 UU ##
## UU &&$3LVTHN $4coooo$3 LVTHN$2 UU #
&## U $3LVTHN $4ooooo$3 LVTHN$2&&&U #
&&# U $3LVTHN $4oooog$3 LVTHN$2 &&& #
& ##UU $3LVTHN $4qooo$3 LVTHN$2 && ##
& UU $3LVTHN $4oo$3 LVTHN$2 &&&#
&& UUUUUU$3LVTHN $4`$3 LVTHN$2 &&
& $3LVTHNLVTHNLVTHN$2 &&
&&&&&& $3LVTHNLVTHN$2 &&&&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&
@@ -0,0 +1,17 @@
$1 .4 .4
.4 wWWWw wWWWw .4 .4
.wWWw.wWWWWWWWWWWWWWWWWWWw.wWWWw
.wWWWW$2&&&&&&&&&$3LVTHNLVTHN$2UUUUUU$1WWWWWw
$2####&&& $3LVTHNLVTHNLVTHN$2 UUUUUU
### & $3LVTHN $4.$3 LVTHN$2 UUU##
## & $3LVTHN $4oo$3 LVTHN$2 U #
## U&& $3LVTHN $4ooot$3 LVTHN$2 UU ##
## UU &&$3LVTHN $4coooo$3 LVTHN$2 UU #
&## U $3LVTHN $4ooooo$3 LVTHN$2&&&U #
&&# U $3LVTHN $4oooog$3 LVTHN$2 &&& #
& ##UU $3LVTHN $4qooo$3 LVTHN$2 && ##
& UU $3LVTHN $4oo$3 LVTHN$2 &&&#
&& UUUUUU$3LVTHN $4`$3 LVTHN$2 &&
& $3LVTHNLVTHNLVTHN$2 &&
&&&&&& $3LVTHNLVTHN$2 &&&&
&&&&&&&&&&&&&&&&&&&&&&&&&&&&
@@ -0,0 +1,15 @@
$2******************
$2****** $3LVTHNLVTHN$2 ***
$2******* $3LVTHNLVTHNLVTHN$2 ****
*** * $3LVTHN $4.$3 LVTHN$2 ****
** * $3LVTHN $4oo$3 LVTHN$2 * *
* *** $3LVTHN $4o^ot$3 LVTHN$2 ** **
* ** **$3LVTHN $4c/ \o$3 LVTHN$2 ** *
** * $3LVTHN $4< $5*$4 >$3 LVTHN$2**** *
* * * $3LVTHN $4o\ /g$3 LVTHN$2 *** *
* *** $3LVTHN $4qovo$3 LVTHN$2 ** **
* ** $3LVTHN $4oo$3 LVTHN$2 ****
** ******$3LVTHN $4`$3 LVTHN$2***** **
* $3LVTHNLVTHNLVTHN$2 ** **
****** $3LVTHNLVTHN$2 ****
****************************
@@ -0,0 +1,12 @@
$1 _____________________________
/__________________________ /\
/ _________________________/ / /
/ / / / / /
/ / / $2dEGGEb$1 $4/\$1 / / /
/ / / $2dGP.dGP$1 $4/_/\$1 / / /
/ / / $2dGGGGP"$1 $4/ /\$1 / / /
/ / / $2dGP $3Paragon$1 / / /
/ / / $2dEP $3Apex$1 / / /
/ / /______________________/_/ /
/ / /__________________________/
\/____________________________/
@@ -0,0 +1,12 @@
$1 _____________________________
/__________________________ /\
/ _________________________/ / /
/ / / / / /
/ / / $2dEGGEb$1 $5*$4.$1 / / /
/ / / $2dGP.dGP$1 $4\$1 / / /
/ / / $2dGGGGP"$1 $4/$1 / / /
/ / / $2dGP $3Paragon$1 / / /
/ / / $2dEP $3Apogee$1 / / /
/ / /______________________/_/ /
/ / /__________________________/
\/____________________________/
@@ -0,0 +1,12 @@
$1 _____________________________
/__________________________ /\
/ _________________________/ / /
/ / / $4The God is Paragon$1 / / /
/ / / $2.paaaag$1 / / /
/ / / $2/dGP$3*$2dGP$1 / / /
/ / / $2/dGGGGP"$1 / / /
/ / / $2/dGP $3Paragon$1 / / /
/ / / $2/dEP $3Apotheosis$1 / / /
/ / /______________________/_/ /
/ / /__________________________/
\/____________________________/
@@ -0,0 +1,12 @@
$1 _____________________________
/__________________________ /\
/ _________________________/ / /
/ / / / / /
/ / / $2,----.$1 / / /
/ / / $2/ <#> /$1 / / /
/ / / $2/ ,___+$1 / / /
/ / / $2/ / $3Paragon$1 / / /
/ / / $2/_/ $3Armada$1 / / /
/ / /______________________/_/ /
/ / /__________________________/
\/____________________________/
@@ -0,0 +1,12 @@
$1 _____________________________
/__________________________ /\
/ _________________________/ / /
/ / / / / /
/ / / $2.dGGEb$1 / / /
/ / / $2-<= .GP$1 / / /
/ / / $2.dGGGP"$1 / / /
/ / / $2dGP $3Paragon$1 / / /
/ / / $2dEP $3Eclectic$1 / / /
/ / /______________________/_/ /
/ / /__________________________/
\/____________________________/
@@ -0,0 +1,12 @@
$1 _____________________________
/__________________________ /\
/ _________________________/ / /
/ / / / / /
/ / / $2.dGGEb$1 / / /
/ / / $2 .GP$1 / / /
/ / / $2.dGGGP"$1 / / /
/ / / $2dGP $3Paragon$1 / / /
/ / / $2dEP $3Eclectic$1 / / /
/ / /______________________/_/ /
/ / /__________________________/
\/____________________________/
@@ -0,0 +1,12 @@
$1 _____________________________
/__________________________ /\
/ _________________________/ / /
/ / / .o. / / /
/ / / $4/$2E$4/$2P$4\$2b$1 / / /
/ / / $2d$4`$2P$4!$2P$4`$2P$1 / / /
/ / / $2dGGGGP"$1 / / /
/ / / $2dGP $3Paragon$1 / / /
/ / / $2dEP $3Falcon$1 / / /
/ / /______________________/_/ /
/ / /__________________________/
\/____________________________/
@@ -0,0 +1,12 @@
$1 _____________________________
/__________________________ /\
/ _________________________/ / /
/ / / / / /
/ / / $2>EGGE\\$1 / / /
/ / / $2>GP dG//$1 / / /
/ / / $2>GGGGG//$1 / / /
/ / / $2>GP $3Paragon$1 / / /
/ / / $2>EP $3Falcon$1 / / /
/ / /______________________/_/ /
/ / /__________________________/
\/____________________________/
@@ -0,0 +1,12 @@
$1 _____________________________
/__________________________ /\
/ _________________________/ / /
/ / / / / /
/ / / $2.-``-h$1 / / /
/ / / $2d (*) P$1 / / /
/ / / $2dh._.-"$1 / / /
/ / / $2dHP $3Paragon$1 / / /
/ / / $2dEP $3Hyperion$1 / / /
/ / /______________________/_/ /
/ / /__________________________/
\/____________________________/
@@ -0,0 +1,12 @@
$1 _____________________________
/__________________________ /\
/ _________________________/ / /
/ / / / / /
/ / / $2dEGGEb$1 / / /
/ / / $2dGP.dGP$1 / / /
/ / / $2dGGGGP"$1 / / /
/ / / $2dGP $3Paragon$1 / / /
/ / / $2dEP $3Anytime OS$1 / / /
/ / /______________________/_/ /
/ / /__________________________/
\/____________________________/
@@ -0,0 +1,16 @@
$1 .
\`-.
\ `-._
\ `-._
y--. `-._
/ $2.,$1 \___
| \ $2'`$1 / \
| )--( $2..,$1 )------.
| / $2,,$1 \___/ ,-`
| \ $2""$1 / ,-
| r--' ,-'
| / ,-
| / ,-
| / '
|/ $3Paraphernalia OS
$1 ` $4Arcade Edition
@@ -0,0 +1,18 @@
$1 ,
|\
||\_
|||\\-._
||||\\\\\-._
|||||$2y--.$1\\\\-._
||||$2/ \$1\\\\\\\-._
||||$2\ / \$1\\\\\\\-._
|||||$2)--( )$1---------"
||||$2/ \___/$1=====-`
||||$2\ /$1======,-
|||||$2r--'$1====,-'
||||/======,-
|||/=====,-
||/===,-'
|/==,- $3Paraphernalia OS
$1 /=-' $4Conduit Edition
$1 /'
@@ -0,0 +1,18 @@
$1 ,
|\
| \_
| \`-._
| `-._
| $2,--.$1 `-._
| $2/ \___$1 `-._
| $2\ / \$1 `-._
| $2)--( )$1 ------"
| $2/ \___/$1 ,-`
| $2\ /$1 ,-
| $2`--'$1 ,-'
| ,-
| / ,-
| / ,-'
|/ ,- $3Paraphernalia OS
$1 /,-' $4Core Edition
$1 /'
@@ -0,0 +1,18 @@
$1 ,
|\
| \_
| \`-._
| \ `-._
| $2y--.$1 `-._
| $2/ \___$1 `-._
| $2\ $5`$2 / \$1 `-._
| $2)--( $5*$2 )$1---------"
| $2/ $5,$2 \___/$1 ,-`
| $2\ /$1 ,-
| $2r--'$1 ,-'
| / ,-
| / ,-
| / ,-'
|/ ,- $3Paraphernalia OS
$1 /,-' $4Enterprise Edition
$1 /'
@@ -0,0 +1,18 @@
$1 \ /
\ /
\ /
\ /
\ /
$2y--.$1 /
$2/ \/__$1
$2\ / \$1
----------$2)--$5*$2 )$1-----------
$2/ \___/$1
$2\ /$1\
$2r--'$1 \
/ \
/ \
/ \
/ $3Paraphernalia OS
$1 / $4Foundation
$1 / \
@@ -0,0 +1,18 @@
$1 ,
|\
| \_
\`-._
\
$2,--.$1
$2/ \___$1
$2\ / \$1 `-._
$2)--( )$1 --------"
$2/ \___/$1 ,-`
$2\ /$1 `
$2`--'$1
/
/
| /
|/ $3Paraphernalia OS
$1 /,-' $4Ghost Edition
$1 /'
@@ -0,0 +1,20 @@
$6 _______________________
/$1\ $6\
/$1 \ $6\
/$1 |\ $6\
/$1 ||\_ $6\
/$1 |||\\-._ $6\
/$1 ||||\\\\\-._ $6\
/$1 |||||\$2--.$1\\\\-._ $6\
/$1 ||||$2/ $1\$2 \$2___$1\\\\-._ $6\
/$1 ||||$2\ $1\ /$2 \$1\\\\\\\-._ $6\
{$1 |||||$2)$1--$5o$1------$1---------^------$6}
\$1 ||||$2/ $1/ \$2___/$1=====-" $6/
\$1 ||||$2\ $1/$2 /$1======,- $6/
\$1 |||||/$2--'$1====,-' $6/
\$1 ||||/======,- $6/
\$1 |||/=====,- $6/
\$1 ||/===,-' $6/
\$1 |/==,- $3Paraphernalia OS$6 /
\$1 /,-' $4Hardened Edition$6/
\$1/$6<_____________________/
@@ -0,0 +1,20 @@
$6 _______________________
/$1\ $6\
/$1 \ $6\
/$1 |\ $6\
/$1 ||\_ $6\
/$1 |||\\-._ $6\
/$1 ||||\\\\\-._ $6\
/$1 |||||$2y--.$1\\\\-._ $6\
/$1 ||||$2/ $5S$2 \$2___$1\\\\-._ $6\
/$1 ||||$2\ / \$1\\\\\\\-._ $6\
{$1 |||||$2)--o $5C$2 )$1---------^------$6}
\$1 ||||$2/ \___/$1=====-" $6/
\$1 ||||$2\ $5P$2 /$1======,- $6/
\$1 |||||$2r--'$1====,-' $6/
\$1 ||||/======,- $6/
\$1 |||/=====,- $6/
\$1 ||/===,-' $6/
\$1 |/==,- $3Paraphernalia OS$6 /
\$1 /,-' $4Hardened Edition$6/
\$1/$6<_____________________/
@@ -0,0 +1,18 @@
$1 ,
|\
| \_ $2,--.$1
$2__$1\`-. $2___/ $8#^$2 \$1
$2/ $6#$2 \ / $9@$2 \ $8*%$2 /$1
$2,--( $6^*%$2 )--( $9#*@$2 )--($1
$2/ $5?#$2 \___/ $5@!$2 \___/ $7!?$2 \$1
$2\ $5!@$2 / $7&$2 \ $5%^$2 / $8&$2 \ $7&^$2 /$1 -._
$2`--( $7^?@$2 )--o $8@!#$2 )--'$1-------"
$2\___/ $6!^$2 \___/$1 ,-`
$2\ $6*#$2 / $8&$2 \$1 `
$2)--( $8!^?$2 )$1
$2/ $5^%$2 \___/$1
/$2\ $5&*$2 / $9*$2 \$1
| / $2`--( $9!#^$2 )$1
|/ $2\___/$1
/,-' $3Paraphernalia OS
$1 /' $4Matrix Edition
@@ -0,0 +1,18 @@
$1 \ /
\ /
$6.---._$1 /
\ $6`--.__$1/
\ /
$2,--.$1 /
$2/ \___$1
$2\ \$1 $6,$1
-------- $2) $5*$2 )$1 -------$6/$1--
$6.`$1 $2/ ___/$1 $6.-`$1
$6|$1 $2\ /$1 $6/$1
$6/$1 $2`--'$1 \ $6.-`$1
$6.`$1 / \ $6/$1
$6|$1 / \$6`$1
$6`.$1 / \
$6\$1 $3Paraphernalia OS$1
/ $6`$1 $4Nomad$1 \
/ \
@@ -0,0 +1,18 @@
$1 ,
|\
| \_
| \`-._
| \ `-._
| $2y--.$1 `-._
| $2/ \___$1 `-._
| $2\ / \$1 `-._
| $2)--( )$1---------"
| $2/ \___/$1 ,-`
| $2\ /$1 ,-
| $2r--'$1 ,-'
| / ,-
| / ,-
| / ,-'
|/ ,- $3Paraphernalia OS
$1 /,-'
$1 /'
@@ -0,0 +1,18 @@
$1 ,
|\
| \_
| \`-._
| $5`$1 $5*$1 `-._
| \ $5`$1 $5.$1`-._
| $5*$1 $2___$1 `-._
| $5`$1 $2/ \$1 $5`$1 $5*$1 $5.$1 `-._
| $5.$1 $2{ }$1 -- ------"
| $2\___/$1 $5.$1 ,-`
| $5*$1 $5*$1 $5*$1 ,-
| / $5`$1 ,-'
|$5*$1 $5`$1 $5*$1 ,-
| / $5`$1 ,-
| / $5.$1 ,-'
|/ ,- $3Paraphernalia OS
$1 /,-' $4Phantom
$1 /'
@@ -0,0 +1,18 @@
$1 ,
|\
| \_ $2,--.$1
$5__$1\`-. $5___$2/ \$1
$5/ \$1 $5/ $2\ /$1
$2,--($5 $7)--$5( $8)--($1
$2/ $5\$6___$7/ $5\___/ $8\$1
$2\ $6/ $7\ $6/ $8\ /$1 -._
$2`--$6( $8)--$9o $8)--'$1-------"
$6\___$8/ $6\___/$1 ,-`
$8\ $7/ \$1 `
$8)--$7( )$1
$5/ $7\___/$1
/$5\ / $2\$1
| / $5`--( $2)$1
|/ $2\___/$1
/,-' $3Paraphernalia OS
$1 /' $4Wraith
+5 -3
View File
@@ -1,7 +1,7 @@
{ {
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/master/doc/json_schema.json", "$schema": "https://github.com/fastfetch-cli/fastfetch/raw/master/doc/json_schema.json",
"logo": { "logo": {
"source": "~/.config/fastfetch/logos/arch-3.txt", "source": "~/.config/fastfetch/0-logos/arch/arch-3.txt",
"color": { "color": {
"1": "red", "1": "red",
"2": "cyan", "2": "cyan",
@@ -38,12 +38,13 @@
{ {
"type": "custom", "type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -" "format": "\u001b[37m✄ - - - - - - - - - - - - - -"
// "format": "\u001b[37m&⫘ ⫘ ⫘ ⫘ ⫘ ⫘ ⫘ ⫘ ⫘ ⫘ ⫘ ⫘ "
}, },
{ {
"type": "os", "type": "os",
"key": " ", "key": " ",
"keyColor": "cyan", "keyColor": "cyan",
"outputColor": "cyan",
"format": "{pretty-name}",
}, },
{ {
"type": "kernel", "type": "kernel",
@@ -58,7 +59,6 @@
{ {
"type": "custom", "type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -" "format": "\u001b[37m✄ - - - - - - - - - - - - - -"
// "format": "\u001b[37m&⫘ ⫘ ⫘ ⫘ ⫘ ⫘ ⫘ ⫘ ⫘ ⫘ ⫘ ⫘ "
}, },
{ {
"type": "de", "type": "de",
@@ -79,6 +79,7 @@
"type": "terminal", "type": "terminal",
"key": " ", "key": " ",
"keyColor": "blue", "keyColor": "blue",
"format": "{$MY_TERMINAL}"
}, },
{ {
"type": "terminalfont", "type": "terminalfont",
@@ -89,6 +90,7 @@
"type": "cpu", "type": "cpu",
"key": " ", "key": " ",
"keyColor": "blue", "keyColor": "blue",
"format": "{name} ({cores-physical}c/{cores-logical}t) [{freq-max}]",
}, },
{ {
"type": "gpu", "type": "gpu",
+12 -2
View File
@@ -30,12 +30,12 @@
{ {
"type": "custom", "type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -" "format": "\u001b[37m✄ - - - - - - - - - - - - - -"
// "format": "\u001b[37m&⫘ ⫘ ⫘ ⫘ ⫘ ⫘ ⫘ ⫘ ⫘ ⫘ ⫘ ⫘ "
}, },
{ {
"type": "os", "type": "os",
"key": " ", "key": " ",
"keyColor": "cyan", "keyColor": "cyan",
"format": "{pretty-name}",
}, },
{ {
"type": "kernel", "type": "kernel",
@@ -50,7 +50,6 @@
{ {
"type": "custom", "type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -" "format": "\u001b[37m✄ - - - - - - - - - - - - - -"
// "format": "\u001b[37m&⫘ ⫘ ⫘ ⫘ ⫘ ⫘ ⫘ ⫘ ⫘ ⫘ ⫘ ⫘ "
}, },
{ {
"type": "de", "type": "de",
@@ -71,6 +70,7 @@
"type": "terminal", "type": "terminal",
"key": " ", "key": " ",
"keyColor": "blue", "keyColor": "blue",
"format": "{$MY_TERMINAL}"
}, },
{ {
"type": "terminalfont", "type": "terminalfont",
@@ -81,6 +81,7 @@
"type": "cpu", "type": "cpu",
"key": " ", "key": " ",
"keyColor": "blue", "keyColor": "blue",
"format": "{name} ({cores-physical}c/{cores-logical}t) [{freq-max}]",
}, },
{ {
"type": "gpu", "type": "gpu",
@@ -101,6 +102,15 @@
"type": "disk", "type": "disk",
"key": "󰋊 ", "key": "󰋊 ",
"keyColor": "blue", "keyColor": "blue",
"folders": "",
"hideFolders": "/efi:/boot:/boot/*",
"showRegular": true,
"showExternal": true,
"showHidden": false,
"showSubvolumes": false,
"showReadOnly": true,
"showUnknown": false,
"format": "[{mountpoint}] {size-used} / {size-total} ({size-percentage})"
}, },
{ {
"type": "battery", "type": "battery",
+66 -19
View File
@@ -2,35 +2,82 @@
import os import os
import platform import platform
import subprocess import subprocess
import re
def detect_os() -> str: def return_os(os_release_path: str) -> tuple[str, str]:
try:
with open(os_release_path) as f:
content = f.read()
id_match = re.search(r'^ID=["\']?([^"\n\']+)', content, re.MULTILINE)
variant_match = re.search(r'^VARIANT_ID=["\']?([^"\n\']+)', content, re.MULTILINE)
os_id = id_match.group(1) if id_match else ""
variant_id = variant_match.group(1) if variant_match else ""
return os_id, variant_id
except Exception:
return "", ""
def detect_os() -> tuple[str, str]:
system = platform.system().lower() system = platform.system().lower()
match system: match system:
case "darwin": case "darwin":
return "macos" return "macos", ""
case "freebsd": case "freebsd":
return "freebsd" return "freebsd", ""
case "windows": case "windows":
return "windows" return "windows", ""
case "linux": case "linux":
# Check for specific Linux distributions # Check for specific Linux distributions
try: custom_os_release = os.path.expanduser("~/.os-release")
with open("/etc/os-release") as f: if os.path.exists(custom_os_release):
content = f.read() return return_os(custom_os_release)
if "ID=arch" in content: elif os.path.exists("/etc/os-release"):
return "arch" return return_os("/etc/os-release")
if "ID=ubuntu" in content: elif os.path.exists("/usr/lib/os-release"):
return "ubuntu" return return_os("/usr/lib/os-release")
except FileNotFoundError: return "", ""
pass
return ""
def get_real_terminal() -> str:
if os.environ.get("KITTY_WINDOW_ID"):
return "kitty"
try:
sid = os.getsid(0)
with open(f"/proc/{sid}/stat", "r") as f:
ppid = int(f.read().split()[3])
return os.path.basename(os.readlink(f"/proc/{ppid}/exe"))
except Exception:
return "terminal"
def get_real_shell() -> str:
try:
ppid = os.getppid()
shell_path = os.readlink(f"/proc/{ppid}/exe")
return os.path.basename(shell_path)
except Exception:
return os.path.basename(os.environ.get("SHELL", "bash"))
# Main # Main
target = detect_os() target, variant = detect_os()
config_path = os.path.expanduser(f"~/.config/fastfetch/{target}.jsonc") config_path_base = os.path.expanduser(f"~/.config/fastfetch/{target}")
if os.path.exists(config_path): if os.path.isdir(config_path_base):
subprocess.run(["fastfetch", "-c", config_path]) config_path = config_path_base + f"/{variant}.jsonc"
if not os.path.exists(config_path):
config_path = config_path_base + f"/default.jsonc"
if not os.path.exists(config_path):
config_path = config_path_base + ".jsonc"
else: else:
subprocess.run(["fastfetch"]) config_path = config_path_base + f"/default.jsonc"
if not os.path.exists(config_path):
config_path = config_path_base + ".jsonc"
os.environ["MY_TERMINAL"] = get_real_terminal()
os.environ["SHELL"] = get_real_shell()
args = ["fastfetch"]
if os.path.exists(config_path):
args.extend(["-c", config_path])
os.execvp("fastfetch", args)
+126
View File
@@ -0,0 +1,126 @@
{
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/master/doc/json_schema.json",
"logo": {
"source": "~/.config/fastfetch/0-logos/freebsd/freebsd.txt",
"color": {
"1": "red",
"2": "cyan",
"3": "blue",
"4": "white",
"5": "cyan"
},
"padding": {
"right": 2
},
},
"modules": [
{
"type": "title",
"key": " ",
"keyColor": "cyan",
},
{
"type": "host",
"key": " ",
"keyColor": "cyan",
},
{
"type": "display",
"key": " ",
"keyColor": "cyan",
},
{
"type": "colors",
"symbol": "circle",
"key": " ",
"keyColor": "cyan",
},
{
"type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -"
},
{
"type": "os",
"key": " ",
"keyColor": "cyan",
"outputColor": "red",
"format": "{pretty-name}",
},
{
"type": "kernel",
"key": " ",
"keyColor": "cyan",
},
{
"type": "uptime",
"key": "󱑁 ",
"keyColor": "cyan",
},
{
"type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -"
},
{
"type": "de",
"key": " ",
"keyColor": "blue",
},
{
"type": "wm",
"key": " ",
"keyColor": "blue",
},
{
"type": "shell",
"key": " ",
"keyColor": "blue",
},
{
"type": "terminal",
"key": " ",
"keyColor": "blue",
"format": "{$MY_TERMINAL}"
},
{
"type": "terminalfont",
"key": " ",
"keyColor": "blue",
},
{
"type": "cpu",
"key": " ",
"keyColor": "blue",
"format": "{name} ({cores-physical}c/{cores-logical}t) [{freq-max}]",
},
{
"type": "gpu",
"key": "󰢮 ",
"keyColor": "blue",
},
{
"type": "memory",
"key": " ",
"keyColor": "blue",
},
{
"type": "swap",
"key": " ",
"keyColor": "blue",
},
{
"type": "disk",
"key": "󰋊 ",
"keyColor": "blue",
},
{
"type": "battery",
"key": " ",
"keyColor": "blue",
},
{
"type": "poweradapter",
"key": " ",
"keyColor": "blue",
}
]
}
+125
View File
@@ -0,0 +1,125 @@
{
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/master/doc/json_schema.json",
"logo": {
"source": "~/.config/fastfetch/0-logos/helixos/core.txt",
"color": {
"1": "white",
"2": "magenta",
"3": "red",
"4": "yellow",
},
"padding": {
"right": 2
},
},
"modules": [
{
"type": "title",
"key": " ",
"keyColor": "cyan",
},
{
"type": "host",
"key": " ",
"keyColor": "cyan",
},
{
"type": "display",
"key": " ",
"keyColor": "cyan",
},
{
"type": "colors",
"symbol": "circle",
"key": " ",
"keyColor": "cyan",
},
{
"type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -"
},
{
"type": "os",
"key": " ",
"keyColor": "cyan",
"outputColor": "magenta",
"format": "HelixOS Core",
},
{
"type": "kernel",
"key": " ",
"keyColor": "cyan",
},
{
"type": "uptime",
"key": "󱑁 ",
"keyColor": "cyan",
},
{
"type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -"
},
{
"type": "de",
"key": " ",
"keyColor": "blue",
},
{
"type": "wm",
"key": " ",
"keyColor": "blue",
},
{
"type": "shell",
"key": " ",
"keyColor": "blue",
},
{
"type": "terminal",
"key": " ",
"keyColor": "blue",
"format": "{$MY_TERMINAL}"
},
{
"type": "terminalfont",
"key": " ",
"keyColor": "blue",
},
{
"type": "cpu",
"key": " ",
"keyColor": "blue",
"format": "{name} ({cores-physical}c/{cores-logical}t) [{freq-max}]",
},
{
"type": "gpu",
"key": "󰢮 ",
"keyColor": "blue",
},
{
"type": "memory",
"key": " ",
"keyColor": "blue",
},
{
"type": "swap",
"key": " ",
"keyColor": "blue",
},
{
"type": "disk",
"key": "󰋊 ",
"keyColor": "blue",
},
{
"type": "battery",
"key": " ",
"keyColor": "blue",
},
{
"type": "poweradapter",
"key": " ",
"keyColor": "blue",
}
]
}
+125
View File
@@ -0,0 +1,125 @@
{
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/master/doc/json_schema.json",
"logo": {
"source": "~/.config/fastfetch/0-logos/helixos/helixos.txt",
"color": {
"1": "white",
"2": "magenta",
"3": "red",
"4": "yellow",
},
"padding": {
"right": 2
},
},
"modules": [
{
"type": "title",
"key": " ",
"keyColor": "cyan",
},
{
"type": "host",
"key": " ",
"keyColor": "cyan",
},
{
"type": "display",
"key": " ",
"keyColor": "cyan",
},
{
"type": "colors",
"symbol": "circle",
"key": " ",
"keyColor": "cyan",
},
{
"type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -"
},
{
"type": "os",
"key": " ",
"keyColor": "cyan",
"outputColor": "magenta",
"format": "HelixOS",
},
{
"type": "kernel",
"key": " ",
"keyColor": "cyan",
},
{
"type": "uptime",
"key": "󱑁 ",
"keyColor": "cyan",
},
{
"type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -"
},
{
"type": "de",
"key": " ",
"keyColor": "blue",
},
{
"type": "wm",
"key": " ",
"keyColor": "blue",
},
{
"type": "shell",
"key": " ",
"keyColor": "blue",
},
{
"type": "terminal",
"key": " ",
"keyColor": "blue",
"format": "{$MY_TERMINAL}"
},
{
"type": "terminalfont",
"key": " ",
"keyColor": "blue",
},
{
"type": "cpu",
"key": " ",
"keyColor": "blue",
"format": "{name} ({cores-physical}c/{cores-logical}t) [{freq-max}]",
},
{
"type": "gpu",
"key": "󰢮 ",
"keyColor": "blue",
},
{
"type": "memory",
"key": " ",
"keyColor": "blue",
},
{
"type": "swap",
"key": " ",
"keyColor": "blue",
},
{
"type": "disk",
"key": "󰋊 ",
"keyColor": "blue",
},
{
"type": "battery",
"key": " ",
"keyColor": "blue",
},
{
"type": "poweradapter",
"key": " ",
"keyColor": "blue",
}
]
}
+126
View File
@@ -0,0 +1,126 @@
{
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/master/doc/json_schema.json",
"logo": {
"source": "~/.config/fastfetch/0-logos/helixos/genesis.txt",
"color": {
"1": "white",
"2": "magenta",
"3": "red",
"4": "yellow",
"5": "yellow",
},
"padding": {
"right": 2
},
},
"modules": [
{
"type": "title",
"key": " ",
"keyColor": "cyan",
},
{
"type": "host",
"key": " ",
"keyColor": "cyan",
},
{
"type": "display",
"key": " ",
"keyColor": "cyan",
},
{
"type": "colors",
"symbol": "circle",
"key": " ",
"keyColor": "cyan",
},
{
"type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -"
},
{
"type": "os",
"key": " ",
"keyColor": "cyan",
"outputColor": "magenta",
"format": "HelixOS Genesis",
},
{
"type": "kernel",
"key": " ",
"keyColor": "cyan",
},
{
"type": "uptime",
"key": "󱑁 ",
"keyColor": "cyan",
},
{
"type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -"
},
{
"type": "de",
"key": " ",
"keyColor": "blue",
},
{
"type": "wm",
"key": " ",
"keyColor": "blue",
},
{
"type": "shell",
"key": " ",
"keyColor": "blue",
},
{
"type": "terminal",
"key": " ",
"keyColor": "blue",
"format": "{$MY_TERMINAL}"
},
{
"type": "terminalfont",
"key": " ",
"keyColor": "blue",
},
{
"type": "cpu",
"key": " ",
"keyColor": "blue",
"format": "{name} ({cores-physical}c/{cores-logical}t) [{freq-max}]",
},
{
"type": "gpu",
"key": "󰢮 ",
"keyColor": "blue",
},
{
"type": "memory",
"key": " ",
"keyColor": "blue",
},
{
"type": "swap",
"key": " ",
"keyColor": "blue",
},
{
"type": "disk",
"key": "󰋊 ",
"keyColor": "blue",
},
{
"type": "battery",
"key": " ",
"keyColor": "blue",
},
{
"type": "poweradapter",
"key": " ",
"keyColor": "blue",
}
]
}
+126
View File
@@ -0,0 +1,126 @@
{
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/master/doc/json_schema.json",
"logo": {
"source": "~/.config/fastfetch/0-logos/helixos/overclock.txt",
"color": {
"1": "white",
"2": "magenta",
"3": "red",
"4": "yellow",
"5": "red",
},
"padding": {
"right": 2
},
},
"modules": [
{
"type": "title",
"key": " ",
"keyColor": "cyan",
},
{
"type": "host",
"key": " ",
"keyColor": "cyan",
},
{
"type": "display",
"key": " ",
"keyColor": "cyan",
},
{
"type": "colors",
"symbol": "circle",
"key": " ",
"keyColor": "cyan",
},
{
"type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -"
},
{
"type": "os",
"key": " ",
"keyColor": "cyan",
"outputColor": "magenta",
"format": "HelixOS Overclock",
},
{
"type": "kernel",
"key": " ",
"keyColor": "cyan",
},
{
"type": "uptime",
"key": "󱑁 ",
"keyColor": "cyan",
},
{
"type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -"
},
{
"type": "de",
"key": " ",
"keyColor": "blue",
},
{
"type": "wm",
"key": " ",
"keyColor": "blue",
},
{
"type": "shell",
"key": " ",
"keyColor": "blue",
},
{
"type": "terminal",
"key": " ",
"keyColor": "blue",
"format": "{$MY_TERMINAL}"
},
{
"type": "terminalfont",
"key": " ",
"keyColor": "blue",
},
{
"type": "cpu",
"key": " ",
"keyColor": "blue",
"format": "{name} ({cores-physical}c/{cores-logical}t) [{freq-max}]",
},
{
"type": "gpu",
"key": "󰢮 ",
"keyColor": "blue",
},
{
"type": "memory",
"key": " ",
"keyColor": "blue",
},
{
"type": "swap",
"key": " ",
"keyColor": "blue",
},
{
"type": "disk",
"key": "󰋊 ",
"keyColor": "blue",
},
{
"type": "battery",
"key": " ",
"keyColor": "blue",
},
{
"type": "poweradapter",
"key": " ",
"keyColor": "blue",
}
]
}
+126
View File
@@ -0,0 +1,126 @@
{
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/master/doc/json_schema.json",
"logo": {
"source": "~/.config/fastfetch/0-logos/helixos/overlord.txt",
"color": {
"1": "white",
"2": "magenta",
"3": "red",
"4": "yellow",
"5": "red",
},
"padding": {
"right": 2
},
},
"modules": [
{
"type": "title",
"key": " ",
"keyColor": "cyan",
},
{
"type": "host",
"key": " ",
"keyColor": "cyan",
},
{
"type": "display",
"key": " ",
"keyColor": "cyan",
},
{
"type": "colors",
"symbol": "circle",
"key": " ",
"keyColor": "cyan",
},
{
"type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -"
},
{
"type": "os",
"key": " ",
"keyColor": "cyan",
"outputColor": "magenta",
"format": "HelixOS Overlord",
},
{
"type": "kernel",
"key": " ",
"keyColor": "cyan",
},
{
"type": "uptime",
"key": "󱑁 ",
"keyColor": "cyan",
},
{
"type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -"
},
{
"type": "de",
"key": " ",
"keyColor": "blue",
},
{
"type": "wm",
"key": " ",
"keyColor": "blue",
},
{
"type": "shell",
"key": " ",
"keyColor": "blue",
},
{
"type": "terminal",
"key": " ",
"keyColor": "blue",
"format": "{$MY_TERMINAL}"
},
{
"type": "terminalfont",
"key": " ",
"keyColor": "blue",
},
{
"type": "cpu",
"key": " ",
"keyColor": "blue",
"format": "{name} ({cores-physical}c/{cores-logical}t) [{freq-max}]",
},
{
"type": "gpu",
"key": "󰢮 ",
"keyColor": "blue",
},
{
"type": "memory",
"key": " ",
"keyColor": "blue",
},
{
"type": "swap",
"key": " ",
"keyColor": "blue",
},
{
"type": "disk",
"key": "󰋊 ",
"keyColor": "blue",
},
{
"type": "battery",
"key": " ",
"keyColor": "blue",
},
{
"type": "poweradapter",
"key": " ",
"keyColor": "blue",
}
]
}
+126
View File
@@ -0,0 +1,126 @@
{
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/master/doc/json_schema.json",
"logo": {
"source": "~/.config/fastfetch/0-logos/helixos/prism.txt",
"color": {
"1": "white",
"2": "magenta",
"3": "red",
"4": "yellow",
"5": "blue",
},
"padding": {
"right": 2
},
},
"modules": [
{
"type": "title",
"key": " ",
"keyColor": "cyan",
},
{
"type": "host",
"key": " ",
"keyColor": "cyan",
},
{
"type": "display",
"key": " ",
"keyColor": "cyan",
},
{
"type": "colors",
"symbol": "circle",
"key": " ",
"keyColor": "cyan",
},
{
"type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -"
},
{
"type": "os",
"key": " ",
"keyColor": "cyan",
"outputColor": "magenta",
"format": "HelixOS Prism",
},
{
"type": "kernel",
"key": " ",
"keyColor": "cyan",
},
{
"type": "uptime",
"key": "󱑁 ",
"keyColor": "cyan",
},
{
"type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -"
},
{
"type": "de",
"key": " ",
"keyColor": "blue",
},
{
"type": "wm",
"key": " ",
"keyColor": "blue",
},
{
"type": "shell",
"key": " ",
"keyColor": "blue",
},
{
"type": "terminal",
"key": " ",
"keyColor": "blue",
"format": "{$MY_TERMINAL}"
},
{
"type": "terminalfont",
"key": " ",
"keyColor": "blue",
},
{
"type": "cpu",
"key": " ",
"keyColor": "blue",
"format": "{name} ({cores-physical}c/{cores-logical}t) [{freq-max}]",
},
{
"type": "gpu",
"key": "󰢮 ",
"keyColor": "blue",
},
{
"type": "memory",
"key": " ",
"keyColor": "blue",
},
{
"type": "swap",
"key": " ",
"keyColor": "blue",
},
{
"type": "disk",
"key": "󰋊 ",
"keyColor": "blue",
},
{
"type": "battery",
"key": " ",
"keyColor": "blue",
},
{
"type": "poweradapter",
"key": " ",
"keyColor": "blue",
}
]
}
+126
View File
@@ -0,0 +1,126 @@
{
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/master/doc/json_schema.json",
"logo": {
"source": "~/.config/fastfetch/0-logos/helixos/surgery.txt",
"color": {
"1": "white",
"2": "magenta",
"3": "red",
"4": "yellow",
"5": "red",
},
"padding": {
"right": 2
},
},
"modules": [
{
"type": "title",
"key": " ",
"keyColor": "cyan",
},
{
"type": "host",
"key": " ",
"keyColor": "cyan",
},
{
"type": "display",
"key": " ",
"keyColor": "cyan",
},
{
"type": "colors",
"symbol": "circle",
"key": " ",
"keyColor": "cyan",
},
{
"type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -"
},
{
"type": "os",
"key": " ",
"keyColor": "cyan",
"outputColor": "magenta",
"format": "HelixOS Surgery",
},
{
"type": "kernel",
"key": " ",
"keyColor": "cyan",
},
{
"type": "uptime",
"key": "󱑁 ",
"keyColor": "cyan",
},
{
"type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -"
},
{
"type": "de",
"key": " ",
"keyColor": "blue",
},
{
"type": "wm",
"key": " ",
"keyColor": "blue",
},
{
"type": "shell",
"key": " ",
"keyColor": "blue",
},
{
"type": "terminal",
"key": " ",
"keyColor": "blue",
"format": "{$MY_TERMINAL}"
},
{
"type": "terminalfont",
"key": " ",
"keyColor": "blue",
},
{
"type": "cpu",
"key": " ",
"keyColor": "blue",
"format": "{name} ({cores-physical}c/{cores-logical}t) [{freq-max}]",
},
{
"type": "gpu",
"key": "󰢮 ",
"keyColor": "blue",
},
{
"type": "memory",
"key": " ",
"keyColor": "blue",
},
{
"type": "swap",
"key": " ",
"keyColor": "blue",
},
{
"type": "disk",
"key": "󰋊 ",
"keyColor": "blue",
},
{
"type": "battery",
"key": " ",
"keyColor": "blue",
},
{
"type": "poweradapter",
"key": " ",
"keyColor": "blue",
}
]
}
+126
View File
@@ -0,0 +1,126 @@
{
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/master/doc/json_schema.json",
"logo": {
"source": "~/.config/fastfetch/0-logos/helixos/vortex.txt",
"color": {
"1": "white",
"2": "magenta",
"3": "red",
"4": "yellow",
"5": "black",
},
"padding": {
"right": 2
},
},
"modules": [
{
"type": "title",
"key": " ",
"keyColor": "cyan",
},
{
"type": "host",
"key": " ",
"keyColor": "cyan",
},
{
"type": "display",
"key": " ",
"keyColor": "cyan",
},
{
"type": "colors",
"symbol": "circle",
"key": " ",
"keyColor": "cyan",
},
{
"type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -"
},
{
"type": "os",
"key": " ",
"keyColor": "cyan",
"outputColor": "magenta",
"format": "HelixOS Vortex",
},
{
"type": "kernel",
"key": " ",
"keyColor": "cyan",
},
{
"type": "uptime",
"key": "󱑁 ",
"keyColor": "cyan",
},
{
"type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -"
},
{
"type": "de",
"key": " ",
"keyColor": "blue",
},
{
"type": "wm",
"key": " ",
"keyColor": "blue",
},
{
"type": "shell",
"key": " ",
"keyColor": "blue",
},
{
"type": "terminal",
"key": " ",
"keyColor": "blue",
"format": "{$MY_TERMINAL}"
},
{
"type": "terminalfont",
"key": " ",
"keyColor": "blue",
},
{
"type": "cpu",
"key": " ",
"keyColor": "blue",
"format": "{name} ({cores-physical}c/{cores-logical}t) [{freq-max}]",
},
{
"type": "gpu",
"key": "󰢮 ",
"keyColor": "blue",
},
{
"type": "memory",
"key": " ",
"keyColor": "blue",
},
{
"type": "swap",
"key": " ",
"keyColor": "blue",
},
{
"type": "disk",
"key": "󰋊 ",
"keyColor": "blue",
},
{
"type": "battery",
"key": " ",
"keyColor": "blue",
},
{
"type": "poweradapter",
"key": " ",
"keyColor": "blue",
}
]
}
+125
View File
@@ -0,0 +1,125 @@
{
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/master/doc/json_schema.json",
"logo": {
"source": "~/.config/fastfetch/0-logos/helixos/wisp.txt",
"color": {
"1": "white",
"2": "magenta",
"3": "red",
"4": "yellow",
},
"padding": {
"right": 2
},
},
"modules": [
{
"type": "title",
"key": " ",
"keyColor": "cyan",
},
{
"type": "host",
"key": " ",
"keyColor": "cyan",
},
{
"type": "display",
"key": " ",
"keyColor": "cyan",
},
{
"type": "colors",
"symbol": "circle",
"key": " ",
"keyColor": "cyan",
},
{
"type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -"
},
{
"type": "os",
"key": " ",
"keyColor": "cyan",
"outputColor": "magenta",
"format": "HelixOS Wisp",
},
{
"type": "kernel",
"key": " ",
"keyColor": "cyan",
},
{
"type": "uptime",
"key": "󱑁 ",
"keyColor": "cyan",
},
{
"type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -"
},
{
"type": "de",
"key": " ",
"keyColor": "blue",
},
{
"type": "wm",
"key": " ",
"keyColor": "blue",
},
{
"type": "shell",
"key": " ",
"keyColor": "blue",
},
{
"type": "terminal",
"key": " ",
"keyColor": "blue",
"format": "{$MY_TERMINAL}"
},
{
"type": "terminalfont",
"key": " ",
"keyColor": "blue",
},
{
"type": "cpu",
"key": " ",
"keyColor": "blue",
"format": "{name} ({cores-physical}c/{cores-logical}t) [{freq-max}]",
},
{
"type": "gpu",
"key": "󰢮 ",
"keyColor": "blue",
},
{
"type": "memory",
"key": " ",
"keyColor": "blue",
},
{
"type": "swap",
"key": " ",
"keyColor": "blue",
},
{
"type": "disk",
"key": "󰋊 ",
"keyColor": "blue",
},
{
"type": "battery",
"key": " ",
"keyColor": "blue",
},
{
"type": "poweradapter",
"key": " ",
"keyColor": "blue",
}
]
}
+126
View File
@@ -0,0 +1,126 @@
{
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/master/doc/json_schema.json",
"logo": {
"source": "~/.config/fastfetch/0-logos/leviathan/leviathan.txt",
"color": {
"1": "white",
"2": "cyan",
"3": "blue",
"4": "yellow",
"5": "cyan"
},
"padding": {
"right": 2
},
},
"modules": [
{
"type": "title",
"key": " ",
"keyColor": "cyan",
},
{
"type": "host",
"key": " ",
"keyColor": "cyan",
},
{
"type": "display",
"key": " ",
"keyColor": "cyan",
},
{
"type": "colors",
"symbol": "circle",
"key": " ",
"keyColor": "cyan",
},
{
"type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -"
},
{
"type": "os",
"key": " ",
"keyColor": "cyan",
"outputColor": "blue",
"format": "Leviathan",
},
{
"type": "kernel",
"key": " ",
"keyColor": "cyan",
},
{
"type": "uptime",
"key": "󱑁 ",
"keyColor": "cyan",
},
{
"type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -"
},
{
"type": "de",
"key": " ",
"keyColor": "blue",
},
{
"type": "wm",
"key": " ",
"keyColor": "blue",
},
{
"type": "shell",
"key": " ",
"keyColor": "blue",
},
{
"type": "terminal",
"key": " ",
"keyColor": "blue",
"format": "{$MY_TERMINAL}"
},
{
"type": "terminalfont",
"key": " ",
"keyColor": "blue",
},
{
"type": "cpu",
"key": " ",
"keyColor": "blue",
"format": "{name} ({cores-physical}c/{cores-logical}t) [{freq-max}]",
},
{
"type": "gpu",
"key": "󰢮 ",
"keyColor": "blue",
},
{
"type": "memory",
"key": " ",
"keyColor": "blue",
},
{
"type": "swap",
"key": " ",
"keyColor": "blue",
},
{
"type": "disk",
"key": "󰋊 ",
"keyColor": "blue",
},
{
"type": "battery",
"key": " ",
"keyColor": "blue",
},
{
"type": "poweradapter",
"key": " ",
"keyColor": "blue",
}
]
}
+126
View File
@@ -0,0 +1,126 @@
{
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/master/doc/json_schema.json",
"logo": {
"source": "~/.config/fastfetch/0-logos/leviathan/hive.txt",
"color": {
"1": "white",
"2": "yellow",
"3": "blue",
"4": "red",
"5": "green"
},
"padding": {
"right": 2
},
},
"modules": [
{
"type": "title",
"key": " ",
"keyColor": "cyan",
},
{
"type": "host",
"key": " ",
"keyColor": "cyan",
},
{
"type": "display",
"key": " ",
"keyColor": "cyan",
},
{
"type": "colors",
"symbol": "circle",
"key": " ",
"keyColor": "cyan",
},
{
"type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -"
},
{
"type": "os",
"key": " ",
"keyColor": "cyan",
"outputColor": "blue",
"format": "Leviathan Hive",
},
{
"type": "kernel",
"key": " ",
"keyColor": "cyan",
},
{
"type": "uptime",
"key": "󱑁 ",
"keyColor": "cyan",
},
{
"type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -"
},
{
"type": "de",
"key": " ",
"keyColor": "blue",
},
{
"type": "wm",
"key": " ",
"keyColor": "blue",
},
{
"type": "shell",
"key": " ",
"keyColor": "blue",
},
{
"type": "terminal",
"key": " ",
"keyColor": "blue",
"format": "{$MY_TERMINAL}"
},
{
"type": "terminalfont",
"key": " ",
"keyColor": "blue",
},
{
"type": "cpu",
"key": " ",
"keyColor": "blue",
"format": "{name} ({cores-physical}c/{cores-logical}t) [{freq-max}]",
},
{
"type": "gpu",
"key": "󰢮 ",
"keyColor": "blue",
},
{
"type": "memory",
"key": " ",
"keyColor": "blue",
},
{
"type": "swap",
"key": " ",
"keyColor": "blue",
},
{
"type": "disk",
"key": "󰋊 ",
"keyColor": "blue",
},
{
"type": "battery",
"key": " ",
"keyColor": "blue",
},
{
"type": "poweradapter",
"key": " ",
"keyColor": "blue",
}
]
}
+126
View File
@@ -0,0 +1,126 @@
{
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/master/doc/json_schema.json",
"logo": {
"source": "~/.config/fastfetch/0-logos/leviathan/monolith.txt",
"color": {
"1": "white",
"2": "cyan",
"3": "blue",
"4": "yellow",
"5": "cyan"
},
"padding": {
"right": 2
},
},
"modules": [
{
"type": "title",
"key": " ",
"keyColor": "cyan",
},
{
"type": "host",
"key": " ",
"keyColor": "cyan",
},
{
"type": "display",
"key": " ",
"keyColor": "cyan",
},
{
"type": "colors",
"symbol": "circle",
"key": " ",
"keyColor": "cyan",
},
{
"type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -"
},
{
"type": "os",
"key": " ",
"keyColor": "cyan",
"outputColor": "blue",
"format": "Leviathan Monolith",
},
{
"type": "kernel",
"key": " ",
"keyColor": "cyan",
},
{
"type": "uptime",
"key": "󱑁 ",
"keyColor": "cyan",
},
{
"type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -"
},
{
"type": "de",
"key": " ",
"keyColor": "blue",
},
{
"type": "wm",
"key": " ",
"keyColor": "blue",
},
{
"type": "shell",
"key": " ",
"keyColor": "blue",
},
{
"type": "terminal",
"key": " ",
"keyColor": "blue",
"format": "{$MY_TERMINAL}"
},
{
"type": "terminalfont",
"key": " ",
"keyColor": "blue",
},
{
"type": "cpu",
"key": " ",
"keyColor": "blue",
"format": "{name} ({cores-physical}c/{cores-logical}t) [{freq-max}]",
},
{
"type": "gpu",
"key": "󰢮 ",
"keyColor": "blue",
},
{
"type": "memory",
"key": " ",
"keyColor": "blue",
},
{
"type": "swap",
"key": " ",
"keyColor": "blue",
},
{
"type": "disk",
"key": "󰋊 ",
"keyColor": "blue",
},
{
"type": "battery",
"key": " ",
"keyColor": "blue",
},
{
"type": "poweradapter",
"key": " ",
"keyColor": "blue",
}
]
}
+126
View File
@@ -0,0 +1,126 @@
{
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/master/doc/json_schema.json",
"logo": {
"source": "~/.config/fastfetch/0-logos/leviathan/reaper.txt",
"color": {
"1": "white",
"2": "cyan",
"3": "blue",
"4": "yellow",
"5": "cyan"
},
"padding": {
"right": 2
},
},
"modules": [
{
"type": "title",
"key": " ",
"keyColor": "cyan",
},
{
"type": "host",
"key": " ",
"keyColor": "cyan",
},
{
"type": "display",
"key": " ",
"keyColor": "cyan",
},
{
"type": "colors",
"symbol": "circle",
"key": " ",
"keyColor": "cyan",
},
{
"type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -"
},
{
"type": "os",
"key": " ",
"keyColor": "cyan",
"outputColor": "blue",
"format": "Leviathan Reaper",
},
{
"type": "kernel",
"key": " ",
"keyColor": "cyan",
},
{
"type": "uptime",
"key": "󱑁 ",
"keyColor": "cyan",
},
{
"type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -"
},
{
"type": "de",
"key": " ",
"keyColor": "blue",
},
{
"type": "wm",
"key": " ",
"keyColor": "blue",
},
{
"type": "shell",
"key": " ",
"keyColor": "blue",
},
{
"type": "terminal",
"key": " ",
"keyColor": "blue",
"format": "{$MY_TERMINAL}"
},
{
"type": "terminalfont",
"key": " ",
"keyColor": "blue",
},
{
"type": "cpu",
"key": " ",
"keyColor": "blue",
"format": "{name} ({cores-physical}c/{cores-logical}t) [{freq-max}]",
},
{
"type": "gpu",
"key": "󰢮 ",
"keyColor": "blue",
},
{
"type": "memory",
"key": " ",
"keyColor": "blue",
},
{
"type": "swap",
"key": " ",
"keyColor": "blue",
},
{
"type": "disk",
"key": "󰋊 ",
"keyColor": "blue",
},
{
"type": "battery",
"key": " ",
"keyColor": "blue",
},
{
"type": "poweradapter",
"key": " ",
"keyColor": "blue",
}
]
}
+126
View File
@@ -0,0 +1,126 @@
{
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/master/doc/json_schema.json",
"logo": {
"source": "~/.config/fastfetch/0-logos/leviathan/reef.txt",
"color": {
"1": "white",
"2": "cyan",
"3": "blue",
"4": "yellow",
"5": "cyan"
},
"padding": {
"right": 2
},
},
"modules": [
{
"type": "title",
"key": " ",
"keyColor": "cyan",
},
{
"type": "host",
"key": " ",
"keyColor": "cyan",
},
{
"type": "display",
"key": " ",
"keyColor": "cyan",
},
{
"type": "colors",
"symbol": "circle",
"key": " ",
"keyColor": "cyan",
},
{
"type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -"
},
{
"type": "os",
"key": " ",
"keyColor": "cyan",
"outputColor": "blue",
"format": "Leviathan Reef",
},
{
"type": "kernel",
"key": " ",
"keyColor": "cyan",
},
{
"type": "uptime",
"key": "󱑁 ",
"keyColor": "cyan",
},
{
"type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -"
},
{
"type": "de",
"key": " ",
"keyColor": "blue",
},
{
"type": "wm",
"key": " ",
"keyColor": "blue",
},
{
"type": "shell",
"key": " ",
"keyColor": "blue",
},
{
"type": "terminal",
"key": " ",
"keyColor": "blue",
"format": "{$MY_TERMINAL}"
},
{
"type": "terminalfont",
"key": " ",
"keyColor": "blue",
},
{
"type": "cpu",
"key": " ",
"keyColor": "blue",
"format": "{name} ({cores-physical}c/{cores-logical}t) [{freq-max}]",
},
{
"type": "gpu",
"key": "󰢮 ",
"keyColor": "blue",
},
{
"type": "memory",
"key": " ",
"keyColor": "blue",
},
{
"type": "swap",
"key": " ",
"keyColor": "blue",
},
{
"type": "disk",
"key": "󰋊 ",
"keyColor": "blue",
},
{
"type": "battery",
"key": " ",
"keyColor": "blue",
},
{
"type": "poweradapter",
"key": " ",
"keyColor": "blue",
}
]
}
+126
View File
@@ -0,0 +1,126 @@
{
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/master/doc/json_schema.json",
"logo": {
"source": "~/.config/fastfetch/0-logos/leviathan/riptide.txt",
"color": {
"1": "white",
"2": "cyan",
"3": "blue",
"4": "yellow",
"5": "cyan"
},
"padding": {
"right": 2
},
},
"modules": [
{
"type": "title",
"key": " ",
"keyColor": "cyan",
},
{
"type": "host",
"key": " ",
"keyColor": "cyan",
},
{
"type": "display",
"key": " ",
"keyColor": "cyan",
},
{
"type": "colors",
"symbol": "circle",
"key": " ",
"keyColor": "cyan",
},
{
"type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -"
},
{
"type": "os",
"key": " ",
"keyColor": "cyan",
"outputColor": "blue",
"format": "Leviathan Riptide",
},
{
"type": "kernel",
"key": " ",
"keyColor": "cyan",
},
{
"type": "uptime",
"key": "󱑁 ",
"keyColor": "cyan",
},
{
"type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -"
},
{
"type": "de",
"key": " ",
"keyColor": "blue",
},
{
"type": "wm",
"key": " ",
"keyColor": "blue",
},
{
"type": "shell",
"key": " ",
"keyColor": "blue",
},
{
"type": "terminal",
"key": " ",
"keyColor": "blue",
"format": "{$MY_TERMINAL}"
},
{
"type": "terminalfont",
"key": " ",
"keyColor": "blue",
},
{
"type": "cpu",
"key": " ",
"keyColor": "blue",
"format": "{name} ({cores-physical}c/{cores-logical}t) [{freq-max}]",
},
{
"type": "gpu",
"key": "󰢮 ",
"keyColor": "blue",
},
{
"type": "memory",
"key": " ",
"keyColor": "blue",
},
{
"type": "swap",
"key": " ",
"keyColor": "blue",
},
{
"type": "disk",
"key": "󰋊 ",
"keyColor": "blue",
},
{
"type": "battery",
"key": " ",
"keyColor": "blue",
},
{
"type": "poweradapter",
"key": " ",
"keyColor": "blue",
}
]
}
+126
View File
@@ -0,0 +1,126 @@
{
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/master/doc/json_schema.json",
"logo": {
"source": "~/.config/fastfetch/0-logos/leviathan/synapse.txt",
"color": {
"1": "white",
"2": "cyan",
"3": "blue",
"4": "yellow",
"5": "red"
},
"padding": {
"right": 2
},
},
"modules": [
{
"type": "title",
"key": " ",
"keyColor": "cyan",
},
{
"type": "host",
"key": " ",
"keyColor": "cyan",
},
{
"type": "display",
"key": " ",
"keyColor": "cyan",
},
{
"type": "colors",
"symbol": "circle",
"key": " ",
"keyColor": "cyan",
},
{
"type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -"
},
{
"type": "os",
"key": " ",
"keyColor": "cyan",
"outputColor": "blue",
"format": "Leviathan Synapse",
},
{
"type": "kernel",
"key": " ",
"keyColor": "cyan",
},
{
"type": "uptime",
"key": "󱑁 ",
"keyColor": "cyan",
},
{
"type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -"
},
{
"type": "de",
"key": " ",
"keyColor": "blue",
},
{
"type": "wm",
"key": " ",
"keyColor": "blue",
},
{
"type": "shell",
"key": " ",
"keyColor": "blue",
},
{
"type": "terminal",
"key": " ",
"keyColor": "blue",
"format": "{$MY_TERMINAL}"
},
{
"type": "terminalfont",
"key": " ",
"keyColor": "blue",
},
{
"type": "cpu",
"key": " ",
"keyColor": "blue",
"format": "{name} ({cores-physical}c/{cores-logical}t) [{freq-max}]",
},
{
"type": "gpu",
"key": "󰢮 ",
"keyColor": "blue",
},
{
"type": "memory",
"key": " ",
"keyColor": "blue",
},
{
"type": "swap",
"key": " ",
"keyColor": "blue",
},
{
"type": "disk",
"key": "󰋊 ",
"keyColor": "blue",
},
{
"type": "battery",
"key": " ",
"keyColor": "blue",
},
{
"type": "poweradapter",
"key": " ",
"keyColor": "blue",
}
]
}
+125
View File
@@ -0,0 +1,125 @@
{
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/master/doc/json_schema.json",
"logo": {
"source": "~/.config/fastfetch/0-logos/paragon/apex.txt",
"color": {
"1": "white",
"2": "yellow",
"3": "red",
"4": "red",
},
"padding": {
"right": 2
},
},
"modules": [
{
"type": "title",
"key": " ",
"keyColor": "cyan",
},
{
"type": "host",
"key": " ",
"keyColor": "cyan",
},
{
"type": "display",
"key": " ",
"keyColor": "cyan",
},
{
"type": "colors",
"symbol": "circle",
"key": " ",
"keyColor": "cyan",
},
{
"type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -"
},
{
"type": "os",
"key": " ",
"keyColor": "cyan",
"outputColor": "yellow",
"format": "Paragon Apex",
},
{
"type": "kernel",
"key": " ",
"keyColor": "cyan",
},
{
"type": "uptime",
"key": "󱑁 ",
"keyColor": "cyan",
},
{
"type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -"
},
{
"type": "de",
"key": " ",
"keyColor": "blue",
},
{
"type": "wm",
"key": " ",
"keyColor": "blue",
},
{
"type": "shell",
"key": " ",
"keyColor": "blue",
},
{
"type": "terminal",
"key": " ",
"keyColor": "blue",
"format": "{$MY_TERMINAL}"
},
{
"type": "terminalfont",
"key": " ",
"keyColor": "blue",
},
{
"type": "cpu",
"key": " ",
"keyColor": "blue",
"format": "{name} ({cores-physical}c/{cores-logical}t) [{freq-max}]",
},
{
"type": "gpu",
"key": "󰢮 ",
"keyColor": "blue",
},
{
"type": "memory",
"key": " ",
"keyColor": "blue",
},
{
"type": "swap",
"key": " ",
"keyColor": "blue",
},
{
"type": "disk",
"key": "󰋊 ",
"keyColor": "blue",
},
{
"type": "battery",
"key": " ",
"keyColor": "blue",
},
{
"type": "poweradapter",
"key": " ",
"keyColor": "blue",
}
]
}
+126
View File
@@ -0,0 +1,126 @@
{
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/master/doc/json_schema.json",
"logo": {
"source": "~/.config/fastfetch/0-logos/paragon/apogee.txt",
"color": {
"1": "white",
"2": "yellow",
"3": "red",
"4": "yellow",
"5": "red",
},
"padding": {
"right": 2
},
},
"modules": [
{
"type": "title",
"key": " ",
"keyColor": "cyan",
},
{
"type": "host",
"key": " ",
"keyColor": "cyan",
},
{
"type": "display",
"key": " ",
"keyColor": "cyan",
},
{
"type": "colors",
"symbol": "circle",
"key": " ",
"keyColor": "cyan",
},
{
"type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -"
},
{
"type": "os",
"key": " ",
"keyColor": "cyan",
"outputColor": "yellow",
"format": "Paragon Apogee",
},
{
"type": "kernel",
"key": " ",
"keyColor": "cyan",
},
{
"type": "uptime",
"key": "󱑁 ",
"keyColor": "cyan",
},
{
"type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -"
},
{
"type": "de",
"key": " ",
"keyColor": "blue",
},
{
"type": "wm",
"key": " ",
"keyColor": "blue",
},
{
"type": "shell",
"key": " ",
"keyColor": "blue",
},
{
"type": "terminal",
"key": " ",
"keyColor": "blue",
"format": "{$MY_TERMINAL}"
},
{
"type": "terminalfont",
"key": " ",
"keyColor": "blue",
},
{
"type": "cpu",
"key": " ",
"keyColor": "blue",
"format": "{name} ({cores-physical}c/{cores-logical}t) [{freq-max}]",
},
{
"type": "gpu",
"key": "󰢮 ",
"keyColor": "blue",
},
{
"type": "memory",
"key": " ",
"keyColor": "blue",
},
{
"type": "swap",
"key": " ",
"keyColor": "blue",
},
{
"type": "disk",
"key": "󰋊 ",
"keyColor": "blue",
},
{
"type": "battery",
"key": " ",
"keyColor": "blue",
},
{
"type": "poweradapter",
"key": " ",
"keyColor": "blue",
}
]
}
+125
View File
@@ -0,0 +1,125 @@
{
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/master/doc/json_schema.json",
"logo": {
"source": "~/.config/fastfetch/0-logos/paragon/apotheosis.txt",
"color": {
"1": "white",
"2": "yellow",
"3": "red",
"4": "red",
},
"padding": {
"right": 2
},
},
"modules": [
{
"type": "title",
"key": " ",
"keyColor": "cyan",
},
{
"type": "host",
"key": " ",
"keyColor": "cyan",
},
{
"type": "display",
"key": " ",
"keyColor": "cyan",
},
{
"type": "colors",
"symbol": "circle",
"key": " ",
"keyColor": "cyan",
},
{
"type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -"
},
{
"type": "os",
"key": " ",
"keyColor": "cyan",
"outputColor": "yellow",
"format": "Paragon Apotheosis",
},
{
"type": "kernel",
"key": " ",
"keyColor": "cyan",
},
{
"type": "uptime",
"key": "󱑁 ",
"keyColor": "cyan",
},
{
"type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -"
},
{
"type": "de",
"key": " ",
"keyColor": "blue",
},
{
"type": "wm",
"key": " ",
"keyColor": "blue",
},
{
"type": "shell",
"key": " ",
"keyColor": "blue",
},
{
"type": "terminal",
"key": " ",
"keyColor": "blue",
"format": "{$MY_TERMINAL}"
},
{
"type": "terminalfont",
"key": " ",
"keyColor": "blue",
},
{
"type": "cpu",
"key": " ",
"keyColor": "blue",
"format": "{name} ({cores-physical}c/{cores-logical}t) [{freq-max}]",
},
{
"type": "gpu",
"key": "󰢮 ",
"keyColor": "blue",
},
{
"type": "memory",
"key": " ",
"keyColor": "blue",
},
{
"type": "swap",
"key": " ",
"keyColor": "blue",
},
{
"type": "disk",
"key": "󰋊 ",
"keyColor": "blue",
},
{
"type": "battery",
"key": " ",
"keyColor": "blue",
},
{
"type": "poweradapter",
"key": " ",
"keyColor": "blue",
}
]
}
+125
View File
@@ -0,0 +1,125 @@
{
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/master/doc/json_schema.json",
"logo": {
"source": "~/.config/fastfetch/0-logos/paragon/armada.txt",
"color": {
"1": "white",
"2": "yellow",
"3": "red",
"4": "red",
},
"padding": {
"right": 2
},
},
"modules": [
{
"type": "title",
"key": " ",
"keyColor": "cyan",
},
{
"type": "host",
"key": " ",
"keyColor": "cyan",
},
{
"type": "display",
"key": " ",
"keyColor": "cyan",
},
{
"type": "colors",
"symbol": "circle",
"key": " ",
"keyColor": "cyan",
},
{
"type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -"
},
{
"type": "os",
"key": " ",
"keyColor": "cyan",
"outputColor": "yellow",
"format": "Paragon Armada",
},
{
"type": "kernel",
"key": " ",
"keyColor": "cyan",
},
{
"type": "uptime",
"key": "󱑁 ",
"keyColor": "cyan",
},
{
"type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -"
},
{
"type": "de",
"key": " ",
"keyColor": "blue",
},
{
"type": "wm",
"key": " ",
"keyColor": "blue",
},
{
"type": "shell",
"key": " ",
"keyColor": "blue",
},
{
"type": "terminal",
"key": " ",
"keyColor": "blue",
"format": "{$MY_TERMINAL}"
},
{
"type": "terminalfont",
"key": " ",
"keyColor": "blue",
},
{
"type": "cpu",
"key": " ",
"keyColor": "blue",
"format": "{name} ({cores-physical}c/{cores-logical}t) [{freq-max}]",
},
{
"type": "gpu",
"key": "󰢮 ",
"keyColor": "blue",
},
{
"type": "memory",
"key": " ",
"keyColor": "blue",
},
{
"type": "swap",
"key": " ",
"keyColor": "blue",
},
{
"type": "disk",
"key": "󰋊 ",
"keyColor": "blue",
},
{
"type": "battery",
"key": " ",
"keyColor": "blue",
},
{
"type": "poweradapter",
"key": " ",
"keyColor": "blue",
}
]
}
+124
View File
@@ -0,0 +1,124 @@
{
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/master/doc/json_schema.json",
"logo": {
"source": "~/.config/fastfetch/0-logos/paragon/paragon.txt",
"color": {
"1": "white",
"2": "yellow",
"3": "red",
},
"padding": {
"right": 2
},
},
"modules": [
{
"type": "title",
"key": " ",
"keyColor": "cyan",
},
{
"type": "host",
"key": " ",
"keyColor": "cyan",
},
{
"type": "display",
"key": " ",
"keyColor": "cyan",
},
{
"type": "colors",
"symbol": "circle",
"key": " ",
"keyColor": "cyan",
},
{
"type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -"
},
{
"type": "os",
"key": " ",
"keyColor": "cyan",
"outputColor": "yellow",
"format": "Paragon",
},
{
"type": "kernel",
"key": " ",
"keyColor": "cyan",
},
{
"type": "uptime",
"key": "󱑁 ",
"keyColor": "cyan",
},
{
"type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -"
},
{
"type": "de",
"key": " ",
"keyColor": "blue",
},
{
"type": "wm",
"key": " ",
"keyColor": "blue",
},
{
"type": "shell",
"key": " ",
"keyColor": "blue",
},
{
"type": "terminal",
"key": " ",
"keyColor": "blue",
"format": "{$MY_TERMINAL}"
},
{
"type": "terminalfont",
"key": " ",
"keyColor": "blue",
},
{
"type": "cpu",
"key": " ",
"keyColor": "blue",
"format": "{name} ({cores-physical}c/{cores-logical}t) [{freq-max}]",
},
{
"type": "gpu",
"key": "󰢮 ",
"keyColor": "blue",
},
{
"type": "memory",
"key": " ",
"keyColor": "blue",
},
{
"type": "swap",
"key": " ",
"keyColor": "blue",
},
{
"type": "disk",
"key": "󰋊 ",
"keyColor": "blue",
},
{
"type": "battery",
"key": " ",
"keyColor": "blue",
},
{
"type": "poweradapter",
"key": " ",
"keyColor": "blue",
}
]
}
+126
View File
@@ -0,0 +1,126 @@
{
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/master/doc/json_schema.json",
"logo": {
"source": "~/.config/fastfetch/0-logos/paragon/eclectic.txt",
"color": {
"1": "white",
"2": "yellow",
"3": "red",
"4": "yellow",
"5": "red",
},
"padding": {
"right": 2
},
},
"modules": [
{
"type": "title",
"key": " ",
"keyColor": "cyan",
},
{
"type": "host",
"key": " ",
"keyColor": "cyan",
},
{
"type": "display",
"key": " ",
"keyColor": "cyan",
},
{
"type": "colors",
"symbol": "circle",
"key": " ",
"keyColor": "cyan",
},
{
"type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -"
},
{
"type": "os",
"key": " ",
"keyColor": "cyan",
"outputColor": "yellow",
"format": "Paragon Eclectic Edition",
},
{
"type": "kernel",
"key": " ",
"keyColor": "cyan",
},
{
"type": "uptime",
"key": "󱑁 ",
"keyColor": "cyan",
},
{
"type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -"
},
{
"type": "de",
"key": " ",
"keyColor": "blue",
},
{
"type": "wm",
"key": " ",
"keyColor": "blue",
},
{
"type": "shell",
"key": " ",
"keyColor": "blue",
},
{
"type": "terminal",
"key": " ",
"keyColor": "blue",
"format": "{$MY_TERMINAL}"
},
{
"type": "terminalfont",
"key": " ",
"keyColor": "blue",
},
{
"type": "cpu",
"key": " ",
"keyColor": "blue",
"format": "{name} ({cores-physical}c/{cores-logical}t) [{freq-max}]",
},
{
"type": "gpu",
"key": "󰢮 ",
"keyColor": "blue",
},
{
"type": "memory",
"key": " ",
"keyColor": "blue",
},
{
"type": "swap",
"key": " ",
"keyColor": "blue",
},
{
"type": "disk",
"key": "󰋊 ",
"keyColor": "blue",
},
{
"type": "battery",
"key": " ",
"keyColor": "blue",
},
{
"type": "poweradapter",
"key": " ",
"keyColor": "blue",
}
]
}
+124
View File
@@ -0,0 +1,124 @@
{
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/master/doc/json_schema.json",
"logo": {
"source": "~/.config/fastfetch/0-logos/paragon/falcon.txt",
"color": {
"1": "white",
"2": "yellow",
"3": "red",
},
"padding": {
"right": 2
},
},
"modules": [
{
"type": "title",
"key": " ",
"keyColor": "cyan",
},
{
"type": "host",
"key": " ",
"keyColor": "cyan",
},
{
"type": "display",
"key": " ",
"keyColor": "cyan",
},
{
"type": "colors",
"symbol": "circle",
"key": " ",
"keyColor": "cyan",
},
{
"type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -"
},
{
"type": "os",
"key": " ",
"keyColor": "cyan",
"outputColor": "yellow",
"format": "Paragon Falcon",
},
{
"type": "kernel",
"key": " ",
"keyColor": "cyan",
},
{
"type": "uptime",
"key": "󱑁 ",
"keyColor": "cyan",
},
{
"type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -"
},
{
"type": "de",
"key": " ",
"keyColor": "blue",
},
{
"type": "wm",
"key": " ",
"keyColor": "blue",
},
{
"type": "shell",
"key": " ",
"keyColor": "blue",
},
{
"type": "terminal",
"key": " ",
"keyColor": "blue",
"format": "{$MY_TERMINAL}"
},
{
"type": "terminalfont",
"key": " ",
"keyColor": "blue",
},
{
"type": "cpu",
"key": " ",
"keyColor": "blue",
"format": "{name} ({cores-physical}c/{cores-logical}t) [{freq-max}]",
},
{
"type": "gpu",
"key": "󰢮 ",
"keyColor": "blue",
},
{
"type": "memory",
"key": " ",
"keyColor": "blue",
},
{
"type": "swap",
"key": " ",
"keyColor": "blue",
},
{
"type": "disk",
"key": "󰋊 ",
"keyColor": "blue",
},
{
"type": "battery",
"key": " ",
"keyColor": "blue",
},
{
"type": "poweradapter",
"key": " ",
"keyColor": "blue",
}
]
}
+124
View File
@@ -0,0 +1,124 @@
{
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/master/doc/json_schema.json",
"logo": {
"source": "~/.config/fastfetch/0-logos/paragon/hyperion.txt",
"color": {
"1": "white",
"2": "yellow",
"3": "red",
},
"padding": {
"right": 2
},
},
"modules": [
{
"type": "title",
"key": " ",
"keyColor": "cyan",
},
{
"type": "host",
"key": " ",
"keyColor": "cyan",
},
{
"type": "display",
"key": " ",
"keyColor": "cyan",
},
{
"type": "colors",
"symbol": "circle",
"key": " ",
"keyColor": "cyan",
},
{
"type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -"
},
{
"type": "os",
"key": " ",
"keyColor": "cyan",
"outputColor": "yellow",
"format": "Paragon Hyperion",
},
{
"type": "kernel",
"key": " ",
"keyColor": "cyan",
},
{
"type": "uptime",
"key": "󱑁 ",
"keyColor": "cyan",
},
{
"type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -"
},
{
"type": "de",
"key": " ",
"keyColor": "blue",
},
{
"type": "wm",
"key": " ",
"keyColor": "blue",
},
{
"type": "shell",
"key": " ",
"keyColor": "blue",
},
{
"type": "terminal",
"key": " ",
"keyColor": "blue",
"format": "{$MY_TERMINAL}"
},
{
"type": "terminalfont",
"key": " ",
"keyColor": "blue",
},
{
"type": "cpu",
"key": " ",
"keyColor": "blue",
"format": "{name} ({cores-physical}c/{cores-logical}t) [{freq-max}]",
},
{
"type": "gpu",
"key": "󰢮 ",
"keyColor": "blue",
},
{
"type": "memory",
"key": " ",
"keyColor": "blue",
},
{
"type": "swap",
"key": " ",
"keyColor": "blue",
},
{
"type": "disk",
"key": "󰋊 ",
"keyColor": "blue",
},
{
"type": "battery",
"key": " ",
"keyColor": "blue",
},
{
"type": "poweradapter",
"key": " ",
"keyColor": "blue",
}
]
}
+125
View File
@@ -0,0 +1,125 @@
{
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/master/doc/json_schema.json",
"logo": {
"source": "~/.config/fastfetch/0-logos/paragon/mirage.txt",
"color": {
"1": "white",
"2": "yellow",
"3": "red",
"4": "red",
},
"padding": {
"right": 2
},
},
"modules": [
{
"type": "title",
"key": " ",
"keyColor": "cyan",
},
{
"type": "host",
"key": " ",
"keyColor": "cyan",
},
{
"type": "display",
"key": " ",
"keyColor": "cyan",
},
{
"type": "colors",
"symbol": "circle",
"key": " ",
"keyColor": "cyan",
},
{
"type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -"
},
{
"type": "os",
"key": " ",
"keyColor": "cyan",
"outputColor": "yellow",
"format": "Paragon Mirage",
},
{
"type": "kernel",
"key": " ",
"keyColor": "cyan",
},
{
"type": "uptime",
"key": "󱑁 ",
"keyColor": "cyan",
},
{
"type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -"
},
{
"type": "de",
"key": " ",
"keyColor": "blue",
},
{
"type": "wm",
"key": " ",
"keyColor": "blue",
},
{
"type": "shell",
"key": " ",
"keyColor": "blue",
},
{
"type": "terminal",
"key": " ",
"keyColor": "blue",
"format": "{$MY_TERMINAL}"
},
{
"type": "terminalfont",
"key": " ",
"keyColor": "blue",
},
{
"type": "cpu",
"key": " ",
"keyColor": "blue",
"format": "{name} ({cores-physical}c/{cores-logical}t) [{freq-max}]",
},
{
"type": "gpu",
"key": "󰢮 ",
"keyColor": "blue",
},
{
"type": "memory",
"key": " ",
"keyColor": "blue",
},
{
"type": "swap",
"key": " ",
"keyColor": "blue",
},
{
"type": "disk",
"key": "󰋊 ",
"keyColor": "blue",
},
{
"type": "battery",
"key": " ",
"keyColor": "blue",
},
{
"type": "poweradapter",
"key": " ",
"keyColor": "blue",
}
]
}
@@ -0,0 +1,125 @@
{
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/master/doc/json_schema.json",
"logo": {
"source": "~/.config/fastfetch/0-logos/paraphernalia/arcade.txt",
"color": {
"1": "red",
"2": "cyan",
"3": "red",
"4": "cyan"
},
"padding": {
"right": 2
},
},
"modules": [
{
"type": "title",
"key": " ",
"keyColor": "cyan",
},
{
"type": "host",
"key": " ",
"keyColor": "cyan",
},
{
"type": "display",
"key": " ",
"keyColor": "cyan",
},
{
"type": "colors",
"symbol": "circle",
"key": " ",
"keyColor": "cyan",
},
{
"type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -"
},
{
"type": "os",
"key": " ",
"keyColor": "cyan",
"outputColor": "red",
"format": "Paraphernalia OS Arcade",
},
{
"type": "kernel",
"key": " ",
"keyColor": "cyan",
},
{
"type": "uptime",
"key": "󱑁 ",
"keyColor": "cyan",
},
{
"type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -"
},
{
"type": "de",
"key": " ",
"keyColor": "blue",
},
{
"type": "wm",
"key": " ",
"keyColor": "blue",
},
{
"type": "shell",
"key": " ",
"keyColor": "blue",
},
{
"type": "terminal",
"key": " ",
"keyColor": "blue",
"format": "{$MY_TERMINAL}"
},
{
"type": "terminalfont",
"key": " ",
"keyColor": "blue",
},
{
"type": "cpu",
"key": " ",
"keyColor": "blue",
"format": "{name} ({cores-physical}c/{cores-logical}t) [{freq-max}]",
},
{
"type": "gpu",
"key": "󰢮 ",
"keyColor": "blue",
},
{
"type": "memory",
"key": " ",
"keyColor": "blue",
},
{
"type": "swap",
"key": " ",
"keyColor": "blue",
},
{
"type": "disk",
"key": "󰋊 ",
"keyColor": "blue",
},
{
"type": "battery",
"key": " ",
"keyColor": "blue",
},
{
"type": "poweradapter",
"key": " ",
"keyColor": "blue",
}
]
}
@@ -0,0 +1,125 @@
{
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/master/doc/json_schema.json",
"logo": {
"source": "~/.config/fastfetch/0-logos/paraphernalia/conduit.txt",
"color": {
"1": "red",
"2": "cyan",
"3": "red",
"4": "cyan"
},
"padding": {
"right": 2
},
},
"modules": [
{
"type": "title",
"key": " ",
"keyColor": "cyan",
},
{
"type": "host",
"key": " ",
"keyColor": "cyan",
},
{
"type": "display",
"key": " ",
"keyColor": "cyan",
},
{
"type": "colors",
"symbol": "circle",
"key": " ",
"keyColor": "cyan",
},
{
"type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -"
},
{
"type": "os",
"key": " ",
"keyColor": "cyan",
"outputColor": "red",
"format": "Paraphernalia OS Conduit",
},
{
"type": "kernel",
"key": " ",
"keyColor": "cyan",
},
{
"type": "uptime",
"key": "󱑁 ",
"keyColor": "cyan",
},
{
"type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -"
},
{
"type": "de",
"key": " ",
"keyColor": "blue",
},
{
"type": "wm",
"key": " ",
"keyColor": "blue",
},
{
"type": "shell",
"key": " ",
"keyColor": "blue",
},
{
"type": "terminal",
"key": " ",
"keyColor": "blue",
"format": "{$MY_TERMINAL}"
},
{
"type": "terminalfont",
"key": " ",
"keyColor": "blue",
},
{
"type": "cpu",
"key": " ",
"keyColor": "blue",
"format": "{name} ({cores-physical}c/{cores-logical}t) [{freq-max}]",
},
{
"type": "gpu",
"key": "󰢮 ",
"keyColor": "blue",
},
{
"type": "memory",
"key": " ",
"keyColor": "blue",
},
{
"type": "swap",
"key": " ",
"keyColor": "blue",
},
{
"type": "disk",
"key": "󰋊 ",
"keyColor": "blue",
},
{
"type": "battery",
"key": " ",
"keyColor": "blue",
},
{
"type": "poweradapter",
"key": " ",
"keyColor": "blue",
}
]
}
+125
View File
@@ -0,0 +1,125 @@
{
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/master/doc/json_schema.json",
"logo": {
"source": "~/.config/fastfetch/0-logos/paraphernalia/core.txt",
"color": {
"1": "red",
"2": "cyan",
"3": "red",
"4": "cyan"
},
"padding": {
"right": 2
},
},
"modules": [
{
"type": "title",
"key": " ",
"keyColor": "cyan",
},
{
"type": "host",
"key": " ",
"keyColor": "cyan",
},
{
"type": "display",
"key": " ",
"keyColor": "cyan",
},
{
"type": "colors",
"symbol": "circle",
"key": " ",
"keyColor": "cyan",
},
{
"type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -"
},
{
"type": "os",
"key": " ",
"keyColor": "cyan",
"outputColor": "red",
"format": "Paraphernalia OS Core",
},
{
"type": "kernel",
"key": " ",
"keyColor": "cyan",
},
{
"type": "uptime",
"key": "󱑁 ",
"keyColor": "cyan",
},
{
"type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -"
},
{
"type": "de",
"key": " ",
"keyColor": "blue",
},
{
"type": "wm",
"key": " ",
"keyColor": "blue",
},
{
"type": "shell",
"key": " ",
"keyColor": "blue",
},
{
"type": "terminal",
"key": " ",
"keyColor": "blue",
"format": "{$MY_TERMINAL}"
},
{
"type": "terminalfont",
"key": " ",
"keyColor": "blue",
},
{
"type": "cpu",
"key": " ",
"keyColor": "blue",
"format": "{name} ({cores-physical}c/{cores-logical}t) [{freq-max}]",
},
{
"type": "gpu",
"key": "󰢮 ",
"keyColor": "blue",
},
{
"type": "memory",
"key": " ",
"keyColor": "blue",
},
{
"type": "swap",
"key": " ",
"keyColor": "blue",
},
{
"type": "disk",
"key": "󰋊 ",
"keyColor": "blue",
},
{
"type": "battery",
"key": " ",
"keyColor": "blue",
},
{
"type": "poweradapter",
"key": " ",
"keyColor": "blue",
}
]
}
@@ -0,0 +1,124 @@
{
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/master/doc/json_schema.json",
"logo": {
"source": "~/.config/fastfetch/0-logos/paraphernalia/paraphernalia.txt",
"color": {
"1": "red",
"2": "cyan",
"3": "red",
},
"padding": {
"right": 2
},
},
"modules": [
{
"type": "title",
"key": " ",
"keyColor": "cyan",
},
{
"type": "host",
"key": " ",
"keyColor": "cyan",
},
{
"type": "display",
"key": " ",
"keyColor": "cyan",
},
{
"type": "colors",
"symbol": "circle",
"key": " ",
"keyColor": "cyan",
},
{
"type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -"
},
{
"type": "os",
"key": " ",
"keyColor": "cyan",
"outputColor": "red",
"format": "Paraphernalia OS",
},
{
"type": "kernel",
"key": " ",
"keyColor": "cyan",
},
{
"type": "uptime",
"key": "󱑁 ",
"keyColor": "cyan",
},
{
"type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -"
},
{
"type": "de",
"key": " ",
"keyColor": "blue",
},
{
"type": "wm",
"key": " ",
"keyColor": "blue",
},
{
"type": "shell",
"key": " ",
"keyColor": "blue",
},
{
"type": "terminal",
"key": " ",
"keyColor": "blue",
"format": "{$MY_TERMINAL}"
},
{
"type": "terminalfont",
"key": " ",
"keyColor": "blue",
},
{
"type": "cpu",
"key": " ",
"keyColor": "blue",
"format": "{name} ({cores-physical}c/{cores-logical}t) [{freq-max}]",
},
{
"type": "gpu",
"key": "󰢮 ",
"keyColor": "blue",
},
{
"type": "memory",
"key": " ",
"keyColor": "blue",
},
{
"type": "swap",
"key": " ",
"keyColor": "blue",
},
{
"type": "disk",
"key": "󰋊 ",
"keyColor": "blue",
},
{
"type": "battery",
"key": " ",
"keyColor": "blue",
},
{
"type": "poweradapter",
"key": " ",
"keyColor": "blue",
}
]
}
@@ -0,0 +1,126 @@
{
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/master/doc/json_schema.json",
"logo": {
"source": "~/.config/fastfetch/0-logos/paraphernalia/enterprise.txt",
"color": {
"1": "red",
"2": "yellow",
"3": "red",
"4": "yellow",
"5": "cyan",
},
"padding": {
"right": 2
},
},
"modules": [
{
"type": "title",
"key": " ",
"keyColor": "cyan",
},
{
"type": "host",
"key": " ",
"keyColor": "cyan",
},
{
"type": "display",
"key": " ",
"keyColor": "cyan",
},
{
"type": "colors",
"symbol": "circle",
"key": " ",
"keyColor": "cyan",
},
{
"type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -"
},
{
"type": "os",
"key": " ",
"keyColor": "cyan",
"outputColor": "red",
"format": "Paraphernalia OS Enterprise",
},
{
"type": "kernel",
"key": " ",
"keyColor": "cyan",
},
{
"type": "uptime",
"key": "󱑁 ",
"keyColor": "cyan",
},
{
"type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -"
},
{
"type": "de",
"key": " ",
"keyColor": "blue",
},
{
"type": "wm",
"key": " ",
"keyColor": "blue",
},
{
"type": "shell",
"key": " ",
"keyColor": "blue",
},
{
"type": "terminal",
"key": " ",
"keyColor": "blue",
"format": "{$MY_TERMINAL}"
},
{
"type": "terminalfont",
"key": " ",
"keyColor": "blue",
},
{
"type": "cpu",
"key": " ",
"keyColor": "blue",
"format": "{name} ({cores-physical}c/{cores-logical}t) [{freq-max}]",
},
{
"type": "gpu",
"key": "󰢮 ",
"keyColor": "blue",
},
{
"type": "memory",
"key": " ",
"keyColor": "blue",
},
{
"type": "swap",
"key": " ",
"keyColor": "blue",
},
{
"type": "disk",
"key": "󰋊 ",
"keyColor": "blue",
},
{
"type": "battery",
"key": " ",
"keyColor": "blue",
},
{
"type": "poweradapter",
"key": " ",
"keyColor": "blue",
}
]
}
@@ -0,0 +1,126 @@
{
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/master/doc/json_schema.json",
"logo": {
"source": "~/.config/fastfetch/0-logos/paraphernalia/foundation.txt",
"color": {
"1": "red",
"2": "cyan",
"3": "yellow",
"4": "yellow",
"5": "yellow",
},
"padding": {
"right": 2
},
},
"modules": [
{
"type": "title",
"key": " ",
"keyColor": "cyan",
},
{
"type": "host",
"key": " ",
"keyColor": "cyan",
},
{
"type": "display",
"key": " ",
"keyColor": "cyan",
},
{
"type": "colors",
"symbol": "circle",
"key": " ",
"keyColor": "cyan",
},
{
"type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -"
},
{
"type": "os",
"key": " ",
"keyColor": "cyan",
"outputColor": "red",
"format": "Paraphernalia cOS Foundation",
},
{
"type": "kernel",
"key": " ",
"keyColor": "cyan",
},
{
"type": "uptime",
"key": "󱑁 ",
"keyColor": "cyan",
},
{
"type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -"
},
{
"type": "de",
"key": " ",
"keyColor": "blue",
},
{
"type": "wm",
"key": " ",
"keyColor": "blue",
},
{
"type": "shell",
"key": " ",
"keyColor": "blue",
},
{
"type": "terminal",
"key": " ",
"keyColor": "blue",
"format": "{$MY_TERMINAL}"
},
{
"type": "terminalfont",
"key": " ",
"keyColor": "blue",
},
{
"type": "cpu",
"key": " ",
"keyColor": "blue",
"format": "{name} ({cores-physical}c/{cores-logical}t) [{freq-max}]",
},
{
"type": "gpu",
"key": "󰢮 ",
"keyColor": "blue",
},
{
"type": "memory",
"key": " ",
"keyColor": "blue",
},
{
"type": "swap",
"key": " ",
"keyColor": "blue",
},
{
"type": "disk",
"key": "󰋊 ",
"keyColor": "blue",
},
{
"type": "battery",
"key": " ",
"keyColor": "blue",
},
{
"type": "poweradapter",
"key": " ",
"keyColor": "blue",
}
]
}
+125
View File
@@ -0,0 +1,125 @@
{
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/master/doc/json_schema.json",
"logo": {
"source": "~/.config/fastfetch/0-logos/paraphernalia/ghost.txt",
"color": {
"1": "red",
"2": "green",
"3": "green",
"4": "green",
},
"padding": {
"right": 2
},
},
"modules": [
{
"type": "title",
"key": " ",
"keyColor": "cyan",
},
{
"type": "host",
"key": " ",
"keyColor": "cyan",
},
{
"type": "display",
"key": " ",
"keyColor": "cyan",
},
{
"type": "colors",
"symbol": "circle",
"key": " ",
"keyColor": "cyan",
},
{
"type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -"
},
{
"type": "os",
"key": " ",
"keyColor": "cyan",
"outputColor": "red",
"format": "Paraphernalia OS Ghost",
},
{
"type": "kernel",
"key": " ",
"keyColor": "cyan",
},
{
"type": "uptime",
"key": "󱑁 ",
"keyColor": "cyan",
},
{
"type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -"
},
{
"type": "de",
"key": " ",
"keyColor": "blue",
},
{
"type": "wm",
"key": " ",
"keyColor": "blue",
},
{
"type": "shell",
"key": " ",
"keyColor": "blue",
},
{
"type": "terminal",
"key": " ",
"keyColor": "blue",
"format": "{$MY_TERMINAL}"
},
{
"type": "terminalfont",
"key": " ",
"keyColor": "blue",
},
{
"type": "cpu",
"key": " ",
"keyColor": "blue",
"format": "{name} ({cores-physical}c/{cores-logical}t) [{freq-max}]",
},
{
"type": "gpu",
"key": "󰢮 ",
"keyColor": "blue",
},
{
"type": "memory",
"key": " ",
"keyColor": "blue",
},
{
"type": "swap",
"key": " ",
"keyColor": "blue",
},
{
"type": "disk",
"key": "󰋊 ",
"keyColor": "blue",
},
{
"type": "battery",
"key": " ",
"keyColor": "blue",
},
{
"type": "poweradapter",
"key": " ",
"keyColor": "blue",
}
]
}
@@ -0,0 +1,127 @@
{
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/master/doc/json_schema.json",
"logo": {
"source": "~/.config/fastfetch/0-logos/paraphernalia/hardened.txt",
"color": {
"1": "red",
"2": "cyan",
"3": "white",
"4": "white",
"5": "white",
"6": "white",
},
"padding": {
"right": 2
},
},
"modules": [
{
"type": "title",
"key": " ",
"keyColor": "cyan",
},
{
"type": "host",
"key": " ",
"keyColor": "cyan",
},
{
"type": "display",
"key": " ",
"keyColor": "cyan",
},
{
"type": "colors",
"symbol": "circle",
"key": " ",
"keyColor": "cyan",
},
{
"type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -"
},
{
"type": "os",
"key": " ",
"keyColor": "cyan",
"outputColor": "red",
"format": "Paraphernalia OS Hardened",
},
{
"type": "kernel",
"key": " ",
"keyColor": "cyan",
},
{
"type": "uptime",
"key": "󱑁 ",
"keyColor": "cyan",
},
{
"type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -"
},
{
"type": "de",
"key": " ",
"keyColor": "blue",
},
{
"type": "wm",
"key": " ",
"keyColor": "blue",
},
{
"type": "shell",
"key": " ",
"keyColor": "blue",
},
{
"type": "terminal",
"key": " ",
"keyColor": "blue",
"format": "{$MY_TERMINAL}"
},
{
"type": "terminalfont",
"key": " ",
"keyColor": "blue",
},
{
"type": "cpu",
"key": " ",
"keyColor": "blue",
"format": "{name} ({cores-physical}c/{cores-logical}t) [{freq-max}]",
},
{
"type": "gpu",
"key": "󰢮 ",
"keyColor": "blue",
},
{
"type": "memory",
"key": " ",
"keyColor": "blue",
},
{
"type": "swap",
"key": " ",
"keyColor": "blue",
},
{
"type": "disk",
"key": "󰋊 ",
"keyColor": "blue",
},
{
"type": "battery",
"key": " ",
"keyColor": "blue",
},
{
"type": "poweradapter",
"key": " ",
"keyColor": "blue",
}
]
}
@@ -0,0 +1,130 @@
{
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/master/doc/json_schema.json",
"logo": {
"source": "~/.config/fastfetch/0-logos/paraphernalia/matrix.txt",
"color": {
"1": "red",
"2": "white",
"3": "red",
"4": "red",
"5": "green",
"6": "blue",
"7": "red",
"8": "yellow",
"9": "cyan",
},
"padding": {
"right": 2
},
},
"modules": [
{
"type": "title",
"key": " ",
"keyColor": "cyan",
},
{
"type": "host",
"key": " ",
"keyColor": "cyan",
},
{
"type": "display",
"key": " ",
"keyColor": "cyan",
},
{
"type": "colors",
"symbol": "circle",
"key": " ",
"keyColor": "cyan",
},
{
"type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -"
},
{
"type": "os",
"key": " ",
"keyColor": "cyan",
"outputColor": "red",
"format": "Paraphernalia OS Matrix",
},
{
"type": "kernel",
"key": " ",
"keyColor": "cyan",
},
{
"type": "uptime",
"key": "󱑁 ",
"keyColor": "cyan",
},
{
"type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -"
},
{
"type": "de",
"key": " ",
"keyColor": "blue",
},
{
"type": "wm",
"key": " ",
"keyColor": "blue",
},
{
"type": "shell",
"key": " ",
"keyColor": "blue",
},
{
"type": "terminal",
"key": " ",
"keyColor": "blue",
"format": "{$MY_TERMINAL}"
},
{
"type": "terminalfont",
"key": " ",
"keyColor": "blue",
},
{
"type": "cpu",
"key": " ",
"keyColor": "blue",
"format": "{name} ({cores-physical}c/{cores-logical}t) [{freq-max}]",
},
{
"type": "gpu",
"key": "󰢮 ",
"keyColor": "blue",
},
{
"type": "memory",
"key": " ",
"keyColor": "blue",
},
{
"type": "swap",
"key": " ",
"keyColor": "blue",
},
{
"type": "disk",
"key": "󰋊 ",
"keyColor": "blue",
},
{
"type": "battery",
"key": " ",
"keyColor": "blue",
},
{
"type": "poweradapter",
"key": " ",
"keyColor": "blue",
}
]
}
+127
View File
@@ -0,0 +1,127 @@
{
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/master/doc/json_schema.json",
"logo": {
"source": "~/.config/fastfetch/0-logos/paraphernalia/nomad.txt",
"color": {
"1": "red",
"2": "yellow",
"3": "yellow",
"4": "yellow",
"5": "white",
"6": "yellow",
},
"padding": {
"right": 2
},
},
"modules": [
{
"type": "title",
"key": " ",
"keyColor": "cyan",
},
{
"type": "host",
"key": " ",
"keyColor": "cyan",
},
{
"type": "display",
"key": " ",
"keyColor": "cyan",
},
{
"type": "colors",
"symbol": "circle",
"key": " ",
"keyColor": "cyan",
},
{
"type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -"
},
{
"type": "os",
"key": " ",
"keyColor": "cyan",
"outputColor": "red",
"format": "Paraphernalia cOS Nomad",
},
{
"type": "kernel",
"key": " ",
"keyColor": "cyan",
},
{
"type": "uptime",
"key": "󱑁 ",
"keyColor": "cyan",
},
{
"type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -"
},
{
"type": "de",
"key": " ",
"keyColor": "blue",
},
{
"type": "wm",
"key": " ",
"keyColor": "blue",
},
{
"type": "shell",
"key": " ",
"keyColor": "blue",
},
{
"type": "terminal",
"key": " ",
"keyColor": "blue",
"format": "{$MY_TERMINAL}"
},
{
"type": "terminalfont",
"key": " ",
"keyColor": "blue",
},
{
"type": "cpu",
"key": " ",
"keyColor": "blue",
"format": "{name} ({cores-physical}c/{cores-logical}t) [{freq-max}]",
},
{
"type": "gpu",
"key": "󰢮 ",
"keyColor": "blue",
},
{
"type": "memory",
"key": " ",
"keyColor": "blue",
},
{
"type": "swap",
"key": " ",
"keyColor": "blue",
},
{
"type": "disk",
"key": "󰋊 ",
"keyColor": "blue",
},
{
"type": "battery",
"key": " ",
"keyColor": "blue",
},
{
"type": "poweradapter",
"key": " ",
"keyColor": "blue",
}
]
}
@@ -0,0 +1,126 @@
{
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/master/doc/json_schema.json",
"logo": {
"source": "~/.config/fastfetch/0-logos/paraphernalia/phantom.txt",
"color": {
"1": "red",
"2": "white",
"3": "red",
"4": "white",
"5": "white",
},
"padding": {
"right": 2
},
},
"modules": [
{
"type": "title",
"key": " ",
"keyColor": "cyan",
},
{
"type": "host",
"key": " ",
"keyColor": "cyan",
},
{
"type": "display",
"key": " ",
"keyColor": "cyan",
},
{
"type": "colors",
"symbol": "circle",
"key": " ",
"keyColor": "cyan",
},
{
"type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -"
},
{
"type": "os",
"key": " ",
"keyColor": "cyan",
"outputColor": "red",
"format": "Paraphernalia cOS Phantom",
},
{
"type": "kernel",
"key": " ",
"keyColor": "cyan",
},
{
"type": "uptime",
"key": "󱑁 ",
"keyColor": "cyan",
},
{
"type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -"
},
{
"type": "de",
"key": " ",
"keyColor": "blue",
},
{
"type": "wm",
"key": " ",
"keyColor": "blue",
},
{
"type": "shell",
"key": " ",
"keyColor": "blue",
},
{
"type": "terminal",
"key": " ",
"keyColor": "blue",
"format": "{$MY_TERMINAL}"
},
{
"type": "terminalfont",
"key": " ",
"keyColor": "blue",
},
{
"type": "cpu",
"key": " ",
"keyColor": "blue",
"format": "{name} ({cores-physical}c/{cores-logical}t) [{freq-max}]",
},
{
"type": "gpu",
"key": "󰢮 ",
"keyColor": "blue",
},
{
"type": "memory",
"key": " ",
"keyColor": "blue",
},
{
"type": "swap",
"key": " ",
"keyColor": "blue",
},
{
"type": "disk",
"key": "󰋊 ",
"keyColor": "blue",
},
{
"type": "battery",
"key": " ",
"keyColor": "blue",
},
{
"type": "poweradapter",
"key": " ",
"keyColor": "blue",
}
]
}
@@ -0,0 +1,130 @@
{
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/master/doc/json_schema.json",
"logo": {
"source": "~/.config/fastfetch/0-logos/paraphernalia/wraith.txt",
"color": {
"1": "red",
"2": "white",
"3": "red",
"4": "red",
"5": "green",
"6": "blue",
"7": "red",
"8": "yellow",
"9": "cyan",
},
"padding": {
"right": 2
},
},
"modules": [
{
"type": "title",
"key": " ",
"keyColor": "cyan",
},
{
"type": "host",
"key": " ",
"keyColor": "cyan",
},
{
"type": "display",
"key": " ",
"keyColor": "cyan",
},
{
"type": "colors",
"symbol": "circle",
"key": " ",
"keyColor": "cyan",
},
{
"type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -"
},
{
"type": "os",
"key": " ",
"keyColor": "cyan",
"outputColor": "red",
"format": "Paraphernalia cOS Wraith",
},
{
"type": "kernel",
"key": " ",
"keyColor": "cyan",
},
{
"type": "uptime",
"key": "󱑁 ",
"keyColor": "cyan",
},
{
"type": "custom",
"format": "\u001b[37m✄ - - - - - - - - - - - - - -"
},
{
"type": "de",
"key": " ",
"keyColor": "blue",
},
{
"type": "wm",
"key": " ",
"keyColor": "blue",
},
{
"type": "shell",
"key": " ",
"keyColor": "blue",
},
{
"type": "terminal",
"key": " ",
"keyColor": "blue",
"format": "{$MY_TERMINAL}"
},
{
"type": "terminalfont",
"key": " ",
"keyColor": "blue",
},
{
"type": "cpu",
"key": " ",
"keyColor": "blue",
"format": "{name} ({cores-physical}c/{cores-logical}t) [{freq-max}]",
},
{
"type": "gpu",
"key": "󰢮 ",
"keyColor": "blue",
},
{
"type": "memory",
"key": " ",
"keyColor": "blue",
},
{
"type": "swap",
"key": " ",
"keyColor": "blue",
},
{
"type": "disk",
"key": "󰋊 ",
"keyColor": "blue",
},
{
"type": "battery",
"key": " ",
"keyColor": "blue",
},
{
"type": "poweradapter",
"key": " ",
"keyColor": "blue",
}
]
}
@@ -1,9 +1,9 @@
# Wallpaper # Wallpaper
# env = WALLPAPER,$HOME/Pictures/Wallpapers/Arcane/Jinx/jinx-fog.png # env = WALLPAPER,$HOME/Pictures/Wallpapers/Arcane/Jinx/jinx-fog.png
env = WALLPAPER,$HOME/Pictures/Wallpapers/Scapes/Deserts/desert-night.jpg env = WALLPAPER,$HOME/Pictures/Wallpapers/Anime/Madskillz/madskillz-girl-station.png
# Lockscreen wallpaper # Lockscreen wallpaper
env = LOCK_WALLPAPER,$HOME/Pictures/Wallpapers/Arcane/Scenes/arcane-airship.png env = LOCK_WALLPAPER,$HOME/Pictures/Wallpapers/Scapes/Snowy/snowy-night.png
env = LOCK_BLUR_PASSES,0 # 0 disable blurring env = LOCK_BLUR_PASSES,0 # 0 disable blurring
-1
View File
@@ -2,7 +2,6 @@
# Initialize dbus # Initialize dbus
exec-once = dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP exec-once = dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP
# Set workspaces to hundreds for the scroll-to-left support # Set workspaces to hundreds for the scroll-to-left support
# exec-once = bash -c "sleep 1 && for monitor in $(hyprctl monitors -j | jq -r '.[].name'); do hyprctl dispatch workspace 100 && hyprctl dispatch focusworkspaceoncurrentmonitor 100; done"
exec-once = ~/.config/hypr/scripts/set-workspaces.sh exec-once = ~/.config/hypr/scripts/set-workspaces.sh
# Initialize sleep # Initialize sleep
exec-once = uwsm app -- systemd-inhibit --who="Hyprland config" --why="wlogout keybind" --what=handle-power-key --mode=block sleep infinity exec-once = uwsm app -- systemd-inhibit --who="Hyprland config" --why="wlogout keybind" --what=handle-power-key --mode=block sleep infinity
+27 -18
View File
@@ -6,6 +6,10 @@ bindln = Shift_L, ALT_L, exec, hyprctl switchxkblayout main next
bindln = ALT_L, Shift_L, exec, hyprctl switchxkblayout main next bindln = ALT_L, Shift_L, exec, hyprctl switchxkblayout main next
# enter key bind
bind = $mainMod, space, sendshortcut, , Return, activewindow
# Toggle performance mode # Toggle performance mode
bind = $mainMod, F1, exec, ~/.config/hypr/scripts/mode-performance.sh bind = $mainMod, F1, exec, ~/.config/hypr/scripts/mode-performance.sh
@@ -52,11 +56,11 @@ bind = $mainMod, code:49, exec, hyprlock
# waybar bind # waybar bind
bindr = $mainMod, w, exec, pkill -9 waybar || uwsm app -- waybar bind = $mainMod, W, exec, pkill -9 waybar || uwsm app -- waybar
# quickshell bind # quickshell bind
bindr = $mainMod SHIFT, w, exec, pkill -9 quickshell || uwsm app -- quickshell bind = $mainMod SHIFT, W, exec, pkill -9 quickshell || uwsm app -- quickshell
# multimedia binds # multimedia binds
@@ -82,27 +86,27 @@ bind = , XF86PowerOff, exec, systemctl suspend
# Move focus with mainMod + arrow keys # Move focus with mainMod + arrow keys
binde = $mainMod, H, movefocus, l binde = $mainMod, h, movefocus, l
binde = $mainMod, L, movefocus, r binde = $mainMod, l, movefocus, r
binde = $mainMod, K, movefocus, u binde = $mainMod, k, movefocus, u
binde = $mainMod, J, movefocus, d binde = $mainMod, j, movefocus, d
binde = $mainMod, left, movefocus, l binde = $mainMod, left, movefocus, l
binde = $mainMod, right, movefocus, r binde = $mainMod, right, movefocus, r
binde = $mainMod, up, movefocus, u binde = $mainMod, up, movefocus, u
binde = $mainMod, down, movefocus, d binde = $mainMod, down, movefocus, d
binde = $mainMod SHIFT, H, movewindow, l binde = $mainMod SHIFT, h, movewindow, l
binde = $mainMod SHIFT, L, movewindow, r binde = $mainMod SHIFT, l, movewindow, r
binde = $mainMod SHIFT, K, movewindow, u binde = $mainMod SHIFT, k, movewindow, u
binde = $mainMod SHIFT, J, movewindow, d binde = $mainMod SHIFT, j, movewindow, d
binde = $mainMod SHIFT, left, movewindow, l binde = $mainMod SHIFT, left, movewindow, l
binde = $mainMod SHIFT, right, movewindow, r binde = $mainMod SHIFT, right, movewindow, r
binde = $mainMod SHIFT, up, movewindow, u binde = $mainMod SHIFT, up, movewindow, u
binde = $mainMod SHIFT, down, movewindow, d binde = $mainMod SHIFT, down, movewindow, d
binde = ALT, TAB, cyclenext binden = ALT, TAB, cyclenext
# Scroll through existing workspaces with mainMod + scroll # Scroll through existing workspaces with mainMod + scroll
@@ -119,8 +123,13 @@ bindm = $mainMod SHIFT, mouse:272, resizewindow
# Resize with keyboard # Resize with keyboard
binde = $mainMod CTRL, h, resizeactive, -30 0 binde = $mainMod CTRL, h, resizeactive, -30 0
binde = $mainMod CTRL, l, resizeactive, 30 0 binde = $mainMod CTRL, l, resizeactive, 30 0
binde = $mainMod CTRL, j, resizeactive, 0 30
binde = $mainMod CTRL, k, resizeactive, 0 -30 binde = $mainMod CTRL, k, resizeactive, 0 -30
binde = $mainMod CTRL, j, resizeactive, 0 30
binde = $mainMod CTRL, left, resizeactive, -30 0
binde = $mainMod CTRL, right, resizeactive, 30 0
binde = $mainMod CTRL, up, resizeactive, 0 -30
binde = $mainMod CTRL, down, resizeactive, 0 30
# Focus on initial workspace (TODO: different for monitors) # Focus on initial workspace (TODO: different for monitors)
+3 -4
View File
@@ -1,7 +1,7 @@
# General config # General config
general { general {
gaps_in = 3 gaps_in = 2 # 3
gaps_out = 5 gaps_out = 4 # 5
border_size = 2 border_size = 2
col.active_border = rgba(6aa0d2ff) rgba(cb7194ff) 24deg col.active_border = rgba(6aa0d2ff) rgba(cb7194ff) 24deg
col.inactive_border = rgba(595959aa) col.inactive_border = rgba(595959aa)
@@ -9,7 +9,6 @@ general {
} }
dwindle { dwindle {
# pseudotile = yes
preserve_split = yes preserve_split = yes
# smart_split = no # smart_split = no
} }
@@ -23,7 +22,7 @@ cursor {
# Window styling # Window styling
decoration { decoration {
rounding = 10 rounding = 2 # 10
blur { blur {
brightness = 0.7 brightness = 0.7
contrast = 0.75 contrast = 0.75
+289
View File
@@ -0,0 +1,289 @@
# Beesquit dotfiles (Hyprland + Neovim + Archlinux)
These dotfiles are the full hyprland config with all the main parts configured. I find the keybinds and workflow with those quite comfortable and easy to understand and use.
[Screenshots to add]
# Table of contents
- [Components](#Components)
- [Palette](#Palette)
- [Features](#Features)
- [Keybinds](#Keybinds)
- [Issues](#Issues)
- [Setup](#Setup)
- [Configuration](#Configuration)
- [Extra](#Extra)
# Components
| Component | Purpose | Config location | Notes |
|-----------|-----------------------|-------------------------------------|--------------------------------------------|
| hyprland | Window manager | ~/.config/hypr/ | Dwindle layout. Luafication in progress |
| waybar | Bottom panel | ~/.config/waybar/ | Requires en_GB locale installed |
| rofi | Universal selector | ~/.config/rofi/ | Acts as a selector in different cases |
| dunst | Notification daemon | ~/.config/dunst/ | Scripts are laying with hyprland config |
| awww | Wallpaper manager | ~/.config/hypr/ | Configured with hypland config |
| hyprlock | Lockscreen manager | ~/.config/hypr/hyprlock.conf | Wallpaper configured with hyprland |
| hypridle | Idle daemon | ~/.config/hypr/hypridle.conf | Just handles idling |
| kitty | Terminal emulator | ~/.config/kitty/ | The ctrl+v is bound to the "paste" action |
| thunar | GUI file manager | No special config | GTK theme "Colloid-Transparent-Dracula" |
| neovim | Text/code editor | ~/.config/nvim/ | Powered by Lazyvim and stylized as an IDE |
| yazi | Terminal file manager | ~/.config/yazi | More vim-like hotkey styling |
| fastfetch | System fetcher | ~/.config/fastfetch | Supports different custom logos for any os |
| bash | Shell | ~/.config/bash (or ~/.bash_profile) | Bash doesn't have zsh autocomplete I hate |
| yadm | Dotfiles manager | No special config | Better alternative to chezmoi |
# Palette
You can find the full colors document at the `~/.config/hypr/docs/colors.md`. Most colors are based of the Jinx and Violet hair colors from the "Arcane" animated series:
```hex
Jinx Blue: #0661b4
Vi Red: #a9124d
```
And the most-used colors are the brighter shades of those:
```hex
Blue: #6aa0d2
Red: #cb7194
```
# Features
## Bash
- Loooots of aliases
- Simple yet useful prompt
- Immediate and infinite history saving
- Zoxide, pyenv and some other utilities integration
## Hyprland
- Gnome styled workspace switching
- Keyboard controls
- Dwindle styled splitting
- JetBrainsMono Nerd font
## Rofi
- The app selector
- The network-manager wrapper as well as VPN manager (supports sing-box, wireguard, netbird)
- Clipboard manager
## Waybar
- Icon to show current workspace number
- The "caffeine" button to suppress hypridle sleeping.
- The "projector" button to prevent laptop from sleeping when closing the lid.
- Currently playing song integration
- Calendar on hover over current time
## Kitty
- Transparent background
- Catppuccin-Mocha theme
- Cursor trailing
- `ctrl+v` bound to the paste action
- Additional mouse buttons support
## Neovim
- IDE-like environment
- System clipboard
- Commands `:qa`, `:wqa`, `:w` can now be written from upper case (like `:Qa`, `:WQA`)
## Yazi
- More vim-like binds
- Smart pasting
# Keybinds
## Notes
- The meta key is the same key as the "Windows" key on windows or "Command" key on macOS or "Super" on some linuxes.
- All the "hjkl" binds should also work with "arrow" keys.
- You can also use some mouse binds for to interact with hyprland
## The hyprland keybinds:
### Navigation
| Combination | Action |
|---------------------|---------------------------------------------------------------------|
| meta+a/d | Move to closest existing workspace on left/right |
| meta+ctrl+a/d | Move 1 workspace to the left/right |
| meta+shift+a/d | Move focused window to the closest existing workspace on left/right |
| meta+ctrl+shift+a/d | Move focused window 1 workspace to the left/right |
| meta+hjkl | Focus on window to the left/down/up/right |
| meta+shift+hjkl | Move focused window to the left/down/up/right |
| meta+ctrl+hjkl | Make focused window bigger on the left/down/up/right |
| meta+f | Toggle focused window maximize mode |
| meta+shift+f | Toggle focused window fullscreen mode |
| meta+t | Toggle split layout for window groups |
| meta+shift+t | Swap tiled window groups |
| meta+p | Toggle focused window pseudo tiling |
| meta+shift+p | Toggle focused window floating mode |
| meta+tab | Swap workspaces between monitors |
| alt+tab | Cycle between windows |
| meta+0 | Focus on monitor start workspace (usually 100) |
| alt+shift/shift+alt | Change keyboard layout |
### General
| Combination | Action |
|---------------------|---------------------------------------------------------------------|
| meta+F1 | Toggle performance mode (disables blur, shadows, etc) |
| meta+q | Open terminal (kitty) |
| meta+e | Open thunar file manager |
| meta+r | Open rofi app manager |
| meta+shift+r | Open rofi network manager |
| meta+v | Open rofi clipboard manger |
| meta+s | Open hyprpicker |
| meta+shift+s | Make partial screenshot |
| meta+c | Clear dunst notifications |
| meta+`(backtick) | Lock session with hyprlock |
| meta+w | Toggle waybar |
| meta+shift+w | Toggle quickshell |
| meta+shift+c | Kill focused window |
| meta+shift+m | Exit Hyprland |
### Neovim
| Combination | Action |
|---------------------|---------------------------------------------------------------------|
| ctrl+hjkl | Focus on window to the left/down/up/right |
| F2 | Toggle neotree |
| space+f+g | Show telescope live-grep menu |
| space+h | Show harpoon menu |
| space+a | Add current file to harpoon |
| space+l | Remove current file to harpoon |
| space+shift+l | Clear all harpoon marks |
| shift+h/l | Switch to next/previous harpoon mark |
| F3 | Copy path to the current file |
| F4 | Copy current file filename |
| shift+\ | Comment out active line |
| ' (apostrophe) | Play "q" macros (same as `@q`) |
| ctrl+o | Go back |
| ctrl+shift+i | Go forward |
| gd | Go to definition |
| space+e | Paste shell command output |
| space+w | Delete all trailing spaces in the current file |
| @+/ | Clear search |
| shift+c (neotree) | Convert file into directory with the same name |
| shift+f (neotree) | Toggle hidden files |
| h/l (neotree) | Open/close node |
### Yazi
| Combination | Action |
|---------------------|---------------------------------------------------------------------|
| :+q+enter | Exit yazi |
| :+q+a+enter | Exit yazi |
| ; | Open shell |
| gr | Go to / |
| ge | Go to /etc |
| gu | Go to /usr |
| gv | Go to /var |
| ga | Go to /run/media/$USER |
| gc | Go to ~/.config |
| gd | Go to ~/Downloads |
| gp | Go to ~/Pictures |
| shift+v | Select files |
| shift+f | Maxize preview pane |
### Multimedia
Default multimedia keys are bound to the actions they are considered to do.
# Issues
- The config is partially legacy. Some parts need rewriting to `lua`
- The "focus on start workspace" always uses workspace number 100 on any monitor
- Notifications are often showed on wrong display
- Neovim sometimes triggers warnings for no reason
- No simple wallpaper selector present
- Waybar can sometimes fail to update charging status
- Waybar looks bad on desktop (without brightness and battery)
- Brightness changing is not available for hdmi, dp, etc connected displays
- Fastfetch shows the run script instead of the users shell
- Uwsm can be phased out
# Setup
## WARNING!
The config setup script will overwrite the dotfiles for some programs!
Please backup your config first!
## Quick guide
To install the base config run following commands:
```sh
sudo pacman -S --noconfirm --needed git
git clone https://git.frik.su/beesquit/dotfiles
./dotfiles/config-scripts/install-config.sh
```
## Details
The base installation script creates basic directory structure, bash "edit config" dir, installs the packages, imports dotfiles and sets some default apps.
The bash installation script is located at the:
```sh
~/config-scripts/install-config.sh
```
You can also then install yay with this script:
```sh
~/config-scripts/install-yay.sh
```
If you are using this config on the desktop (and especially if you are planning to play games) - you can use one more script to install software pack I find useful for this scenario:
```sh
~/config-scripts/install-additional.sh
```
Keep in mind that gnome styled workspace switching "gnome style" is achieved by the use of the `hyprnome` package which is available in the `AUR`. It is installed in the "additional" script, but you can also install it manually
```sh
yay -S --needed --noconfirm hyprnome
```
## Installed packages list
### Base/system packages
- **General**: `git`, `base-devel`, `less`, `jq`, `inetutils`, `python`, `bash`, `zoxide`, `yadm`
- **Hyprland&core**: `hyprland`, `uwsm`, `brightnessctl`, `wl-clipboard`
- **XDG Portals**: `xdg-desktop-portal-hyprland`, `xdg-desktop-portal`, `xdg-desktop-portal-gtk`, `xdg-desktop-portal-wlr`
### UI/Graphics
- **Launchers&bars**: `rofi`, `waybar`, `dunst`
- **Idle&lock**: `hypridle`, `hyprlock`
- **Wallpaper&color**: `awww`, `hyprpicker`
- **Screenshots**: `grim`, `slurp`
- **Font**: `ttf-jetbrains-mono-nerd`
- **GTK settings**: `nwg-look`
### Terminal & editors
- **Terminal**: `kitty`
- **File managers**: `yazi`, `thunar` + plugins, `gvfs` + all backends (mtp, afc, nfs, smb, goa, wsdd, dnssd, gphoto2)
- **Editors**: `neovim`, `vi`, `vim`, `nano`
- **Editors additions**: `tree-sitter-cli`, `ripgrep`, `fzf`
### Utilities
- **Tools**: `nmap`, `btop`
- **Fun**: `fastfetch`, `cowsay`
### Additional (optional user apps)
- **Net**: `wireguard-tools`, `netbird-bin`
- **Audio**: `pavucontrol`, `pamixer`
- **Different apps**: `firefox`, `telegram`, `qbittorrent`, `opencode`
- **Media**: `spotify`, `gimp`, `obs-studio`
- **Office**: `obsidian-bin`, `libreoffice-fresh`
- **DM**: `sddm`
- **Helpers**: `hyprnome`, `git-credential-manager-bin`
### Optional (gaming)
- **Apps**: `discord`
- **Launchers**: `steam`, `prismlauncher`
- **Libs**: `wine`
# Configuration
The hyprland config has "arbitrary_settings.conf" file in which you can set wallpaper for desktop and lockscreen, set bluring for lockscreen and toggle "gnome" styled workspace switching.
Other than that the configs are pretty plain and easy to change.
# Tricks used in the config
## Features
- Gnome-styled workspace switching - skips empty workspaces between workspaces with opened windows. It is implemented with a `hyprnome` package and is ignored if the package is not present
- You can switch between modes on the host using `mode-local` and `mode-remote`. It toggles OSC-52 profile and some more features making the workflow via ssh to that host more comfortable and integrated
- You can manage additional aliases using `aliasm`, `aliasd`, `aliasr`, `aliass` commands
- Projector key at the waybar is implemented using `systemd-inhibit`. Allows the laptop to not go to sleep on the lid close. It does not inhibit sleeping due to the idle timeout - for that you can use the `caffeine` button which inhibits the idle sleeping
+5
View File
@@ -0,0 +1,5 @@
- [ ] Extract scripts to '.scripts' directory
- [ ] Add wallpaper selector and rewrite wallpaper workflow
- [ ] Rewrite hyprland config in lua
- [ ] Configure sddm
- [ ] Rewrite display brightness configuring
+326
View File
@@ -0,0 +1,326 @@
### Source
https://gist.github.com/jamiew/40c66061b666272462c17f65addb14d5
### Cute Sparkles
These cool and girly glitters come with lots of flowers, hearts, bows and ribbons! These decorations can suit all sorts of happy and soft aesthetic moods ~ ✨(◕▿◕✿)
✧・゚: *✧・゚:*    *:・゚✧*:・゚✧
.・゜゜・  ・゜゜・.
。・゚゚・  ・゚゚・。
༶•┈┈⛧┈♛ ♛┈⛧┈┈•༶
✧༺♥༻∞  ∞༺♥༻✧
**✿❀ ❀✿**
⋆ ˚。⋆୨୧˚ ˚୨୧⋆。˚ ⋆
。o°✥✤✣    ✣✤✥°o。
♬♩♪♩  ♩♪♩♬
*:..。o○  ○o。..:*
゚+*:ꔫ:*﹤  ﹥*:ꔫ:*+゚
*+:。.。  。.。:+*
♥*♡∞:。.。  。.。:∞♡*♥
‧̍̊˙˚˙ᵕ꒳ᵕ˙˚˙  ˙˚˙ᵕ꒳ᵕ˙˚˙‧̍̊
*°:⋆ₓₒ  ₓₒ⋆:°*
ₓ˚. ୭ ˚○◦˚.˚◦○˚ ୧ .˚ₓ
ˑ༄ؘ ۪۪۫۫ ▹▫◃ ۪۪۫۫ ༄ؘ ˑ
° 𐐪𐑂 ♡ 𐐪𐑂 ₒ 𐐪𐑂 ♡ 𐐪𐑂 °
∞ ₒ ˚ ° 𐐒𐐚 ° ˚ ₒ ∞
。ₓ ू ₒ ु ˚ ू ₒ ु ₓ。
☆♬○♩●♪✧♩  ♩✧♪●♩○♬☆
⭑・゚゚・*:༅。.。༅:*゚:*:✼✿  ✿✼:*゚:༅。.。༅:*・゚゚・⭑
Galactic Sparkles
If youre into things that lie beyond planet earth then these combinations of stars and moons will be a perfect match for you!
。・:*:・゚★,。・:*:・゚☆   。・:*:・゚★,。・:*:・゚☆
.・゜-: ✧ :-  -: ✧ :-゜・.
⋇⋆✦⋆⋇  ⋇⋆✦⋆⋇
⭒❃.✮:▹  ◃:✮.❃⭒
‧͙⁺˚*・༓☾  ☽༓・*˚⁺‧͙
.。*゚+.*.。   ゚+..。*゚+
☆.。.:*  .。.:*☆
☆○o。  。o○☆
・‥…━━━━━━━☆☆━━━━━━━…‥・
。☆✼★━━━━━━━━━━━━★✼☆。
★・・・・・・★・・・・・・★・・・・・・★
【☆】★【☆】★【☆】★【☆】★【☆】
»»——⍟——««
.・。.・゜✭・.・✫・゜・。.
### Nature mood
Wouldnt it be nice to go out camping in the great outdoors and stargaze? Feel the wind brush your cheek and listen to the trees being swayed by the wind? Heres some sparkly designs to encapsulate that mood ~ ヾ๑ˊᵕˋ๑◞♡
```
.⋆。⋆☂˚。⋆。˚☽˚。⋆.
⤹⋆⸙͎۪۫。˚۰˚☽˚⁀➷。˚⸙͎۪۫⋆ ༄
ع˖⁺ ☁⋆ ୭ 🕊.⋆。⋆༶⋆˙⊹
ˏ 𓏧 𓏲 𓏲 𓏲 𓋒 𓏲 𓏲 𓏲 𓏲 𓏧 ˎ
‧̍̊˙· 𓆝.° 。˚𓆛˚。 °.𓆞 ·˙‧̍̊
。゚❁ུ۪ °ₒ 𓂂 ˚ 𓂂 ₒ ° ₒ 𓂂 ˚˖⋆
⋆┈┈。゚❃ུ۪ ❀ུ۪ ❁ུ۪ ❃ུ۪ ❀ུ۪ ゚。┈┈⋆
.。❅*⋆⍋*∞*。*∞*⍋⋆*❅。.
▸ 🎕 ┈┈┈┈ 🎕 ┈┈┈┈ 🎕 ◂
⚘᠂ ⚘ ˚ ⚘ ᠂ ⚘
```
## Dividers and similar from REDACTED
random starry chars
```
* . ﹢ ˖ ✦ ¸ . ﹢ ° ¸. ° ˖ ・ ·̩ 。 ☆ ゚ * ¸* . ﹢ ˖ ✦ ¸ . ﹢ ° ¸. ° ˖ ・ ·̩ 。 ☆ ゚ * ¸* . ﹢ ˖ ✦ ¸ . ﹢ ° ¸. ° ˖ ・ ·̩ 。 ☆ ゚ * ¸* . ﹢ ˖ ✦ ¸ . ﹢ ° ¸. ° ˖ ・ ·̩ 。 ☆ ゚ * ¸* . ﹢ ˖ ✦ ¸ . ﹢ ° ¸. ° ˖ ・ ·̩ 。 ☆ ゚ * ¸* . ﹢ ˖ ✦ ¸ . ﹢ ° ¸. ° ˖ ・ ·̩ 。 ☆ ゚ * ¸* . ﹢ ˖ ✦ ¸ . ﹢ ° ¸. ° ˖ ・ ·̩ 。 ☆ ゚ * ¸
```
boxes
```
┎╌╌╯╰╌╌┒
┖╌╌╮╭╌╌┚
╭────╮
╰────╯
┏◚◚◚◚◚◚◚◚◚◚◚◚┓
┗◛◛◛◛◛◛◛◛◛◛◛◛┛
╔────────────╗
╚────────────╝
╭═────═⌘═────═╮
╰═────═⌘═────═╯
┏━────╯⌬╰────━┓
┗━────╮⌬╭────━┛
╔════✦❖✦════╗
╚════✦❖✦════╝
┏━┅┅┄┄⟞⟦✮⟧⟝┄┄┉┉━┓
┗━┅┅┄┄⟞⟦✮⟧⟝┄┄┉┉━┛
╔════░⋆ ✪ ⋆░════╗
╚════░⋆ ✪ ⋆░════╝
╭───── • ◈ • ─────╮
╰───── • ◈ • ─────╯
┯━━━━━ ●●● ━━━━━┯
┷━━━━━ ●●● ━━━━━┷
╔──────¤◎¤──────╗
╚──────¤◎¤──────╝
┏━━━━━━━━━━━━━━━┓
┗━━━━━━━━━━━━━━━┛
╭───────╯•╰───────╮
╰───────╮•╭───────╯
╒═════════════════╕
╘═════════════════╛
╔─━━━━━━ ★ ━━━━━━─╗
╚─━━━━━━ ★ ━━━━━━─╝
╭━─━─━─≪✠≫─━─━─━╮
╰━─━─━─≪✠≫─━─━─━╯
┎━─━─━─━─━─━─━─━─━┒
┖━─━─━─━─━─━─━─━─━┚
┍──━──━──┙◆┕──━──━──┑
┕──━──━──┑◆┍──━──━──┙
╔═══━━━─── • ───━━━═══╗
╚═══━━━─── • ───━━━═══╝
╔══════════•⊱✦⊰•══════════╗
╚══════════•⊱✦⊰•══════════╝
╭────────────────────────╮
╰────────────────────────╯
┏━━━━•❅•°•❈•°•❅•━━━━┓
❍ ❍
┗━━━━•❅•°•❈•°•❅•━━━━┛┎┈┈┈┈┈┈┈୨♡୧┈┈┈┈┈┈┈┒
┖┈┈┈┈┈┈┈୨♡୧┈┈┈┈┈┈┈┚┏━━━━━°❀•°:🎀:°•❀°━━━━━┓
┗━━━━━°❀•°:🎀:°•❀°━━━━━┛✩。:•.───── ❁ ❁ ─────.•:。✩* • • ◕◕════clubsclubs════◕◕ • • ◄ ◊ ► ◄ ◊ ► ◄ ◊ ► ◄ ◊ ► ◄ ◊ ►¸ „„.•~¹°”ˆ˜¨♡♡♡¨˜ˆ”°¹~•.„¸*┌───── •✧✧• ─────┐
-YOUR TEXT HERE-
└───── •✧✧• ─────┘。☆✼★━━━━━━━━━━━━★✼☆。╔═══════════════╗
╚═══════════════╝╭══• ೋ•✧๑♡๑✧•ೋ •══╮
╰══•
ೋ•✧๑♡๑✧•ೋ
•══╯
»»————- ★ ————-««
```
minimal dividers:
```
✄ - - - - - - - - - - - - - - - - - - -
⫘⫘⫘⫘⫘⫘⫘⫘⫘⫘⫘⫘⫘⫘⫘⫘
・┈┈・┈┈・┈┈・
୨୧・┈┈・┈┈・୨୧
——— ୨୧ ———
・﹒・﹒・﹒・﹒﹒・・
≻────────────── ⋆✩⋆ ──────────────≺
━━━━━━ ♡ ━━━━━━━
```
"random dividers, not mine"
```
⊹₊꒷︶︶꒷︶︶꒷ ꒦︶︶ ꒦ ꒷ ꒦︶︶ ꒦ ꒷ ꒦‧₊˚⊹︰
₊˚꒦꒷︶꒷꒦˚⊹ ˚꒷︶ଓ₊˚︶꒷꒦˚⊹
๑‧˚₊꒷︶ଓ︶꒷꒦⊹๑‧˚₊꒷︶ଓ︶꒷꒦⊹๑
꒷︶︶꒷︶︶꒷꒦꒷︶︶꒷꒦
꒷︶︶꒷꒦⊹˚₊꒷︶ଓ﹕ᕬ✦₊
︶꒦꒷︶꒷꒦︶♡︶︶꒦꒷︶꒷︶︶꒦꒷
꒷︶꒷꒥꒷ ‧₊˚ ꒰ฅ˘ω˘ฅ ꒱ ‧₊˚꒷︶꒷꒥꒷
‧˚₊꒷꒦✧︶︶꒦[emoji] ꒷꒦︶︶✧꒷꒦‧₊˚⊹
✧ ︶ ꒷ ꒷ ꒦︶ ꒷ ꒦ ︶ [emoji]︶ ꒷ ꒦ ︶ ︶ ꒷ ꒦ ✦˚。
︶꒦︶︶꒷꒦︶︶꒷︶︶꒦︶︶꒷꒦︶︶꒷︶︶꒦
╰ ✧ ᘏଘ꒷︶꒷୨︶꒷꒦♡꒥꒦︶︶ଓ꒷✧꒦
╰⋅ ✧ ᘏ・ ︶ ︶ଓ₊˚꒷︶꒷︶
₊˚.੭⊹₊꒷︶︶꒷︶︶꒷ ꒦︶︶ ꒦ ꒷ ꒦︶︶ ꒦ ꒷ ꒦‧₊˚⊹︰
︶︶꒷꒦︶꒷︶꒦︶︶꒷꒦︶︶꒷︶꒦︶︶
꒷꒦ ✦ ୧・︶ ꒷ ︶ ︶ ︶ ︶ ꒷꒦ ‧₊
₊꒷︶︶꒷✦ ୧・︶︶꒷︶ ‧₊
₊⁀⁀꒷ ♡ ꒷︶︶꒷꒦‧₊˚⊹
♡ — ⸝⸝ ɞ ︶꒷꒦ ₊˚ ⎯⎯・꒷꒦︶︶ˎˊ˗
⌒⌒ ₊ ๑ ⌒⌒ ₊ ๑ ⌒⌒ ♡₊˚ ❜
⊹₊꒷︶︶꒷︶︶꒷꒦︶︶꒦‧₊˚⊹︰
୧ ⊹₊꒷︶︶꒷︶︶꒷꒦︶︶꒦‧₊˚⊹︰
╰・꒷︶︶꒷︶꒥︶︶꒷︶꒥꒷︶︶꒷
₊˚꒦꒷︶꒷꒦˚⊹ ˚꒷︶ଓ₊˚︶꒷꒦˚⊹
๑‧˚₊꒷︶ଓ︶꒷꒦⊹๑‧˚₊꒷︶ଓ︶꒷꒦⊹๑
──・[text]
╰・︶꒦꒷︶꒷︶︶
・⎯⎯⎯⎯⎯・・⎯⎯⎯⎯⎯・
╰₊꒷︶︶꒷︶︶꒷꒦︶︶꒦‧₊˚⊹
₊˚꒦꒷︶꒷꒦˚⊹ ˚꒷︶ଓ₊˚︶꒷꒦˚
꒷︶︶꒷︶︶꒷꒦꒷︶︶꒷꒦
꒷︶ଓ‧₊˚˖ ࣪⊹︶꒷꒦꒷︶‧₊˚ଓ
♡・✦・♡・✦・♡・✦・♡
︶꒷︶꒦꒷ ˖ ๑ ꒷︶꒷꒦︶︶꒷︶ ♬ ̊ ˖ ︶꒷
╰┈┈┈┈┈┈┈┈┈╮
ꕊ ̊ ̟ ♪ ︶︶꒷︶ଓ ˖︶꒦꒷︶︶꒷︶﹕ ̟ ॱ ꘪ
꒷︶︶꒷꒦⊹˚₊꒷︶ଓ﹕ᕬ✦₊
︶꒦꒷︶꒷꒦︶♡︶︶꒦꒷︶꒷︶︶꒦꒷
꒷︶꒷꒥꒷ ‧₊˚ ꒰ฅ˘ω˘ฅ ꒱ ‧₊˚꒷︶꒷꒥꒷
‧˚₊꒷꒦✧︶︶꒦[emoji] ꒷꒦︶︶✧꒷꒦‧₊˚⊹
✧ ︶ ꒷ ꒷ ꒦︶ ꒷ ꒦ ︶ [emoji]︶ ꒷ ꒦ ︶ ︶ ꒷ ꒦ ✦˚。
✦ ₊꒷꒦︶︶︶ ୨୧ ︶︶︶꒷꒦ෆ
︶꒦︶︶꒷꒦︶︶꒷︶︶꒦︶︶꒷꒦︶︶꒷︶︶꒦
ᨳ⊹₊꒷︶꒷꒦︶︶꒷‧˚₊⊹ഒ
︶︶・꒷︶꒷꒦♡︶︶꒷꒦︶
ᨳ꒷︶︶εïз︶︶꒷ഒ ︶꒷꒦˚⊹
˚︶︶꒷︶꒷꒦︶︶꒷꒦︶ ₊˚⊹
︶︶꒷꒦ ✧ ⊹ ₊⁀➷ ୨୧
・┈┈・୨୧・┈┈・୨୧
✧⊹₊꒷︶꒷꒦︶︶꒷‧˚₊⊹✧
✦ .  ⁺   . ✦ .  ⁺   . ✦
︶꒷꒦꒷︶︶︶꒷꒦︶︶⊹₊˚‧˚
₊ ⊹ ✦ . ₊ · ₊ ✦ . · * ๑ ‧ ₊
︶꒷꒦꒷︶︶︶꒷꒦︶꒷૮꒰ᐡᴗ͈ 。 ᴗ͈ᐡ꒱ა✧ ꒦꒷︶︶꒷꒦꒦꒷︶︶︶꒷꒦︶︶
˚ ︶︶︶꒷꒦ ⊹ ₊˚ ʚ﹕₊˚︶꒷꒦꒷︶︶꒷꒦︶
✄・・・・・・・・・・・
︶︶︶︶︶ ♡ ✧ ꒦︶︶꒷꒦ ✿ ✦⁺
₊˚ ‿︵‿︵‿︵୨୧ · · ♡ · · ୨୧‿︵‿︵‿︵
︶꒷︶꒦꒷ ˖ ๑ ꒷︶꒷꒦︶︶꒷︶ ♬ ̊ ˖ ︶꒷
ꕊ ̊ ̟ ♪ ︶︶꒷︶ଓ ˖︶꒦꒷︶︶꒷︶﹕ ̟ ॱ ꘪ
(\ (\
( • •)
━∪∪━━━━
```
"from cutekaomoji.com"
```
✧・゚: ✧・゚:    :・゚✧:・゚✧
.・゜゜・  ・゜゜・.
。・゚゚・  ・゚゚・。
༶•┈┈⛧┈♛ ♛┈⛧┈┈•༶
✧༺༻∞  ∞༺༻✧
*✿❀ ❀✿*
⋆ ˚。⋆୨୧˚ ˚୨୧⋆。˚ ⋆
。o°✥✤✣    ✣✤✥°o。
♬♩♪♩  ♩♪♩♬
:..。o○  ○o。..:
゚+:ꔫ:﹤  ﹥:ꔫ:+゚
+:。.。  。.。:+
♡∞:。.。  。.。:∞♡
‧̍̊˙˚˙ᵕ꒳ᵕ˙˚˙  ˙˚˙ᵕ꒳ᵕ˙˚˙‧̍̊
°:⋆ₓₒ  ₓₒ⋆:°
ₓ˚. ୭ ˚○◦˚.˚◦○˚ ୧ .˚ₓ
ˑ༄ؘ ۪۫۫ ▹▫◃ ۪۫۫ ༄ؘ ˑ
° 𐐪𐑂 ♡ 𐐪𐑂 ₒ 𐐪𐑂 ♡ 𐐪𐑂 °
∞ ₒ ˚ ° 𐐒𐐚 ° ˚ ₒ ∞
。ₓ ू ₒ ु ˚ ू ₒ ु ₓ。
☆♬○♩●♪✧♩  ♩✧♪●♩○♬☆
⭑・゚゚・:༅。.。༅:゚::✼✿  ✿✼:゚:༅。.。༅:・゚゚・⭑
。・::・゚★,。・::・゚☆   。・::・゚★,。・::・゚☆
.・゜-: ✧ :-  -: ✧ :-゜・.
⋇⋆✦⋆⋇  ⋇⋆✦⋆⋇
⭒❃.✮:▹  ◃:✮.❃⭒
‧͙⁺˚・༓☾  ☽༓・˚⁺‧͙
.。゚+..。   ゚+..。゚+
☆.。.:  .。.:☆
☆○o。  。o○☆
.⋆。⋆☂˚。⋆。˚☽˚。⋆.
⤹⋆⸙͎۪۫。˚۰˚☽˚⁀➷。˚⸙͎۪۫⋆ ༄
ع˖⁺ ☁⋆ ୭ 🕊.⋆。⋆༶⋆˙⊹
ˏ 𓏧 𓏲 𓏲 𓏲 𓋒 𓏲 𓏲 𓏲 𓏲 𓏧 ˎ
‧̍̊˙· 𓆝.° 。˚𓆛˚。 °.𓆞 ·˙‧̍̊
。゚❁ུ۪ °ₒ 𓂂 ˚ 𓂂 ₒ ° ₒ 𓂂 ˚˖⋆
⋆┈┈。゚❃ུ۪ ❀ུ۪ ❁ུ۪ ❃ུ۪ ❀ུ۪ ゚。┈┈⋆
.。❅⋆⍋∞。∞⍋⋆❅。.
▸ 🎕 ┈┈┈┈ 🎕 ┈┈┈┈ 🎕 ◂
⚘᠂ ⚘ ˚ ⚘ ᠂ ⚘
```
"non-language symbols"
```
❒ ⭒ ⋆ ⌯ ᴗ - 𖥻 %
〄 ▨ ▦ ▩ ◌ ◍ ◔ ◕ ❀
✿ ❁ ✾ ❖ ☆ ★
□ ■ ✮ ✰ ? ! ⍝ ∗ ✦ ✧
ꜝꜝ
⎙ ‹𝟹 ‹𝟥 ♡ ♥︎
☺︎ ⊹ ☕︎ ࣪ ˖
⌗ ▹ ⚠︎
⠀⑅⠀⠀✦⠀
⠀⋆⠀⬪⠀⠀╰╮⠀♡⠀
⬪˙ ⠀⌕⠀⊹
﹟⠀‹𝟹⠀+ ..
∞⠀⠀⌗⠀★⠀♥︎⠀⭒⠀ʚ ♡⠀
﹫⠀⠀﹠⠀⠀◪⠀!⋆
▦ ◐⠀≀⠀
﹗ 💭
• ˖˓ ★ ˖▸◂ ⋆ ꜝꜞ◗ ˖ ࣪ ‹
• • • • •
⭓ ⭔ ∞ ■
┄┄┄
。゚゚・。・゚゚。
゚。
 ゚・。・゚
◠ ◡ ⌦ ⌫ ⌞ ⌝
,, ✰★ ・。
⇡ ╴
↳ ↰ ⁺◟ ➢
‿︵ ❛ ⊰ ⋱⋰
︿ ,;↻ .·˙·. ⇾
⩩ ◜◝ ◟◞
❍ ❏ ⁞ ﹫︶ ⟆
⿻⌇
/) /)
╰ ╯ ╮ ╭
⁾⁾ ‧₊
⑅ ␥ 。
× ᵎᵎ ⿻ ・.⭔
✦ ꜜ !˚₊ 3﹒
˃ ︿ ˂ ︵ ⊹
・✿ ♡ ❀
˶ ᵔᵔ ᵕ ᴗ /) /) ・
🎔 🎕 🗦 🗧
⨝ ⨞ ⨟
```
"stars/sparkles"
```
* . ﹢ ˖ ✦ ¸ . ﹢ ° ¸. ° ˖ ・ ·̩ 。 ☆ ゚ * ¸* . ﹢ ˖ ✦ ¸ . ﹢ ° ¸. ° ˖ ・ ·̩ 。 ☆ ゚ * ¸* . ﹢ ˖ ✦ ¸ . ﹢ ° ¸. ° ˖ ・ ·̩ 。 ☆ ゚ * ¸* . ﹢ ˖ ✦ ¸ . ﹢ ° ¸. ° ˖ ・ ·̩ 。 ☆ ゚ * ¸* . ﹢ ˖ ✦ ¸ . ﹢ ° ¸. ° ˖ ・ ·̩ 。 ☆ ゚ * ¸* . ﹢ ˖ ✦ ¸ . ﹢ ° ¸. ° ˖ ・ ·̩ 。 ☆ ゚ * ¸* . ﹢ ˖ ✦ ¸ . ﹢ ° ¸. ° ˖ ・ ·̩ 。 ☆ ゚ * ¸
```
+29 -7
View File
@@ -1,6 +1,6 @@
# General # General
general { general {
fail_timeout = 300 fail_timeout = 600
} }
animations { animations {
@@ -19,6 +19,12 @@ background {
vibrancy_darkness = 0.0 vibrancy_darkness = 0.0
} }
auth {
fingerprint {
enabled = true
}
}
# Positioning # Positioning
# Time # Time
@@ -27,7 +33,8 @@ label {
color = $foreground color = $foreground
font_size = 60 font_size = 60
font_family = JetBrains Mono Nerd Font Mono ExtraBold font_family = JetBrains Mono Nerd Font Mono ExtraBold
position = 210, 240 position = 160, 240
# position = 210, 240
halign = left halign = left
valign = center valign = center
} }
@@ -38,7 +45,20 @@ label {
color = rgba(216, 222, 233, 0.75) color = rgba(216, 222, 233, 0.75)
font_size = 20 font_size = 20
font_family = SF Pro Display Bold font_family = SF Pro Display Bold
position = 202, 175 position = 164, 170
# position = 210, 170
halign = left
valign = center
}
# Layout
label {
text = Layout: $LAYOUT[en,ru,ua].
color = rgba(216, 222, 233, 0.75)
font_size = 14
font_family = SF Pro Display Bold
position = 164, 120
# position = 210, 120
halign = left halign = left
valign = center valign = center
} }
@@ -46,23 +66,26 @@ label {
# Input # Input
input-field { input-field {
size = 350, 55 size = 350, 55
rounding = 4
outline_thickness = 2 outline_thickness = 2
dots_size = 0.2 dots_size = 0.2
dots_spacing = 0.2 dots_spacing = 0.4
dots_center = true dots_center = true
outer_color = rgba(56, 129, 195, 0.94) outer_color = rgba(56, 129, 195, 0.94)
inner_color = rgba(10, 0, 30, 0.3) inner_color = rgba(10, 0, 30, 0.3)
font_color = rgb(200, 200, 200) font_color = rgb(200, 200, 200)
fade_on_empty = false fade_on_empty = false
font_family = JetBrains Mono Nerd Font Mono font_family = JetBrains Mono Nerd Font Mono
placeholder_text = <i><span foreground="##cdd6f4">Poow</span></i> placeholder_text = <i><span foreground="##cdd6f4">Poow!</span></i>
fail_text = <i>Get jinxed!</i>
fail_transition = 300
hide_input = false hide_input = false
position = 160, 40 position = 160, 40
halign = left halign = left
valign = center valign = center
} }
# Player (TODO: fix it) # Player
label { label {
text = cmd[update:1000] echo "$($HOME/.config/hypr/scripts/player-status.sh)" text = cmd[update:1000] echo "$($HOME/.config/hypr/scripts/player-status.sh)"
color = $foreground color = $foreground
@@ -72,4 +95,3 @@ label {
halign = center halign = center
valign = bottom valign = bottom
} }
+37 -36
View File
@@ -5,76 +5,77 @@
## license: MIT ## license: MIT
## upstream: https://github.com/catppuccin/kitty/blob/main/mocha.conf ## upstream: https://github.com/catppuccin/kitty/blob/main/mocha.conf
## blurb: Soothing pastel theme for the high-spirited! ## blurb: Soothing pastel theme for the high-spirited!
# The theme was edited
# The basic colors # The basic colors
foreground #DADAFF foreground #dadaff
background #0E1219 background #0e1219
selection_foreground #0E1219 selection_foreground #0e1219
selection_background #BD93F9 selection_background #bd93f9
# Cursor colors # Cursor colors
cursor #F5E0DC cursor #f5e0dc
cursor_text_color #1E1E2E cursor_text_color #1e1e2e
# URL underline color when hovering with mouse # URL underline color when hovering with mouse
url_color #F5E0DC url_color #5de4c7
# Kitty window border colors # Kitty window border colors
active_border_color #B4BEFE active_border_color #b4befe
inactive_border_color #6C7086 inactive_border_color #6c7086
bell_border_color #F9E2AF bell_border_color #f9e2af
# OS Window titlebar colors # OS Window titlebar colors
wayland_titlebar_color system wayland_titlebar_color system
macos_titlebar_color system macos_titlebar_color system
# Tab bar colors # Tab bar colors
active_tab_foreground #11111B active_tab_foreground #11111b
active_tab_background #CBA6F7 active_tab_background #cba6f7
inactive_tab_foreground #CDD6F4 inactive_tab_foreground #cdd6f4
inactive_tab_background #181825 inactive_tab_background #181825
tab_bar_background #11111B tab_bar_background #11111b
# Colors for marks (marked text in the terminal) # Colors for marks (marked text in the terminal)
mark1_foreground #1E1E2E mark1_foreground #1e1e2e
mark1_background #B4BEFE mark1_background #b4befe
mark2_foreground #1E1E2E mark2_foreground #1e1e2e
mark2_background #CBA6F7 mark2_background #cba6f7
mark3_foreground #1E1E2E mark3_foreground #1e1e2e
mark3_background #74C7EC mark3_background #74c7ec
# The 16 terminal colors # The 16 terminal colors
# black # black
color0 #45475A color0 #45475a
color8 #585B70 color8 #585b70
# red # red
color1 #F38BA8 color1 #f38ba8
color9 #F38BA8 color9 #f38ba8
# green # green
color2 #A6E3A1 color2 #a6e3a1
color10 #A6E3A1 color10 #a6e3a1
# yellow # yellow
color3 #F9E2AF color3 #f9e2af
color11 #F9E2AF color11 #f9e2af
# blue # blue
color4 #89B4FA color4 #89b4fa
color12 #89B4FA color12 #89b4fa
# magenta # magenta
color5 #F5C2E7 color5 #f5c2e7
color13 #F5C2E7 color13 #f5c2e7
# cyan # cyan
color6 #94E2D5 color6 #94e2d5
color14 #94E2D5 color14 #94e2d5
# white # white
color7 #BAC2DE color7 #bac2de
color15 #A6ADC8 color15 #a6adc8
+37 -46
View File
@@ -1,50 +1,7 @@
# General
linux_display_server wayland linux_display_server wayland
allow_remote_control yes
# Coloring scrollback_lines 10000
# BEGIN_KITTY_THEME
# Catppuccin-Mocha
include current-theme.conf
# END_KITTY_THEME
# The color for highlighting URLs on mouse-over
url color #5de4c7
# Fonts
font_family JetBrainsMono Nerd Font
bold_font auto
italic_font auto
bold_italic_font auto
font_size 14
disable_ligatures always
# Styling
# Opacity
background_opacity 0.4
# Cursor
# shell_integration no-cursor
# cursor_shape block
cursor_trail 4
cursor_trail_decay 0.1 0.4
# Window settings
initial_window_width 95c
initial_window_height 35c
window_padding_width 14
confirm_os_window_close 0
# Tab bar
tab_bar_style fade
tab_fade 1
# active_tab_foreground #3d59a1
# active_tab_background #16161e
active_tab_font_style bold
# inactive_tab_foreground #787c99
# inactive_tab_background #16161e
inactive_tab_font_style bold
# tab_bar_background #101014
# Binds # Binds
@@ -55,3 +12,37 @@ mouse_map b5 press grabbed,ungrabbed send_key ctrl+shift+i
# Keyboard bindings # Keyboard bindings
map kitty_mod+t new_tab_with_cwd map kitty_mod+t new_tab_with_cwd
map ctrl+v paste_from_clipboard map ctrl+v paste_from_clipboard
map ctrl+; send_text all \x1b[24;5~
# Theme
include current-theme.conf
# Font
font_family JetBrainsMono Nerd Font
bold_font auto
italic_font auto
bold_italic_font auto
font_size 14
disable_ligatures always
# Opacity
background_opacity 0.4
# Cursor
cursor_trail 4
cursor_trail_decay 0.1 0.4
# Window
initial_window_width 95c
initial_window_height 35c
window_padding_width 12 12 12 12
confirm_os_window_close 0
# Tabs
tab_bar_style fade
tab_fade 1
active_tab_font_style bold
inactive_tab_font_style bold

Some files were not shown because too many files have changed in this diff Show More