mirror of
https://github.com/LukeSmithxyz/voidrice.git
synced 2026-03-20 01:37:45 +01:00
Merge branch 'master' into patch-1
This commit is contained in:
commit
87ed7355ed
3
.aliasrc
3
.aliasrc
@ -21,7 +21,8 @@ alias ka="killall" \
|
|||||||
YT="youtube-viewer" \
|
YT="youtube-viewer" \
|
||||||
ref="shortcuts >/dev/null; source ~/.shortcuts" \
|
ref="shortcuts >/dev/null; source ~/.shortcuts" \
|
||||||
upc="sudo pacman -Syu; pkill -RTMIN+8 i3blocks" \
|
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.
|
command -v nvim >/dev/null && alias vim="nvim" vimdiff="nvim -d" # Use neovim for vim if present.
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
[Desktop Entry]
|
[Desktop Entry]
|
||||||
Type=Application
|
Type=Application
|
||||||
Name=Vim
|
Name=Neovim
|
||||||
Exec=/usr/local/bin/st -e vim %u
|
Exec=/usr/local/bin/st -e nvim %u
|
||||||
|
|||||||
@ -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.
|
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
|
Still, you can right click on a module to get some information about what exactly it means.\c
|
||||||
.FOOTNOTE
|
.FOOTNOTE
|
||||||
Some people think the icons I use in the status bar are a little gaudy.
|
The statusbar icons are merely emojis and you can change them by changing your emoji font.
|
||||||
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.
|
|
||||||
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.
|
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
|
.FOOTNOTE END
|
||||||
.PP
|
.PP
|
||||||
@ -357,6 +356,8 @@ Check
|
|||||||
.PDF_WWW_LINK "https://wiki.archlinux.org/index.php/X_resources" "the Arch Wiki's article"
|
.PDF_WWW_LINK "https://wiki.archlinux.org/index.php/X_resources" "the Arch Wiki's article"
|
||||||
for more information.
|
for more information.
|
||||||
LARBS is also compatible with pywal, but it is not installed or used by default anymore.
|
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?"
|
.HEADING 2 "How do I set up my email?"
|
||||||
.LI
|
.LI
|
||||||
.ITEM
|
.ITEM
|
||||||
|
|||||||
@ -14,5 +14,4 @@ case $BLOCK_BUTTON in
|
|||||||
- Middle click syncs mail" ;;
|
- Middle click syncs mail" ;;
|
||||||
esac
|
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)"
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,5 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
# Sets the background.
|
# 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.
|
# 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.
|
# Without -u flag, will set local file as backgound.
|
||||||
@ -14,4 +15,4 @@ if [ "$1" == "-u" ]; then
|
|||||||
else
|
else
|
||||||
[ ! -z "$1" ] && cp "$1" ~/.config/wall.png && notify-send -i "$HOME/.config/wall.png" "Wallpaper changed."
|
[ ! -z "$1" ] && cp "$1" ~/.config/wall.png && notify-send -i "$HOME/.config/wall.png" "Wallpaper changed."
|
||||||
xwallpaper --maximize ~/.config/wall.png
|
xwallpaper --maximize ~/.config/wall.png
|
||||||
fi
|
fi
|
||||||
Loading…
x
Reference in New Issue
Block a user