diff options
author | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2021-08-22 09:55:57 (EDT) |
---|---|---|
committer | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2021-08-22 09:55:57 (EDT) |
commit | fe7753cc4534d6ec3c2ba051d8ced91a5322d009 (patch) | |
tree | 857c00fbb053c12bbdbdc7603af04915669bac0b | |
parent | 8af0a0437dc7232224959b1b4ac49b3e9e540470 (diff) | |
download | fluxbox-fe7753cc4534d6ec3c2ba051d8ced91a5322d009.zip fluxbox-fe7753cc4534d6ec3c2ba051d8ced91a5322d009.tar.gz fluxbox-fe7753cc4534d6ec3c2ba051d8ced91a5322d009.tar.bz2 |
.xinitrc: run-parts after startfluxbox
This will give the keychain dialog window decorations.
-rw-r--r-- | .xinitrc | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -9,10 +9,6 @@ PATH="${HOME}/bin:${PATH}" . ~/.exports -for f in $(run-parts --list ~/.xinitrc.d); do - . "${f}" -done - xmodmap "${HOME}/.Xmodmap" export GTK_IM_MODULE='xim' export QT_IM_MODULE='xim' @@ -21,6 +17,10 @@ dpmsmouse 'Logitech USB Laser Mouse' & startfluxbox +for f in $(run-parts --list ~/.xinitrc.d); do + . "${f}" +done + rm -f ~/.xsessionmanage mkfifo -m 0600 ~/.xsessionmanage while read action; do |