26 lines
625 B
Fish
26 lines
625 B
Fish
|
|
# source default* settings
|
||
|
|
source /usr/share/cachyos-fish-config/cachyos-config.fish
|
||
|
|
|
||
|
|
# scripst for polybar
|
||
|
|
source ~/.config/fish/functions/inc_brightness.fish
|
||
|
|
source ~/.config/fish/functions/dec_brightness.fish
|
||
|
|
source ~/.config/fish/functions/get_volume.fish
|
||
|
|
|
||
|
|
# bluetooth connect function
|
||
|
|
source ~/.config/fish/functions/bt.fish
|
||
|
|
|
||
|
|
# do not load default ranger config
|
||
|
|
set RANGER_LOAD_DEFAULT_RC FALSE
|
||
|
|
|
||
|
|
# source aliases
|
||
|
|
if test -f ~/.config/fish/.alias
|
||
|
|
source ~/.config/fish/.alias
|
||
|
|
end
|
||
|
|
|
||
|
|
# overwrite greeting
|
||
|
|
# potentially disabling fastfetch
|
||
|
|
function fish_greeting
|
||
|
|
# smth smth
|
||
|
|
fastfetch --config bb-large.jsonc
|
||
|
|
end
|