From df11b0f5fb87769a9f98c7917e1b50cd1373a46b Mon Sep 17 00:00:00 2001 From: Marcus Kammer Date: Tue, 4 Aug 2020 18:29:39 +0200 Subject: [PATCH 1/5] Update bookmarks --- eww-bookmarks | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/eww-bookmarks b/eww-bookmarks index d3208fc9..8e66ca18 100644 --- a/eww-bookmarks +++ b/eww-bookmarks @@ -1,5 +1,6 @@ ;; Auto-generated file; don't edit -((:url "https://www.phoronix.com/scan.php?page=home" :title "Linux Hardware Reviews, Open-Source Benchmarks & Linux Performance - Phoronix" :time "Tue Jul 28 12:59:20 2020") +((:url "https://sw.kovidgoyal.net/kitty/" :title "kitty - the fast, featureful, GPU based terminal emulator — kitty 0.18.2 documentation" :time "Sat Aug 1 10:31:13 2020") + (:url "https://www.phoronix.com/scan.php?page=home" :title "Linux Hardware Reviews, Open-Source Benchmarks & Linux Performance - Phoronix" :time "Tue Jul 28 12:59:20 2020") (:url "https://lwn.net/" :title "Welcome to LWN.net [LWN.net]" :time "Tue Jul 28 12:54:51 2020") (:url "https://quickref.common-lisp.net/index-per-library.html" :title "Quickref" :time "Thu Jul 23 19:26:30 2020") (:url "https://doc.opensuse.org/" :title "Overview of guides | openSUSE Documentation" :time "Tue Jun 30 18:51:51 2020") From 3dc2ac81f99efe883412478bdaa2e23189b07528 Mon Sep 17 00:00:00 2001 From: Marcus Kammer Date: Tue, 4 Aug 2020 18:29:53 +0200 Subject: [PATCH 2/5] Update Layouts for kitty --- kitty.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kitty.conf b/kitty.conf index baca45e7..58afb25b 100644 --- a/kitty.conf +++ b/kitty.conf @@ -300,7 +300,7 @@ initial_window_height 45 #: suffix of "c" on the width/height values to have them interpreted #: as number of cells instead of pixels. -enabled_layouts Tall, Horizontal, Splits +enabled_layouts Horizontal, Vertical #: The enabled window layouts. A comma separated list of layout names. #: The special value all means all layouts. The first listed layout From df187c3cdd20378883312a835ce398e1a26d69bb Mon Sep 17 00:00:00 2001 From: Marcus Kammer <2262664-marcuskammer@users.noreply.gitlab.com> Date: Wed, 5 Aug 2020 08:40:09 +0200 Subject: [PATCH 3/5] Onlye use horizontal and vertical layouts in kitty --- kitty.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kitty.conf b/kitty.conf index baca45e7..58afb25b 100644 --- a/kitty.conf +++ b/kitty.conf @@ -300,7 +300,7 @@ initial_window_height 45 #: suffix of "c" on the width/height values to have them interpreted #: as number of cells instead of pixels. -enabled_layouts Tall, Horizontal, Splits +enabled_layouts Horizontal, Vertical #: The enabled window layouts. A comma separated list of layout names. #: The special value all means all layouts. The first listed layout From 45b10a249a60bc1ca068702abcfcc4d008235d42 Mon Sep 17 00:00:00 2001 From: Marcus Kammer <2262664-marcuskammer@users.noreply.gitlab.com> Date: Wed, 5 Aug 2020 08:40:28 +0200 Subject: [PATCH 4/5] Add custom function to split windows in emacs --- init.el | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/init.el b/init.el index 429c9213..bb46e289 100755 --- a/init.el +++ b/init.el @@ -29,3 +29,13 @@ (put 'narrow-to-page 'disabled nil) (load "bundle--mk") + +(defun me/split-windows-horizontal () + ; Split windows horizontal by equal width + (interactive) + (defvar count-windows 3) + (let ((width (/ (window-total-width) count-windows))) + (defvar count 0) + (while (< count count-windows) + (split-window-right (- 0 width)) + (setq count (1+ count))))) From eacf738efa2ad52fd61b9a16869e42ea6fc136a8 Mon Sep 17 00:00:00 2001 From: Marcus Kammer <2262664-marcuskammer@users.noreply.gitlab.com> Date: Wed, 5 Aug 2020 08:40:48 +0200 Subject: [PATCH 5/5] Increase font-size in emacs --- bundle/custom_gnu.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundle/custom_gnu.el b/bundle/custom_gnu.el index 022ed0b8..3e293c27 100644 --- a/bundle/custom_gnu.el +++ b/bundle/custom_gnu.el @@ -16,7 +16,7 @@ ("37768a79b479684b0756dec7c0fc7652082910c37d8863c35b702db3f16000f8" "06bf0822aa77ea498bbd6038b59ad96fca43b272b49b18ab024218881ba134d1" "6e933f1668e124ec17fc7b6547f65ba760e06efb568a6c8091c600c67827e592" "7f6d4aebcc44c264a64e714c3d9d1e903284305fd7e319e7cb73345a9994f5ef" default))) '(default-frame-alist (quote - ((font . "Fira Code-11") + ((font . "Fira Code-13") (alpha . 100) (undecorated) (width . 85)