diff options
author | Amin Bandali <bandali@gnu.org> | 2022-12-25 00:47:19 -0500 |
---|---|---|
committer | Amin Bandali <bandali@gnu.org> | 2022-12-25 00:47:19 -0500 |
commit | b157d7f5c608f4e180ba65d4bb8b84713edf6b3f (patch) | |
tree | 27fef0b0e23b527c361059bd1c8e8d6048479cf8 /.xinitrc | |
parent | bed4a98af2931651d5fe73492b39b6edc615cf4c (diff) | |
download | configs-b157d7f5c608f4e180ba65d4bb8b84713edf6b3f.tar.gz configs-b157d7f5c608f4e180ba65d4bb8b84713edf6b3f.tar.xz configs-b157d7f5c608f4e180ba65d4bb8b84713edf6b3f.zip |
Start EXWM through DBus and fix pinentry-gnome3 annoyances
Diffstat (limited to '')
-rwxr-xr-x | .xinitrc | 9 |
1 files changed, 3 insertions, 6 deletions
@@ -1,12 +1,9 @@ # -*- mode: sh; sh-shell: sh -*- -#if [ -f "$HOME/.profile" ]; then -# . "$HOME/.profile"; -#fi - if [ -f "$HOME/.local/bin/startup-progs" ]; then . "$HOME/.local/bin/startup-progs" fi -# LC_ALL=C twm & -[ -x "$(command -v emacs)" ] && exec ssh-agent emacs -ib 0 +# launch with dbus in part so that pinentry-gnome3 -- seemingly the +# pinentry du jour -- doesn't fall back to curses and screw us. +[ -x "$(command -v emacs)" ] && dbus-run-session ssh-agent emacs -ib 0 |