From: Samir Benmendil Date: Sun, 24 Jan 2021 04:03:20 +0000 (+0000) Subject: env: switch TERMINAL to kitty X-Git-Url: https://git.rmz.io/dotfiles.git/commitdiff_plain/e3b74ab8092b5914dcb145a3597d28df893f1f52?ds=sidebyside env: switch TERMINAL to kitty --- diff --git a/awesome/widgets/volume_widget.lua b/awesome/widgets/volume_widget.lua index d0812ee..2c4a1ba 100644 --- a/awesome/widgets/volume_widget.lua +++ b/awesome/widgets/volume_widget.lua @@ -14,8 +14,8 @@ vicious.register(volwidget, vicious.contrib.pulse, '🔊 -- Mouse bindings volwidget:buttons(gears.table.join( awful.button({ }, 1, - function () - utils.run_or_kill("urxvt -name pulsemixer -e pulsemixer", {class = "urxvt", instance = "pulsemixer"}) + function () + utils.run_or_kill(terminal .. " --name pulsemixer -e pulsemixer", {class = "kitty", instance = "pulsemixer"}) end), awful.button({ }, 2, function () diff --git a/xinit/xprofile.d/99-applications.sh b/xinit/xprofile.d/99-applications.sh index 15a5a20..c36aa0d 100755 --- a/xinit/xprofile.d/99-applications.sh +++ b/xinit/xprofile.d/99-applications.sh @@ -4,7 +4,7 @@ URXVT_PERL_LIB=$URXVT_PERL_LIB:$HOME/src/dotfiles/urxvt/perls URXVT_PERL_LIB=$URXVT_PERL_LIB:$HOME/src/dotfiles/urxvt/perls/deprecated export URXVT_PERL_LIB -urxvtd -q -o -f +[[ "$TERMINAL" == "urxvtc" ]] && urxvtd -q -o -f compton --config ~/.config/compton.conf & unclutter --timeout 1 & xcape -e "Control_L=Escape;Control_R=Escape" diff --git a/zshenv b/zshenv index 9126f59..796ca88 100644 --- a/zshenv +++ b/zshenv @@ -6,7 +6,7 @@ export XDG_CACHE_HOME="$HOME/.cache" export HOST=$(hostname) # the default command to open a new terminal -export TERMINAL=urxvtc +export TERMINAL=kitty # gpg export GNUPGHOME="$XDG_CONFIG_HOME/gnupg"