diff --git a/.aliasrc b/.aliasrc index eddc0da1..111d3b55 100644 --- a/.aliasrc +++ b/.aliasrc @@ -21,7 +21,8 @@ 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. 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 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 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)" diff --git a/.scripts/tools/setbg b/.scripts/tools/setbg index 952dd795..d21b54ad 100755 --- a/.scripts/tools/setbg +++ b/.scripts/tools/setbg @@ -1,4 +1,5 @@ #!/bin/sh + # Sets the background. # If given an argument with -u flag, will check the file from given url whether it is an image or not. If the file is an image then it sets the file as background. # Without -u flag, will set local file as backgound. @@ -14,4 +15,4 @@ if [ "$1" == "-u" ]; then else [ ! -z "$1" ] && cp "$1" ~/.config/wall.png && notify-send -i "$HOME/.config/wall.png" "Wallpaper changed." xwallpaper --maximize ~/.config/wall.png -fi +fi \ No newline at end of file