Perhaps I am the only suckless fan who also uses Emacs. :> Here is how I made Emacs use the same keys as st for changing font size: (global-set-key (kbd "C-S-<prior>") 'text-scale-increase) (global-set-key (kbd "C-S-<next>") 'text-scale-decrease) (global-set-key (kbd "C-S-<home>") 'text-scale-set)
- [dev] I made Emacs use the same keys as st for changing font s... Greg Reagle