aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorLibravatar sommerfeld <[email protected]>2026-04-17 10:54:14 +0100
committerLibravatar sommerfeld <[email protected]>2026-04-17 10:54:14 +0100
commit9391ffd1af2fff4157f6cfa2cd67ba3ad7b5e912 (patch)
tree21c30d297aa2594c9186c4d8cd9ab51dc469b0fd
parent1cbd2703457a7a145533cfc2ca8bb140859da524 (diff)
downloaddotfiles-9391ffd1af2fff4157f6cfa2cd67ba3ad7b5e912.tar.gz
dotfiles-9391ffd1af2fff4157f6cfa2cd67ba3ad7b5e912.tar.bz2
dotfiles-9391ffd1af2fff4157f6cfa2cd67ba3ad7b5e912.zip
fix: correct bugs across multiple config files
- zathurarc: fix broken synctex command (missing quote, wrong placeholders) and remove duplicate window-title-basename line - makepkg.conf: remove typo'd pzip/pzip2 duplicate COMPRESSGZ/BZ2 lines - cargo/config: fix placeholder mold path to -fuse-ld=mold - linkhandler: fix typo *.JGP → *.JPG - mpv.conf: update deprecated profile=gpu-hq → profile=high-quality
-rw-r--r--home/.config/cargo/config2
-rw-r--r--home/.config/mpv/mpv.conf2
-rw-r--r--home/.config/pacman/makepkg.conf2
-rw-r--r--home/.config/zathura/zathurarc4
-rwxr-xr-xhome/.local/bin/linkhandler2
5 files changed, 4 insertions, 8 deletions
diff --git a/home/.config/cargo/config b/home/.config/cargo/config
index cd91d7e..0ef993e 100644
--- a/home/.config/cargo/config
+++ b/home/.config/cargo/config
@@ -1,6 +1,6 @@
[target.x86_64-unknown-linux-gnu]
linker = "clang"
-rustflags = ["-C", "target-cpu=native", "link-arg=-fuse-ld=/path/to/mold"]
+rustflags = ["-C", "target-cpu=native", "-C", "link-arg=-fuse-ld=mold"]
[build]
rustc-wrapper = "sccache"
diff --git a/home/.config/mpv/mpv.conf b/home/.config/mpv/mpv.conf
index 0113894..1afc3cd 100644
--- a/home/.config/mpv/mpv.conf
+++ b/home/.config/mpv/mpv.conf
@@ -105,7 +105,7 @@ quiet
sub-auto=no
[hq]
-profile=gpu-hq
+profile=high-quality
video-sync=display-resample
interpolation
tscale=oversample
diff --git a/home/.config/pacman/makepkg.conf b/home/.config/pacman/makepkg.conf
index 383ba6d..7233660 100644
--- a/home/.config/pacman/makepkg.conf
+++ b/home/.config/pacman/makepkg.conf
@@ -2,8 +2,6 @@ CFLAGS="-march=native -Ofast -pipe -fomit-frame-pointer"
RUSTFLAGS="-C opt-level=2 -C target-cpu=native"
MAKEFLAGS="-j4"
BUILDDIR=/tmp/makepkg
-COMPRESSGZ=(pzip -c -f -n)
-COMPRESSBZ2=(pzip2 -c -f)
COMPRESSGZ=(pigz -c -f -n)
COMPRESSBZ2=(pbzip2 -c -f)
COMPRESSXZ=(xz -c -z - --threads=0)
diff --git a/home/.config/zathura/zathurarc b/home/.config/zathura/zathurarc
index 1bff52b..14122d8 100644
--- a/home/.config/zathura/zathurarc
+++ b/home/.config/zathura/zathurarc
@@ -1,8 +1,6 @@
set selection-clipboard clipboard
-set synctex-editor-command 'nvr --remote +"%line" "%file'
+set synctex-editor-command 'nvr --remote +"%{line}" "%{file}"'
set incremental-search true
-# set highlight-transparency 0.0
-set window-title-basename true
set window-title-basename true
set zoom-center true
# map = zoom in
diff --git a/home/.local/bin/linkhandler b/home/.local/bin/linkhandler
index cfe1ba1..e91da50 100755
--- a/home/.local/bin/linkhandler
+++ b/home/.local/bin/linkhandler
@@ -23,7 +23,7 @@ case "$url" in
acestream://*)
setsid acestream-launcher "$url" >/dev/null 2>&1 &
;;
-*.png | *.jpg | *.jpe | *.jpeg | *.PNG | *.JGP | *.JPE | *.JPEG)
+*.png | *.jpg | *.jpe | *.jpeg | *.PNG | *.JPG | *.JPE | *.JPEG)
local_url="$(resolve_url "$url")"
setsid imv "$local_url" >/dev/null 2>&1 &
;;