From 3add9c63e8b72e8672db376698b2e754e96840e3 Mon Sep 17 00:00:00 2001 From: Andrew Guschin Date: Sun, 28 Mar 2021 16:51:15 +0400 Subject: Changed default terminal to st+tabbed, compositor no longer starts in tiling WMs --- .xprofile | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) (limited to '.xprofile') diff --git a/.xprofile b/.xprofile index 08307de..1dd20c3 100644 --- a/.xprofile +++ b/.xprofile @@ -15,11 +15,6 @@ elif [ "$DESKTOP_SESSION" = "xmonad" ]; then compositor_args="-o 0" fi -# Host specific config -if [ "$(hostname -s)" = "laptop1" ]; then - fusuma & -fi - # Setup wallpaper WP_DIR="$HOME/Pictures/Wallpapers/" if [ -d "$WP_DIR" ]; then @@ -32,10 +27,13 @@ if ! [ $(command -v compton) ]; then alias compton="picom" fi -compton -c --config $XDG_CONFIG_HOME/compton/compton.conf $compositor_args & +# Run compositor only in openbox +if [ "$DESKTOP_SESSION" = "openbox-session" ]; then + compton -c --config $XDG_CONFIG_HOME/compton/compton.conf $compositor_args & +fi fi -export TERMINAL="kitty" +export TERMINAL="tabbed -c -r 2 st -w ''" export EDITOR="nvim" export BROWSER="firefox" -- cgit v1.2.3