added tldr alias; fix pipewire

This commit is contained in:
Filip Rojek 2023-07-24 22:00:58 +02:00
parent 1e85bda258
commit ba356f30ce
2 changed files with 8 additions and 9 deletions

View File

@ -174,6 +174,7 @@ alias speedtest="speedtest-cli"
alias "cd.."="cd .." alias "cd.."="cd .."
alias df='df -h' # human-readable sizes alias df='df -h' # human-readable sizes
alias free='free -m' # show sizes in MB alias free='free -m' # show sizes in MB
alias tldr='tldr -t base16' # colors
## gpg encryption ## gpg encryption
# verify signature for isos # verify signature for isos
@ -243,5 +244,3 @@ export LANGUAGE=en_US.UTF-8
# exec startx # exec startx
# fi # fi
bash /home/fr/bara.sh

View File

@ -1,10 +1,11 @@
#!/bin/bash #!/bin/bash
# Make sure this is before the 'exec' command or it won't be sourced. # Make sure this is before the 'exec' command or it won't be sourced.
# [ -f /etc/xprofile ] && . /etc/xprofile [ -f /etc/xprofile ] && . /etc/xprofile
eval "$(dbus-launch --sh-syntax --exit-with-session)"
[ -f ~/.xprofile ] && . ~/.xprofile [ -f ~/.xprofile ] && . ~/.xprofile
#[[ -f ~/.Xresources ]] && xrdb -merge -I$HOME ~/.Xresources [ -f ~/.Xresources ] && xrdb -merge -I$HOME ~/.Xresources
eval "$(dbus-launch --sh-syntax --exit-with-session)"
feh --bg-center "$HOME/Pictures/bg.png" & feh --bg-center "$HOME/Pictures/bg.png" &
@ -13,10 +14,9 @@ xautolock -locker slock -secure -time 5 &
#pipewire & #pipewire &
dbus-run-session pipewire & dbus-run-session pipewire &
pipewire-pulse & pipewire-pulse &
wireplumber &
dwmblocks & dwmblocks &
while true; do dbus-launch --sh-syntax --exit-with-session dwm
dbus-launch --sh-syntax --exit-with-session dwm
#exec dwm
done