diff options
| author | filip <“filip.rabiega@gmail.com”> | 2026-01-21 11:26:01 +0100 |
|---|---|---|
| committer | filip <“filip.rabiega@gmail.com”> | 2026-01-21 11:26:01 +0100 |
| commit | 7c1058edb5da4eb145e57e66d78328beb9697085 (patch) | |
| tree | 6995d3cb88220aec3b13e8a44fbcb5db2b246df9 /.config/x11 | |
| parent | 9fd1f06f2a10d3d0e120dd5a45ad8cc3dceb6d84 (diff) | |
| download | dotfiles-7c1058edb5da4eb145e57e66d78328beb9697085.tar.gz dotfiles-7c1058edb5da4eb145e57e66d78328beb9697085.tar.bz2 dotfiles-7c1058edb5da4eb145e57e66d78328beb9697085.zip | |
lotsa changes too lazy to list then
Diffstat (limited to '.config/x11')
| -rw-r--r-- | .config/x11/xinitrc | 6 | ||||
| -rw-r--r-- | .config/x11/xprofile | 12 |
2 files changed, 18 insertions, 0 deletions
diff --git a/.config/x11/xinitrc b/.config/x11/xinitrc new file mode 100644 index 0000000..59df04a --- /dev/null +++ b/.config/x11/xinitrc @@ -0,0 +1,6 @@ +#!/bin/sh +# xinitrc runs automatically when you run startx. + +[ -f /home/filipek/.config/x11/xprofile ] && . /home/filipek/.config/x11/xprofile +[ -f /home/filipek/.config/x11/xinputrc ] && . /home/filipek/.config/x11/xinputrc +exec dwm diff --git a/.config/x11/xprofile b/.config/x11/xprofile new file mode 100644 index 0000000..aa66e07 --- /dev/null +++ b/.config/x11/xprofile @@ -0,0 +1,12 @@ +#!/bin/sh +# Filip's xprofile. + +# Autostart stuff on reboot +autostart="remaps slstatus xcompmgr xhidecursor" + +for program in $autostart; do + pidof -sx "$program" || "$program" & +done >/dev/null 2>&1 + +# Set wallpaper +xwallpaper --stretch "$HOME"/pix/wallpaper.jpg |
