16 lines
293 B
EmacsLisp
16 lines
293 B
EmacsLisp
(require 'exwm)
|
|
(require 'exwm-config)
|
|
|
|
(display-battery-mode)
|
|
|
|
(defun discord ()
|
|
(interactive)
|
|
(start-process "discord" nil "discord"))
|
|
|
|
;; TODO: if running, switch focus, otherwise start
|
|
(defun firefox ()
|
|
(interactive)
|
|
(start-process "firefox" nil "firefox"))
|
|
|
|
(exwm-config-example)
|