diff options
| author | Andrew Guschin <saintruler@gmail.com> | 2021-03-28 16:51:15 +0400 |
|---|---|---|
| committer | Andrew Guschin <saintruler@gmail.com> | 2021-03-28 16:51:15 +0400 |
| commit | 3add9c63e8b72e8672db376698b2e754e96840e3 (patch) | |
| tree | 892a53ac5c6b3821126eafbb5ccefcbd7fa95b72 /.xprofile | |
| parent | 8a1c8ef5618c5a876582e7609c4713a47da48f61 (diff) | |
Changed default terminal to st+tabbed, compositor no longer starts in tiling WMs
Diffstat (limited to '.xprofile')
| -rw-r--r-- | .xprofile | 12 |
1 files changed, 5 insertions, 7 deletions
@@ -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" |