Change X11 window title after emacs started

前端 未结 3 1593
醉梦人生
醉梦人生 2021-02-14 15:58

When I start emacs, I can use the --title= option to control the title of the x-window that holds the emacs application. Is it possible to change the title after emacs starts f

3条回答
  •  栀梦
    栀梦 (楼主)
    2021-02-14 16:25

    M-x set-frame-name NewName RET
    

    and from elisp

    (set-frame-name "NewName")
    

提交回复
热议问题