Compare commits
No commits in common. "50e001f085cd802ea51959ab0f54ae5fe9d7f68b" and "aada6a294dda0447adc968be71669e9c21a18772" have entirely different histories.
50e001f085
...
aada6a294d
|
@ -1,8 +1,20 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
bgsDirectory="/home/andrzej/bgs/"
|
bgsDirectory="/home/andrzej/bgs/"
|
||||||
path=${1}
|
|
||||||
duration=${2}
|
|
||||||
|
|
||||||
|
while getopts 'p:d:' OPTION; do
|
||||||
|
case "$OPTION" in
|
||||||
|
p)
|
||||||
|
path=${OPTARG}
|
||||||
|
hyprpaper unload all
|
||||||
|
;;
|
||||||
|
d)
|
||||||
|
duration=${OPTARG}
|
||||||
|
;;
|
||||||
|
?)
|
||||||
|
echo "uh-oh"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
|
||||||
echo "path: ${path}, duration: ${duration}"
|
echo "path: ${path}, duration: ${duration}"
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
alias update="apt update && apt upgrade -y"
|
alias update="apt update && apt upgrade -y"
|
||||||
alias tidal="/usr/bin/flatpak run --branch=stable --arch=x86_64 --command=com.mastermindzh.tidal-hifi com.mastermindzh.tidal-hifi &"
|
alias tidal="/usr/bin/flatpak run --branch=stable --arch=x86_64 --command=com.mastermindzh.tidal-hifi com.mastermindzh.tidal-hifi &"
|
||||||
alias devsesh="$HOME/scripts/tmux-dev-session.sh"
|
alias devsesh="$HOME/scripts/tmux-dev-session.sh"
|
||||||
alias slides="${HOME}/scripts/hyprland-slideshow.sh"
|
|
||||||
|
|
||||||
export SUDO_EDITOR="nvim"
|
export SUDO_EDITOR="nvim"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue