diff options
-rwxr-xr-x | desktop/.config/sway/config | 4 | ||||
-rw-r--r-- | emacs/.config/emacs-kj/init.el | 7 |
2 files changed, 9 insertions, 2 deletions
diff --git a/desktop/.config/sway/config b/desktop/.config/sway/config index af20fde..dfb3040 100755 --- a/desktop/.config/sway/config +++ b/desktop/.config/sway/config @@ -46,9 +46,9 @@ include /etc/sway/config-vars.d/* # your displays after another 300 seconds, and turn your screens back on when # resumed. It will also lock your screen before your computer goes to sleep. exec swayidle -w \ - timeout 900 'swaylock -f' \ + timeout 900 'swaylock -f -c 000000' \ timeout 960 'swaymsg "output * dpms off"' resume 'swaymsg "output * dpms on"' \ - before-sleep 'swaylock -f' + before-sleep 'swaylock -f -c 000000' bindsym $mod+Shift+z exec --no-startup-id 'swaylock' ### Input configuration diff --git a/emacs/.config/emacs-kj/init.el b/emacs/.config/emacs-kj/init.el index 4565bc9..68f0c21 100644 --- a/emacs/.config/emacs-kj/init.el +++ b/emacs/.config/emacs-kj/init.el @@ -819,6 +819,13 @@ (when (file-exists-p google-config-file) (load-file google-config-file))) +;; Bridge abbrevs +;; Maybe use this instead? https://lists.gnu.org/archive/html/help-gnu-emacs/2021-11/msg00436.html +(define-global-abbrev "club" "♣") +(define-global-abbrev "diamond" "♦") +(define-global-abbrev "heart" "♥") +(define-global-abbrev "spade" "♠") + (use-package pcre2el) (use-package pdf-tools) |