diff options
author | self <self@sateoki.xyz> | 2022-02-19 15:56:04 +0000 |
---|---|---|
committer | self <self@sateoki.xyz> | 2022-02-19 15:56:04 +0000 |
commit | 059730186b2918c47838a6d514c290f3cc2f7a0d (patch) | |
tree | c1a968292b292c26365d7e984a6633ed9a47d190 /zsh/.zshrc | |
parent | 272be514b8a8a3e0512b52900dc42ac194f1d200 (diff) |
Added a temporary command to change volume and mnx, mprv, etc. for audio control
Diffstat (limited to 'zsh/.zshrc')
-rw-r--r-- | zsh/.zshrc | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -62,6 +62,8 @@ alias mc="mpc" alias mpp="mpc pause" alias mpl="mpc play" alias mps="mpc stop" +alias mnx="mpc next" +alias mprv="mpc prev" # backgrounds, wal... @@ -75,6 +77,15 @@ alias atw="mn anime-towatch" # Anime I should watch alias ac="mn anime-completed" # Anime I have completed alias ad="mn anime-dropped" # Anime I have dropped +# documents +alias p="zathura" +alias o="libreoffice --writer" + +# pulseaudio - this is a temporary solution +sv() { + pactl set-sink-volume 0 $1% +} + # git # TODO: add command to push to all remote repos, e.g. github, origin and gitlab alias gb="git branch" |