From 633db36d0938fbdc6db408b51fe2e49b2faabb75 Mon Sep 17 00:00:00 2001 From: Luke Smith Date: Thu, 2 Apr 2020 07:23:21 -0400 Subject: noto mono default if installed, inconsolata comted --- .config/fontconfig/fonts.conf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to '.config') diff --git a/.config/fontconfig/fonts.conf b/.config/fontconfig/fonts.conf index cc435d5..749a7cc 100755 --- a/.config/fontconfig/fonts.conf +++ b/.config/fontconfig/fonts.conf @@ -28,8 +28,9 @@ monospace + Noto Sans Mono Liberation Mono - Inconsolata + Joy Pixels Noto Color Emoji -- cgit v1.3.1 From 77ba6e73c64aebf9e4f35a217117fc3dafbde99c Mon Sep 17 00:00:00 2001 From: Spenser Truex Date: Sun, 5 Apr 2020 15:30:49 -0700 Subject: Prevent writing all marked imgs onto file (lossage) (#534) This fix issues a warning message and does nothing in that case. Running C-x c (copy) or C-x m (move) will copy/move all the marked files to a single location. If that location is not a directory, then creating that file and overwriting it several times results in complete loss of data in the case of moving, and unhelpful behaviour in the case of "copying". Only the last marked file remains in the file. --- .config/sxiv/exec/key-handler | 2 ++ 1 file changed, 2 insertions(+) (limited to '.config') diff --git a/.config/sxiv/exec/key-handler b/.config/sxiv/exec/key-handler index d9f1825..73b572a 100755 --- a/.config/sxiv/exec/key-handler +++ b/.config/sxiv/exec/key-handler @@ -6,11 +6,13 @@ do "c") [ -z "$destdir" ] && destdir="$(sed "s/\s.*#.*$//;/^\s*$/d" ~/.config/directories | awk '{print $2}' | dmenu -l 20 -i -p "Copy file(s) to where?" | sed "s|~|$HOME|g")" [ -z "$destdir" ] && exit + [ ! -d "$destdir" ] && notify-send "$destdir is not a directory, cancelled." && exit cp "$file" "$destdir" && notify-send -i "$(readlink -f "$file")" "$file copied to $destdir." & ;; "m") [ -z "$destdir" ] && destdir="$(sed "s/\s.*#.*$//;/^\s*$/d" ~/.config/directories | awk '{print $2}' | dmenu -l 20 -i -p "Move file(s) to where?" | sed "s|~|$HOME|g")" [ -z "$destdir" ] && exit + [ ! -d "$destdir" ] && notify-send "$destdir is not a directory, cancelled." && exit mv "$file" "$destdir" && notify-send -i "$(readlink -f "$file")" "$file moved to $destdir." & ;; "r") -- cgit v1.3.1 From 6cb9c842c6691842d1bd34e495e84e12646d4991 Mon Sep 17 00:00:00 2001 From: Luke Smith Date: Sun, 5 Apr 2020 18:31:37 -0400 Subject: inc rmd --- .config/fontconfig/fonts.conf | 1 - 1 file changed, 1 deletion(-) (limited to '.config') diff --git a/.config/fontconfig/fonts.conf b/.config/fontconfig/fonts.conf index 749a7cc..1a4b404 100755 --- a/.config/fontconfig/fonts.conf +++ b/.config/fontconfig/fonts.conf @@ -30,7 +30,6 @@ Noto Sans Mono Liberation Mono - Joy Pixels Noto Color Emoji -- cgit v1.3.1 From 2d8fe0c738e84f2a202914771e7be665718d588e Mon Sep 17 00:00:00 2001 From: Luke Smith Date: Tue, 7 Apr 2020 09:22:41 -0400 Subject: emoji fonts not specified for mono --- .config/fontconfig/fonts.conf | 2 -- 1 file changed, 2 deletions(-) (limited to '.config') diff --git a/.config/fontconfig/fonts.conf b/.config/fontconfig/fonts.conf index 1a4b404..2d58803 100755 --- a/.config/fontconfig/fonts.conf +++ b/.config/fontconfig/fonts.conf @@ -30,8 +30,6 @@ Noto Sans Mono Liberation Mono - Joy Pixels - Noto Color Emoji -- cgit v1.3.1