diff options
author | Philip Wittamore <philip@wittamore.com> | 2025-05-12 10:21:21 +0200 |
---|---|---|
committer | Philip Wittamore <philip@wittamore.com> | 2025-05-12 10:21:21 +0200 |
commit | 65f4b25db5d0f085b2a33b5fb22b6e8d364afdc9 (patch) | |
tree | c84e4db89b736e150ddbd4fb71634972f406c8ab /xinitrc | |
parent | d2f523b031601a031da65643c114bcec5165922f (diff) | |
download | scripts-65f4b25db5d0f085b2a33b5fb22b6e8d364afdc9.tar.gz scripts-65f4b25db5d0f085b2a33b5fb22b6e8d364afdc9.tar.bz2 scripts-65f4b25db5d0f085b2a33b5fb22b6e8d364afdc9.zip |
update
Diffstat (limited to 'xinitrc')
-rw-r--r-- | xinitrc | 38 |
1 files changed, 30 insertions, 8 deletions
@@ -1,4 +1,4 @@ -#!/bin/sh +#!/usr/bin/env bash # Source global X session scripts. if [ -d /etc/X11/xinit/xinitrc.d ]; then @@ -8,21 +8,43 @@ if [ -d /etc/X11/xinit/xinitrc.d ]; then unset f fi -# Settings +#--- Settings +# I have a red trackpoint button synclient TouchpadOff=1 + +# internal mic is crappy so noise reduction pactl set-default-source rnnoise_source -# Services +#--- Services + +# automount usb drives to /media with udev rule udiskie & -picom -b & + +# notification daemon +launch-dunst & + +# bluetooth headset +bluetooth-autoconnect -d & + +# clipboard manager clipmenud & + +# pretty windows +picom -b & + +# pretty screen xscreensaver --no-splash & + +# pywal16 color theme matches wallpaper wal -Rq -launch-dunst & -bluetooth-autoconnect -d & -# Desktop +#--- Desktop + +# system stats conky -c .config/conky/conkyrc & + +# status bar slstatus & + +# restart dwm on quit while type ~/.local/bin/dwm >/dev/null ; do ~/.local/bin/dwm && continue || break ; done -#~/.local/src/LIVE/dwm/dwm |