From 94c6f3cdded77a9e97cccefef9ac0c6ccd28244d Mon Sep 17 00:00:00 2001 From: Hekuran <62762955+narukeh@users.noreply.github.com> Date: Sun, 26 Jul 2020 14:25:24 +0200 Subject: sort and add src & dt (#768) * sort and add src; dt I sorted them by category, so it isn't confusing, and also added `~/.local/src` & `~/.local/share`, and changed `~` for `$HOME`. * sort alphabetically sort alphabetically --- .config/directories | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to '.config') diff --git a/.config/directories b/.config/directories index 7f55c5c..b3807cd 100644 --- a/.config/directories +++ b/.config/directories @@ -3,9 +3,11 @@ cac ${XDG_CACHE_HOME:-$HOME/.cache} cf ${XDG_CONFIG_HOME:-$HOME/.config} D ${XDG_DOWNLOAD_DIR:-$HOME/Downloads} d ${XDG_DOCUMENTS_DIR:-$HOME/Documents} +dt ${XDG_DATA_HOME:-$HOME/.local/share} h $HOME m ${XDG_MUSIC_DIR:-$HOME/Music} mn /mnt pp ${XDG_PICTURES_DIR:-$HOME/Pictures} -sc ~/.local/bin +sc $HOME/.local/bin +src $HOME/.local/src vv ${XDG_VIDEOS_DIR:-$HOME/Videos} -- cgit v1.3.1 From 4589bb0a8b04473ccc0c027c0ba835acdf289689 Mon Sep 17 00:00:00 2001 From: Yacine Date: Tue, 28 Jul 2020 17:52:56 +0200 Subject: Let zathura use the normal clipboard (#757) Letting zathura use the standard clipboard by default makes using it more intuitive. We just have to select the zone to copy with our cursor and then it is directly usable with a CTRL-V in any windows. --- .config/zathura/zathurarc | 1 + 1 file changed, 1 insertion(+) (limited to '.config') diff --git a/.config/zathura/zathurarc b/.config/zathura/zathurarc index 9fa50ca..dc45337 100644 --- a/.config/zathura/zathurarc +++ b/.config/zathura/zathurarc @@ -1,6 +1,7 @@ set statusbar-h-padding 0 set statusbar-v-padding 0 set page-padding 1 +set selection-clipboard clipboard map u scroll half-up map d scroll half-down map D toggle_page_mode -- cgit v1.3.1