diff options
author | Case Duckworth | 2024-07-10 19:32:09 -0500 |
---|---|---|
committer | Case Duckworth | 2024-07-10 19:32:09 -0500 |
commit | 596b5338150f849f9ed12a44965c1bf2d92066af (patch) | |
tree | 44d8f6bb4ebcffdc28f4239c667092c7407e55a9 /xinitrc | |
parent | Add bob-theme.el (diff) | |
download | dots-596b5338150f849f9ed12a44965c1bf2d92066af.tar.gz dots-596b5338150f849f9ed12a44965c1bf2d92066af.zip |
Update xinitrc
Diffstat (limited to 'xinitrc')
-rw-r--r-- | xinitrc | 25 |
1 files changed, 16 insertions, 9 deletions
diff --git a/xinitrc b/xinitrc index 186c45f..f976e9a 100644 --- a/xinitrc +++ b/xinitrc | |||
@@ -1,7 +1,8 @@ | |||
1 | # Set up X.org -*- sh -*- | 1 | # Set up X.org |
2 | xrdb ~/.xresources | 2 | xrdb ~/.xresources |
3 | xmodmap ~/.xmodmap | 3 | xmodmap ~/.xmodmap |
4 | #xsetroot -cursor_name left_ptr | 4 | xsetroot -cursor_name left_ptr |
5 | xsetroot -grey | ||
5 | xhost +SI:localhost:$USER | 6 | xhost +SI:localhost:$USER |
6 | 7 | ||
7 | # https://wiki.archlinux.org/title/Libinput and libinput(4) | 8 | # https://wiki.archlinux.org/title/Libinput and libinput(4) |
@@ -18,14 +19,20 @@ touchpad_set "libinput Tapping Drag Lock Enabled" 1 | |||
18 | # Environment variables | 19 | # Environment variables |
19 | export GTK_OVERLAY_SCROLLING=0 | 20 | export GTK_OVERLAY_SCROLLING=0 |
20 | 21 | ||
22 | if test -z "$DBUS_SESSION_BUS_ADDRESS" | ||
23 | then eval "$(dbus-launch --sh-syntax --exit-with-x11)" | ||
24 | fi | ||
25 | |||
21 | # Autostart | 26 | # Autostart |
22 | eval $(dbus-launch --sh-syntax --exit-with-x11) | ||
23 | /usr/libexec/pipewire-launcher & | 27 | /usr/libexec/pipewire-launcher & |
24 | brightnessctl set 40% | 28 | brightnessctl set 40% |
25 | if test -x ~/.fehbg | 29 | test -x ~/.fehbg && ~/.fehbg |
26 | then ~/.fehbg | 30 | |
27 | else xsetroot -grey | 31 | keepassxc & |
28 | fi | 32 | |
33 | # exec herbstluftwm --locked --autostart $HOME/.herbstluftwmrc | ||
34 | # exec i3 | ||
35 | |||
36 | # exwm | ||
29 | 37 | ||
30 | # WM | 38 | IN_EXWM=1 exec emacs |
31 | exec dbus-run-session i3 | ||