diff options
author | Vincent Ambo <tazjin@google.com> | 2020-04-04T21·27+0100 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2020-04-04T21·27+0100 |
commit | e3864f3b85088bdebe7c0ece4c8172c83449168e (patch) | |
tree | d3002a46cc2bea8030ad6d7c5fd3d49c2da1fde7 /tools | |
parent | e90e3153f8216c6a1ce39f0e213264332af4b272 (diff) |
feat(tools/emacs): Title the TVL window correctly r/627
Diffstat (limited to 'tools')
-rw-r--r-- | tools/emacs/config/desktop.el | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/emacs/config/desktop.el b/tools/emacs/config/desktop.el index d923ab584c75..a646aa04a73e 100644 --- a/tools/emacs/config/desktop.el +++ b/tools/emacs/config/desktop.el @@ -108,6 +108,11 @@ title)) (format "IRCCloud<%s>" title)) + ;; The Virus Lounge should be, well ... + (`("Google-chrome" + ,(and (pred (lambda (title) (s-contains? "Meet - mng-biyw-xbb" title))) title)) + "The Virus Lounge") + ;; For other Chrome windows, make the title shorter. (`("Google-chrome" ,title) (format "Chrome<%s>" (s-truncate 42 (s-chop-suffix " - Google Chrome" title)))) |