From d79df9a600cd681cda08b76d74513dc8db8b919f Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Mon, 28 Aug 2017 17:17:04 -0700 Subject: [PATCH 1/3] [XMonad] Remove keepass stuff --- dotfiles/xmonad/xmonad.hs | 2 -- 1 file changed, 2 deletions(-) diff --git a/dotfiles/xmonad/xmonad.hs b/dotfiles/xmonad/xmonad.hs index 12a1ae3f..9bfc8a49 100644 --- a/dotfiles/xmonad/xmonad.hs +++ b/dotfiles/xmonad/xmonad.hs @@ -192,7 +192,6 @@ transmissionSelector = fmap (isPrefixOf "Transmission") title hangoutsSelector = chromeSelectorBase <&&> fmap isHangoutsTitle title gmailSelector = chromeSelectorBase <&&> fmap isGmailTitle title volumeSelector = className =? "Pavucontrol" -keepassSelector = className =? "keepassxc" virtualClasses = [ (hangoutsSelector, "Hangouts") @@ -211,7 +210,6 @@ emacsCommand = "emacsclient -c" htopCommand = "termite -e htop" transmissionCommand = "transmission-gtk" volumeCommand = "pavucontrol" -keepassCommand = "systemctl --user restart keepassx.service" taffybarCommand = "restart_taffybar.sh" -- Startup hook From 4ad7ed37da6fc327dcb178922e1f2d0e6fc8dee9 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Mon, 28 Aug 2017 17:18:59 -0700 Subject: [PATCH 2/3] [XMonad] Set termite title when executing htop --- dotfiles/xmonad/xmonad.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotfiles/xmonad/xmonad.hs b/dotfiles/xmonad/xmonad.hs index 9bfc8a49..6a35c37c 100644 --- a/dotfiles/xmonad/xmonad.hs +++ b/dotfiles/xmonad/xmonad.hs @@ -207,7 +207,7 @@ gmailCommand = "start_chrome.sh --new-window https://mail.google.com/mail/u/0/#i spotifyCommand = "spotify" chromeCommand = "start_chrome.sh" emacsCommand = "emacsclient -c" -htopCommand = "termite -e htop" +htopCommand = "termite -e htop -t htop" transmissionCommand = "transmission-gtk" volumeCommand = "pavucontrol" taffybarCommand = "restart_taffybar.sh" From 552c193bfbedd1a428be03fe38cd3264f3805c17 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Mon, 28 Aug 2017 17:23:52 -0700 Subject: [PATCH 3/3] [Emacs] Fix override of org-switch-to-buffer --- dotfiles/emacs.d/README.org | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dotfiles/emacs.d/README.org b/dotfiles/emacs.d/README.org index 86967d90..4066eaad 100644 --- a/dotfiles/emacs.d/README.org +++ b/dotfiles/emacs.d/README.org @@ -1161,8 +1161,8 @@ it on by default. Its probably safe to turn it on when in a programming mode. :config (progn (defun imalison:maybe-use-frames-for-org (&rest args) - (let ((fn (if frame-mode 'org-switch-to-buffer-other-window - 'switch-to-buffer-other-frame))) + (let ((fn (if frame-mode 'switch-to-buffer-other-frame + 'switch-to-buffer-other-window))) (apply fn args))) (advice-add 'org-switch-to-buffer-other-window :override 'imalison:maybe-use-frames-for-org)