Merge branch 'master' into patch-1

This commit is contained in:
Ceylan Bozoğullarından 2019-02-19 20:35:09 +03:00 committed by GitHub
commit 87ed7355ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 10 additions and 8 deletions

View File

@ -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.

View File

@ -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

View File

@ -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

View File

@ -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)"

View File

@ -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