feat!(terminal): changed terminal from alacritty to kitty

This commit is contained in:
2025-01-19 00:50:21 +01:00
parent b5f413216b
commit 26f7b8f837
10 changed files with 2909 additions and 256 deletions

View File

@@ -34,7 +34,7 @@ fi
# Options
layout=`cat ${theme} | grep 'USE_ICON' | cut -d'=' -f2`
if [[ "$layout" == 'NO' ]]; then
option_1=" Alacritty"
option_1=" Kitty"
option_2=" Nautilus"
option_3=" Gedit"
option_4=" Ranger"
@@ -68,15 +68,15 @@ run_rofi() {
run_cmd() {
polkit_cmd="pkexec env PATH=$PATH DISPLAY=$DISPLAY XAUTHORITY=$XAUTHORITY"
if [[ "$1" == '--opt1' ]]; then
${polkit_cmd} alacritty
${polkit_cmd} kitty
elif [[ "$1" == '--opt2' ]]; then
${polkit_cmd} dbus-run-session nautilus
elif [[ "$1" == '--opt3' ]]; then
${polkit_cmd} gedit
elif [[ "$1" == '--opt4' ]]; then
${polkit_cmd} alacritty -e ranger
${polkit_cmd} kitty -e ranger
elif [[ "$1" == '--opt5' ]]; then
${polkit_cmd} alacritty -e vim
${polkit_cmd} kitty -e nvim
fi
}