10 lines
262 B
Fish
10 lines
262 B
Fish
function kitty_select_theme
|
|
pushd /home/joe/.config/kitty/themes/preferred
|
|
|
|
set theme (fzf --height=35% --preview 'echo {} && kitty @ set-colors -a -c {}')
|
|
kitty @ set-colors -a -c $theme
|
|
cat $theme > ~/.config/kitty/theme.conf
|
|
|
|
popd
|
|
end
|