diff options
author | P. J. McDermott <pj@pehjota.net> | 2021-08-22 11:43:03 (EDT) |
---|---|---|
committer | P. J. McDermott <pj@pehjota.net> | 2021-08-22 11:43:37 (EDT) |
commit | d6c1c966594d042c68d16414de33be66ea4ffee3 (patch) | |
tree | 391c696d0eb1ff1b4246107123db5f7a06222628 | |
parent | 8acf29a306884b980a410041699224c3c7e2cf79 (diff) | |
download | fluxbox-d6c1c966594d042c68d16414de33be66ea4ffee3.zip fluxbox-d6c1c966594d042c68d16414de33be66ea4ffee3.tar.gz fluxbox-d6c1c966594d042c68d16414de33be66ea4ffee3.tar.bz2 |
.xinitrc: run-parts before startfluxbox
The eval command in .xinitrc.d/keychain needs to be run before running
fluxbox and fbpanel, which both run applications.
The keychain dialog won't have window decorations.
-rw-r--r-- | .xinitrc | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -20,12 +20,12 @@ xinput set-prop 'TPPS/2 IBM TrackPoint' 'Evdev Wheel Emulation Button' 2 xinput set-prop 'TPPS/2 IBM TrackPoint' 'Evdev Wheel Emulation Timeout' 200 xinput set-prop 'TPPS/2 IBM TrackPoint' 'Evdev Wheel Emulation Axes' 6 7 4 5 -startfluxbox - for f in $(run-parts --list ~/.xinitrc.d); do . "${f}" done +startfluxbox + rm -f ~/.xsessionmanage mkfifo -m 0600 ~/.xsessionmanage while read action; do |