diff options
author | Thanos Apollo <[email protected]> | 2023-09-06 16:36:41 +0300 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2023-09-06 16:36:41 +0300 |
commit | 4554d93dd5fd7e72ff6ee92835da4e296b7143fc (patch) | |
tree | 1c6fd4b0b1b099fb9122daf9439a090ae939ed1d | |
parent | bcb3af0340bf3ed02763f61aecec2ab134eeed80 (diff) |
emacs: (pass) change to use double quotes
-rw-r--r-- | .emacs.d/modules/thanos-pass.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.emacs.d/modules/thanos-pass.el b/.emacs.d/modules/thanos-pass.el index a72759b..505093b 100644 --- a/.emacs.d/modules/thanos-pass.el +++ b/.emacs.d/modules/thanos-pass.el @@ -41,8 +41,8 @@ (start-process-shell-command "xdotool" nil (if user - (format "sleep 0.3 && xdotool getactivewindow type '%s' && xdotool getactivewindow key Tab && xdotool getactivewindow type '%s'" user pass) - (format "sleep 0.3 && xdotool getactivewindow type 'thanosapollo' && xdotool getactivewindow key Tab && xdotool getactivewindow type '%s'" pass)))))) + (format "sleep 0.3 && xdotool getactivewindow type \"%s\" && xdotool getactivewindow key Tab && xdotool getactivewindow type \"%s\"" user pass) + (format "sleep 0.3 && xdotool getactivewindow type 'thanosapollo' && xdotool getactivewindow key Tab && xdotool getactivewindow type \"%s\"" pass)))))) (let ((ivy-height 100)) (unwind-protect (with-selected-frame |