# HG changeset patch # User Yuya Nishihara # Date 1716615712 -32400 # Sat May 25 14:41:52 2024 +0900 # Node ID b151064266bf47740bd72fb90825b4af8e5904dc # Parent 18a30e43152b3140c206e00b9fca110e468b2f28 emacs: clean up .Xresources hack which isn't used anymore diff --git a/Makefile b/Makefile --- a/Makefile +++ b/Makefile @@ -33,7 +33,6 @@ $(PYTHON) ./install.py -a -t $(DESTDIR) [ ! -x "$(FZF_BIN)" ] || $(MAKE) install-fzf-symlinks [ ! -x "$(GTK3_NOCSD_BIN)" ] || $(MAKE) install-gtk3-nocsd-symlinks - [ -z "$$DISPLAY" ] || $(XRDB) -merge ~/.Xresources [ -z "$$WAYLAND_DISPLAY" ] || $(MAKE) import-gsettings $(MAKE) compile-terminfo || true diff --git a/dot.Xresources b/dot.Xresources deleted file mode 100644 --- a/dot.Xresources +++ /dev/null @@ -1,3 +0,0 @@ -! xrdb -merge ~/.Xresouces -Emacs.geometry: 110x62 -!Emacs.UseXIM: off diff --git a/dot.config/sway/config b/dot.config/sway/config --- a/dot.config/sway/config +++ b/dot.config/sway/config @@ -93,10 +93,6 @@ # later split a container horizontally and move focus around. workspace_layout stacking -# Load Xresources to XWayland. Otherwise font of the emacs daemon wouldn't -# be properly set. -exec xrdb -load ~/.Xresources - # Start Connman System Tray. #exec cmst --minimized diff --git a/dot.emacs b/dot.emacs --- a/dot.emacs +++ b/dot.emacs @@ -180,10 +180,6 @@ (when (require 'atomic-chrome nil t) (atomic-chrome-start-server))) -; configured by ~/.Xresources -;(setq default-frame-alist -; (append '((width . 110) (height . 52)) default-frame-alist)) - (setq ediff-split-window-function 'split-window-sensibly) (setq split-height-threshold nil) (setq split-width-threshold 160)