From 65d20cfd473676adb37675a6867f276adcc11dff Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Sun, 8 Aug 2021 16:29:30 +0200 Subject: Added Xresource and xrdb for sxiv colors, Added qutebrowser German translation search engine, Added gallery-dl configuration --- config/gallery-dl/config.json | 6 ++++++ config/qutebrowser/config.py | 2 ++ config/x11/Xresources | 3 +++ config/x11/xinitrc | 1 + 4 files changed, 12 insertions(+) create mode 100644 config/gallery-dl/config.json create mode 100644 config/x11/Xresources diff --git a/config/gallery-dl/config.json b/config/gallery-dl/config.json new file mode 100644 index 0000000..3ce8f18 --- /dev/null +++ b/config/gallery-dl/config.json @@ -0,0 +1,6 @@ +{ + "extractor": + { + "base-directory": "/home/charles/data/manga/" + } +} diff --git a/config/qutebrowser/config.py b/config/qutebrowser/config.py index fc1e480..de73eb6 100644 --- a/config/qutebrowser/config.py +++ b/config/qutebrowser/config.py @@ -31,6 +31,8 @@ c.url.searchengines = { "wiby": "https://wiby.me/?q={}", "dlfren": "https://www.deepl.com/translator#fr/en/{}", "dlenfr": "https://www.deepl.com/translator#en/fr/{}", + "dldeen": "https://www.deepl.com/translator#de/en/{}", + "dlende": "https://www.deepl.com/translator#en/de/{}", } c.fonts.default_family = ["Fira Mono", "Baekmuk", "Symbola"] diff --git a/config/x11/Xresources b/config/x11/Xresources new file mode 100644 index 0000000..8797c87 --- /dev/null +++ b/config/x11/Xresources @@ -0,0 +1,3 @@ +! special +*.foreground: #eeeeee +*.background: #222222 diff --git a/config/x11/xinitrc b/config/x11/xinitrc index 807c59d..2771e72 100755 --- a/config/x11/xinitrc +++ b/config/x11/xinitrc @@ -10,6 +10,7 @@ redshift & # filter blue light dunst & # notification daemon unclutter --timeout 10 --fork # hide mouse after 2s clout push-watch & # could with rsync +xrdb "$XDG_CONFIG_HOME/x11/Xresources" case "$(cat /etc/hostname)" in charles-main) -- cgit