diff options
author | Simon Parri <simonparri@ganzeria.com> | 2025-07-22 00:56:22 +0200 |
---|---|---|
committer | Simon Parri <simonparri@ganzeria.com> | 2025-07-22 11:49:01 +0200 |
commit | d2c331b9f036951eef062dd5141c75182375ba12 (patch) | |
tree | 325bf3c56b70ec845e8de9349f45408ed844e747 /common/.xinitrc | |
download | dotfiles-d2c331b9f036951eef062dd5141c75182375ba12.tar.gz dotfiles-d2c331b9f036951eef062dd5141c75182375ba12.zip |
Add current configuration
Diffstat (limited to 'common/.xinitrc')
-rw-r--r-- | common/.xinitrc | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/common/.xinitrc b/common/.xinitrc new file mode 100644 index 0000000..72ab245 --- /dev/null +++ b/common/.xinitrc @@ -0,0 +1,22 @@ +[ -f ~/.xinitrc.pre ] && . ~/.xinitrc.pre +xrdb -load ~/.Xresources +mywal -R +[ -f ~/.Xresources.local ] && xrdb -merge ~/.Xresources.local +xsettingsd & +xset s 3600 +[ ! "$IS_UNDERPOWERED" = 1 ] && picom --config ~/.picom.conf & +dunst & +unclutter -root -idle 5 & +(pidof transmission-daemon >/dev/null || \ + (which transmission-daemon 2>&1 >/dev/null &&\ + transmission-daemon)) & +[ "$IS_MAIN" = 1 ] && x11vnc -display :0 -forever & +xsetroot -cursor_name left_ptr +autocutsel & +xkbcomp ~/.keymap.xkb $DISPLAY +xmodmap ~/.Xmodmap +export GTK_IM_MODULE=ibus +export QT_IM_MODULE=ibus +export XMODIFIERS=@im-ibus +[ -f ~/.xinitrc.post ] && . ~/.xinitrc.post +emacs |