diff options
author | Philip Wittamore <philip@wittamore.com> | 2025-05-07 23:28:25 +0200 |
---|---|---|
committer | Philip Wittamore <philip@wittamore.com> | 2025-05-07 23:28:25 +0200 |
commit | dd4cc1795d41437ceade46ef80a09e3e3f6b43f5 (patch) | |
tree | 241bf38c8c10af6985416c0458f77d9943d38a38 | |
parent | 3853b68a13e054690403020d20276e74b235f370 (diff) | |
download | scripts-dd4cc1795d41437ceade46ef80a09e3e3f6b43f5.tar.gz scripts-dd4cc1795d41437ceade46ef80a09e3e3f6b43f5.tar.bz2 scripts-dd4cc1795d41437ceade46ef80a09e3e3f6b43f5.zip |
added .xinitrc
-rw-r--r-- | xinitrc | 27 |
1 files changed, 27 insertions, 0 deletions
@@ -0,0 +1,27 @@ +#!/bin/sh + +# Source global X session scripts. +if [ -d /etc/X11/xinit/xinitrc.d ]; then + for f in /etc/X11/xinit/xinitrc.d/*; do + [ -x "$f" ] && . "$f" + done + unset f +fi + +# Settings +synclient TouchpadOff=1 +pactl set-default-source rnnoise_source +bluetooth-autoconnect & + +# Services +picom -b & +clipmenud & +xscreensaver --no-splash & +wal -Rq +launch-dunst & + +# Desktop +conky -c .config/conky/conkyrc & +slstatus & +while type ~/.local/bin/dwm >/dev/null ; do ~/.local/bin/dwm && continue || break ; done +#~/.local/src/LIVE/dwm/dwm |