From 296c5c5ade6925f80df15b5245e72a948065606c Mon Sep 17 00:00:00 2001 From: Ricky Jon Date: Tue, 19 Feb 2019 07:55:06 +1100 Subject: [PATCH 1/6] Hide the hueg message when running ffmpeg --- .aliasrc | 1 + 1 file changed, 1 insertion(+) diff --git a/.aliasrc b/.aliasrc index eddc0da1..42979ad5 100644 --- a/.aliasrc +++ b/.aliasrc @@ -22,6 +22,7 @@ alias ka="killall" \ ref="shortcuts >/dev/null; source ~/.shortcuts" \ upc="sudo pacman -Syu; pkill -RTMIN+8 i3blocks" \ lsp="pacman -Qett --color=always | less" + ffmpeg="ffmpeg -hide_banner" command -v nvim >/dev/null && alias vim="nvim" vimdiff="nvim -d" # Use neovim for vim if present. From 4f472d1b3db556507a1c20250f962cb596f113ac Mon Sep 17 00:00:00 2001 From: Luke Smith Date: Mon, 18 Feb 2019 16:16:01 -0500 Subject: [PATCH 2/6] zoom for bg --- .scripts/tools/setbg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.scripts/tools/setbg b/.scripts/tools/setbg index c9e4a940..950ae7c6 100755 --- a/.scripts/tools/setbg +++ b/.scripts/tools/setbg @@ -1,4 +1,4 @@ #!/bin/sh # Sets the background. If given an argument, will set file as background. [ ! -z "$1" ] && cp "$1" ~/.config/wall.png && notify-send -i "$HOME/.config/wall.png" "Wallpaper changed." -xwallpaper --maximize ~/.config/wall.png +xwallpaper --zoom ~/.config/wall.png From 371df91cb8fc69e2b49cb1fb2444d5c327717f9e Mon Sep 17 00:00:00 2001 From: Luke Smith Date: Mon, 18 Feb 2019 16:16:16 -0500 Subject: [PATCH 3/6] nvim --- .local/share/applications/vim.desktop | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.local/share/applications/vim.desktop b/.local/share/applications/vim.desktop index 963303e8..aa2284e2 100644 --- a/.local/share/applications/vim.desktop +++ b/.local/share/applications/vim.desktop @@ -1,4 +1,4 @@ [Desktop Entry] Type=Application -Name=Vim -Exec=/usr/local/bin/st -e vim %u +Name=Neovim +Exec=/usr/local/bin/st -e nvim %u From 291f1421d40a8621302af4af6c2020ace2f387bf Mon Sep 17 00:00:00 2001 From: Luke Smith Date: Mon, 18 Feb 2019 16:16:33 -0500 Subject: [PATCH 4/6] xresources warning --- .readme.mom | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.readme.mom b/.readme.mom index 7844860b..1bc801ff 100644 --- a/.readme.mom +++ b/.readme.mom @@ -85,8 +85,7 @@ I'm sure you can figure it out. Several modules will be click-sensitive, although if you're using my system as indented, you probably won't be doing much clicking. Still, you can right click on a module to get some information about what exactly it means.\c .FOOTNOTE -Some people think the icons I use in the status bar are a little gaudy. -Obviously I like them, but these are actually just unicode characters, meaning you can just change your default font in the status bar to change them. +The statusbar icons are merely emojis and you can change them by changing your emoji font. If you just want black and white icons, you should actually just be able to uninstall \f(CWttf-emojione\fP and the font will fall back on a black and white font. .FOOTNOTE END .PP @@ -357,6 +356,8 @@ Check .PDF_WWW_LINK "https://wiki.archlinux.org/index.php/X_resources" "the Arch Wiki's article" for more information. LARBS is also compatible with pywal, but it is not installed or used by default anymore. +.PP +Do not remove \f(CW~/.Xresources\fP or the color settings specifically because some programs, especially the i3 bar read them and will display as blank if they are deleted. .HEADING 2 "How do I set up my email?" .LI .ITEM From 3bb4928ab64dcdf57932c4757e6304aa75a8509a Mon Sep 17 00:00:00 2001 From: Luke Smith Date: Mon, 18 Feb 2019 20:46:06 -0500 Subject: [PATCH 5/6] mail sync icon to tmp --- .scripts/statusbar/mailbox | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.scripts/statusbar/mailbox b/.scripts/statusbar/mailbox index bb72c5d9..0c5ccbe6 100755 --- a/.scripts/statusbar/mailbox +++ b/.scripts/statusbar/mailbox @@ -14,5 +14,4 @@ case $BLOCK_BUTTON in - Middle click syncs mail" ;; esac -echo "$(du -a ~/.mail/*/INBOX/new/* 2>/dev/null | sed -n '$=')$(cat ~/.config/mutt/.dl 2>/dev/null)" - +echo "$(du -a ~/.mail/*/INBOX/new/* 2>/dev/null | sed -n '$=')$(cat /tmp/imapsyncicon 2>/dev/null)" From 6c1fab53ecde7a67b0bb725a2bb32656425f4654 Mon Sep 17 00:00:00 2001 From: Ricky Jon Date: Tue, 19 Feb 2019 19:54:10 +1100 Subject: [PATCH 6/6] fix --- .aliasrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.aliasrc b/.aliasrc index 42979ad5..111d3b55 100644 --- a/.aliasrc +++ b/.aliasrc @@ -21,7 +21,7 @@ alias ka="killall" \ YT="youtube-viewer" \ ref="shortcuts >/dev/null; source ~/.shortcuts" \ upc="sudo pacman -Syu; pkill -RTMIN+8 i3blocks" \ - lsp="pacman -Qett --color=always | less" + lsp="pacman -Qett --color=always | less" \ ffmpeg="ffmpeg -hide_banner" command -v nvim >/dev/null && alias vim="nvim" vimdiff="nvim -d" # Use neovim for vim if present.