diff --git a/.config/picom.conf b/.config/picom.conf index ed507be..b88dc6b 100644 --- a/.config/picom.conf +++ b/.config/picom.conf @@ -212,7 +212,8 @@ blur-background-exclude = [ # Specify the backend to use: `xrender`, `glx`, or `xr_glx_hybrid`. # `xrender` is the default one. # -backend = "glx" +# backend = "glx" +backend = "glx"; # Enable/disable VSync. # vsync = false diff --git a/.config/suckless b/.config/suckless index e28dedc..0a0a3b1 160000 --- a/.config/suckless +++ b/.config/suckless @@ -1 +1 @@ -Subproject commit e28dedcf452a9117d76f70090d2f48e01b908f8e +Subproject commit 0a0a3b1a819626969f7e39a664d24ebf82e06245 diff --git a/.config/zsh/.zprofile b/.config/zsh/.zprofile index 309d018..d67f6d0 100644 --- a/.config/zsh/.zprofile +++ b/.config/zsh/.zprofile @@ -1,8 +1,9 @@ -#!/bin/sh +if [ "$XDG_VTNR" = 1 ]; then + GUILOG="$HOME/.local/share/xorg/gui.log" -GUILOG="$HOME/.local/share/xorg/gui.log" + mv "$GUILOG" "$GUILOG.old" 2> /dev/null + exec startx > "$GUILOG" 2>&1 + #export XDG_CURRENT_DESKTOP=sway && exec sway > "$HOME/.gui.log" 2>&1 +fi -mv "$GUILOG" "$GUILOG.old" 2> /dev/null - -[ "$XDG_VTNR" = 1 ] && exec startx > "$GUILOG" 2>&1 -#[ "$XDG_VTNR" = 1 ] && export XDG_CURRENT_DESKTOP=sway && exec sway > "$HOME/.gui.log" 2>&1 +# vim: ft=zsh diff --git a/.config/zsh/.zsh_aliases b/.config/zsh/.zsh_aliases index d3d1ef4..d842705 100644 --- a/.config/zsh/.zsh_aliases +++ b/.config/zsh/.zsh_aliases @@ -33,3 +33,5 @@ function j() { [ -n "${dests[2]}" ] && dest="$(printf '%s\n' "${dests[@]}" | fzf)" cd "$dest" } + +# vim: ft=zsh diff --git a/.config/zsh/.zshrc b/.config/zsh/.zshrc index 9ab5aec..4dc05c6 100644 --- a/.config/zsh/.zshrc +++ b/.config/zsh/.zshrc @@ -13,3 +13,5 @@ fpath=("$ZDOTDIR/completions" $fpath) . "$ZDOTDIR"/.zsh_aliases . "$ZDOTDIR/.p10k.zsh" + +# vim: ft=zsh