mirror of
https://github.com/LukeSmithxyz/voidrice.git
synced 2026-03-20 01:37:45 +01:00
Compare commits
1 Commits
87c4c176da
...
1e13a71d30
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1e13a71d30 |
@ -58,22 +58,7 @@ cmd extract ${{
|
|||||||
printf "%s\n\t" "$fx"
|
printf "%s\n\t" "$fx"
|
||||||
printf "extract?[y/N]"
|
printf "extract?[y/N]"
|
||||||
read ans
|
read ans
|
||||||
[ $ans = "y" ] && {
|
[ $ans = "y" ] && aunpack $fx
|
||||||
case $fx in
|
|
||||||
*.tar.bz2) tar xjf $fx ;;
|
|
||||||
*.tar.gz) tar xzf $fx ;;
|
|
||||||
*.bz2) bunzip2 $fx ;;
|
|
||||||
*.rar) unrar e $fx ;;
|
|
||||||
*.gz) gunzip $fx ;;
|
|
||||||
*.tar) tar xf $fx ;;
|
|
||||||
*.tbz2) tar xjf $fx ;;
|
|
||||||
*.tgz) tar xzf $fx ;;
|
|
||||||
*.zip) unzip $fx ;;
|
|
||||||
*.Z) uncompress $fx ;;
|
|
||||||
*.7z) 7z x $fx ;;
|
|
||||||
*.tar.xz) tar xf $fx ;;
|
|
||||||
esac
|
|
||||||
}
|
|
||||||
}}
|
}}
|
||||||
|
|
||||||
cmd delete ${{
|
cmd delete ${{
|
||||||
|
|||||||
@ -1 +0,0 @@
|
|||||||
nsxiv
|
|
||||||
@ -13,6 +13,5 @@ if [ -f "${XDG_CONFIG_HOME:-$HOME/.config}/x11/xprofile" ]; then
|
|||||||
else
|
else
|
||||||
. "$HOME/.xprofile"
|
. "$HOME/.xprofile"
|
||||||
fi
|
fi
|
||||||
# Activate dbus variables
|
|
||||||
dbus-update-activation-environment --all
|
|
||||||
ssh-agent dwm
|
ssh-agent dwm
|
||||||
|
|||||||
@ -36,7 +36,7 @@ filter() { sed "s/ /:/g" | awk -F':' '$7==""{printf "%s%s (%s) %s\n",$1,$3,$5,$6
|
|||||||
unopenedluks="$(for drive in $allluks; do
|
unopenedluks="$(for drive in $allluks; do
|
||||||
uuid="${drive%% *}"
|
uuid="${drive%% *}"
|
||||||
uuid="${uuid//-}" # This is a bashism.
|
uuid="${uuid//-}" # This is a bashism.
|
||||||
[ -n "$decrypted" ] && for open in $decrypted; do
|
for open in $decrypted; do
|
||||||
[ "$uuid" = "$open" ] && break 1
|
[ "$uuid" = "$open" ] && break 1
|
||||||
done && continue 1
|
done && continue 1
|
||||||
echo "🔒 $drive"
|
echo "🔒 $drive"
|
||||||
|
|||||||
@ -4,7 +4,7 @@
|
|||||||
# When clicked, brings up `neomutt`.
|
# When clicked, brings up `neomutt`.
|
||||||
|
|
||||||
case $BLOCK_BUTTON in
|
case $BLOCK_BUTTON in
|
||||||
1) setsid -w -f "$TERMINAL" -e neomutt; pkill -RTMIN+12 "${STATUSBAR:-dwmblocks}" ;;
|
1) setsid -f "$TERMINAL" -e neomutt ;;
|
||||||
2) setsid -f mw -Y >/dev/null ;;
|
2) setsid -f mw -Y >/dev/null ;;
|
||||||
3) notify-send "📬 Mail module" "\- Shows unread mail
|
3) notify-send "📬 Mail module" "\- Shows unread mail
|
||||||
- Shows 🔃 if syncing mail
|
- Shows 🔃 if syncing mail
|
||||||
|
|||||||
@ -1,3 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
|
|
||||||
"$TERMINAL" -e "$@"
|
|
||||||
Loading…
x
Reference in New Issue
Block a user