From 8237e2ba3b1c224ce5f05673fa47312e69d4980c Mon Sep 17 00:00:00 2001 From: Benjamin Chausse Date: Tue, 27 Oct 2020 14:27:56 -0400 Subject: move fonts to subfolders --- .config/vifm/vifmrc | 7 +++---- .local/bin/dwmbar/dwmb-battery | 6 ++---- .local/bin/dwmbar/dwmb-news | 1 + .../fonts/ApercuMono/FontsFree-Net-ApercuMono.ttf | Bin 0 -> 26076 bytes .../share/fonts/Font Awesome 5 Brands-Regular-400.otf | Bin 475468 -> 0 bytes .local/share/fonts/Font Awesome 5 Free-Regular-400.otf | Bin 97112 -> 0 bytes .local/share/fonts/Font Awesome 5 Free-Solid-900.otf | Bin 591244 -> 0 bytes .../FontAwesome/Font Awesome 5 Brands-Regular-400.otf | Bin 0 -> 475468 bytes .../FontAwesome/Font Awesome 5 Free-Regular-400.otf | Bin 0 -> 97112 bytes .../FontAwesome/Font Awesome 5 Free-Solid-900.otf | Bin 0 -> 591244 bytes .local/share/fonts/FontsFree-Net-ApercuMono.ttf | Bin 26076 -> 0 bytes .xinitrc | 3 ++- 12 files changed, 8 insertions(+), 9 deletions(-) create mode 100644 .local/share/fonts/ApercuMono/FontsFree-Net-ApercuMono.ttf delete mode 100644 .local/share/fonts/Font Awesome 5 Brands-Regular-400.otf delete mode 100644 .local/share/fonts/Font Awesome 5 Free-Regular-400.otf delete mode 100644 .local/share/fonts/Font Awesome 5 Free-Solid-900.otf create mode 100644 .local/share/fonts/FontAwesome/Font Awesome 5 Brands-Regular-400.otf create mode 100644 .local/share/fonts/FontAwesome/Font Awesome 5 Free-Regular-400.otf create mode 100644 .local/share/fonts/FontAwesome/Font Awesome 5 Free-Solid-900.otf delete mode 100644 .local/share/fonts/FontsFree-Net-ApercuMono.ttf diff --git a/.config/vifm/vifmrc b/.config/vifm/vifmrc index 2c10c5d..83a54ca 100644 --- a/.config/vifm/vifmrc +++ b/.config/vifm/vifmrc @@ -231,8 +231,6 @@ nnoremap bg :!sh ~/.scripts/control/setbg %c & " Upload highlighted file to 0x0.st and then save url to clipboard nnoremap 0x0 :!curl -s -F'file=@%c' https://0x0.st > /dev/null | xclip -sel clip && notify-send "vifm" "File uploaded: $(xclip -o -selection clipboard)" & -" Reverse image search with Tiney -nnoremap re :!bash ~/bin/utils/tineye %c & " Go to the file that is right before "../" for going to the top most file nnoremap gg ggj @@ -275,7 +273,8 @@ nnoremap A cw nnoremap x :!/home/siddharth/bin/utils/extract %f & " Share Files with dropbox - nnoremap s :!dbshare %d/%b & +nnoremap s :!dbshare %d/%b & +nnoremap re :!tmpfunc %d/%b & " Make a new directory nnoremap mkd :mkdir @@ -287,7 +286,7 @@ nnoremap mkd :mkdir set classify=' :dir:/, :exe:, :reg:, :link:' " various file names set classify+=' ::../::, ::*.sh::, ::*.[hc]pp::, ::*.[hc]::, ::/^copying|license$/::, ::.git/,,*.git/::, ::*.epub,,*.fb2,,*.djvu::, ::*.pdf::, ::*.htm,,*.html,,**.[sx]html,,*.xml::' -set classify+=' ::*.go::, ::*.vim,,vimrc::, ::*.tex,,*.aux,,*.toc,,*.rnw,,*.rmd::, ::*.js::, ::*.css::, ::*.log,,*.db::, ::*.py,,*.pyc,,*.pyd,,*.pyo::, ::*.md::, ::*.json::, ::*.vcf::, ::*.rss::' +set classify+=' ::*.go::, ::*.vim,,vimrc::, ::*.tex,,*.aux,,*.toc,,*.rnw,,*.rmd::, ::*.js::, ::*.css::, ::*.log,,*.db::, ::*.py,,*.pyc,,*.pyd,,*.pyo::, ::*.md::, ::*.json::, ::*.vcf::, ::*.rss::' " archives set classify+=' ::*.7z,,*.ace,,*.arj,,*.bz2,,*.cpio,,*.deb,,*.dz,,*.gz,,*.jar,,*.lzh,,*.lzma,,*.rar,,*.rpm,,*.rz,,*.tar,,*.taz,,*.tb2,,*.tbz,,*.tbz2,,*.tgz,,*.tlz,,*.trz,,*.txz,,*.tz,,*.tz2,,*.xz,,*.z,,*.zip,,*.zoo::' " images diff --git a/.local/bin/dwmbar/dwmb-battery b/.local/bin/dwmbar/dwmb-battery index c8a748b..5f3759e 100755 --- a/.local/bin/dwmbar/dwmb-battery +++ b/.local/bin/dwmbar/dwmb-battery @@ -1,10 +1,8 @@ #!/bin/sh case $BLOCK_BUTTON in - 1) notify-send hey ;; - 2) setsid -f "$TERMINAL" -e calcurse ;; - 3) notify-send " Time/date module" "\- Left click to show upcoming appointments for the next three days via \`calcurse -d3\` and show the month via \`cal\` -- Middle click opens calcurse if installed" ;; + 1) notify-send -a " Battery" "$(acpi -b)" ;; + 3) notify-send -a " Battery" "$(acpi -V)" ;; 6) "$TERMINAL" -e "$EDITOR" "$0" ;; esac diff --git a/.local/bin/dwmbar/dwmb-news b/.local/bin/dwmbar/dwmb-news index 4318040..b62c576 100755 --- a/.local/bin/dwmbar/dwmb-news +++ b/.local/bin/dwmbar/dwmb-news @@ -4,5 +4,6 @@ nb=$(cat /tmp/newsupdate 2>/dev/null || echo "$(newsboat -x print-unread | awk ' echo " $nb" case $BLOCK_BUTTON in 1) "$TERMINAL" -e newsboat ;; + 3) newsup ;; 6) "$TERMINAL" -e "$EDITOR" "$0" ;; esac diff --git a/.local/share/fonts/ApercuMono/FontsFree-Net-ApercuMono.ttf b/.local/share/fonts/ApercuMono/FontsFree-Net-ApercuMono.ttf new file mode 100644 index 0000000..22dfdff Binary files /dev/null and b/.local/share/fonts/ApercuMono/FontsFree-Net-ApercuMono.ttf differ diff --git a/.local/share/fonts/Font Awesome 5 Brands-Regular-400.otf b/.local/share/fonts/Font Awesome 5 Brands-Regular-400.otf deleted file mode 100644 index 8ba7054..0000000 Binary files a/.local/share/fonts/Font Awesome 5 Brands-Regular-400.otf and /dev/null differ diff --git a/.local/share/fonts/Font Awesome 5 Free-Regular-400.otf b/.local/share/fonts/Font Awesome 5 Free-Regular-400.otf deleted file mode 100644 index 3ec6277..0000000 Binary files a/.local/share/fonts/Font Awesome 5 Free-Regular-400.otf and /dev/null differ diff --git a/.local/share/fonts/Font Awesome 5 Free-Solid-900.otf b/.local/share/fonts/Font Awesome 5 Free-Solid-900.otf deleted file mode 100644 index cac31d8..0000000 Binary files a/.local/share/fonts/Font Awesome 5 Free-Solid-900.otf and /dev/null differ diff --git a/.local/share/fonts/FontAwesome/Font Awesome 5 Brands-Regular-400.otf b/.local/share/fonts/FontAwesome/Font Awesome 5 Brands-Regular-400.otf new file mode 100644 index 0000000..8ba7054 Binary files /dev/null and b/.local/share/fonts/FontAwesome/Font Awesome 5 Brands-Regular-400.otf differ diff --git a/.local/share/fonts/FontAwesome/Font Awesome 5 Free-Regular-400.otf b/.local/share/fonts/FontAwesome/Font Awesome 5 Free-Regular-400.otf new file mode 100644 index 0000000..3ec6277 Binary files /dev/null and b/.local/share/fonts/FontAwesome/Font Awesome 5 Free-Regular-400.otf differ diff --git a/.local/share/fonts/FontAwesome/Font Awesome 5 Free-Solid-900.otf b/.local/share/fonts/FontAwesome/Font Awesome 5 Free-Solid-900.otf new file mode 100644 index 0000000..cac31d8 Binary files /dev/null and b/.local/share/fonts/FontAwesome/Font Awesome 5 Free-Solid-900.otf differ diff --git a/.local/share/fonts/FontsFree-Net-ApercuMono.ttf b/.local/share/fonts/FontsFree-Net-ApercuMono.ttf deleted file mode 100644 index 22dfdff..0000000 Binary files a/.local/share/fonts/FontsFree-Net-ApercuMono.ttf and /dev/null differ diff --git a/.xinitrc b/.xinitrc index 60c3380..2864f94 100644 --- a/.xinitrc +++ b/.xinitrc @@ -10,8 +10,9 @@ picom -b & echo "" > $HOME/.local/share/newsboat/queue echo us > $HOME/.cache/layout xrdb -load $HOME/.Xresources -dwmblocks & flashfocus -n 30 -o 0.75 -v ERROR & +dwmblocks & +sudo /opt/piavpn/bin/pia-daemon & # exec icewm exec dwm # vim:filetype=sh -- cgit v1.2.3