diff options
-rwxr-xr-x | dwm-audio | 2 | ||||
-rwxr-xr-x | dwm-browser | 7 | ||||
-rwxr-xr-x | dwm-screenshot | 9 | ||||
-rwxr-xr-x | dwm-terminal | 8 |
4 files changed, 25 insertions, 1 deletions
@@ -38,7 +38,7 @@ volume="$(pamixer --get-volume-human)" mute="$(pamixer --get-mute)" if [[ $volume == 0 || "$mute" == "true" ]]; then # Sound muted notification - dunstify -t 1000 -a "changeVolume" -u low -i audio-volume-muted-blocking-symbolic \ + dunstify -t 1000 -a "changeVolume" -u low -i audio-volume-muted-symbolic \ -h string:x-dunst-stack-tag:$msgTag "Volume muted" canberra-gtk-play -i audio-volume-change -d "changeVolume" else diff --git a/dwm-browser b/dwm-browser new file mode 100755 index 0000000..582ff20 --- /dev/null +++ b/dwm-browser @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# This is the browser that is launched by dwm +librewolf & + +exit 0 + + diff --git a/dwm-screenshot b/dwm-screenshot new file mode 100755 index 0000000..32a463f --- /dev/null +++ b/dwm-screenshot @@ -0,0 +1,9 @@ +#!/usr/bin/env bash + +file="$HOME/Pictures/screenshots/$(date +%Y-%m-%d-%H:%M:%S)-screenshot.png" + +scrot "$file" + +dunstify -t 1000 -a "Screenshot taken" -u low -I "$file" \ + -h string:x-dunst-stack-tag:Image "" + diff --git a/dwm-terminal b/dwm-terminal new file mode 100755 index 0000000..ec68314 --- /dev/null +++ b/dwm-terminal @@ -0,0 +1,8 @@ +#!/usr/bin/env bash +# This is the terminal that is launched by dwm +ghostty & + +exit 0 + + + |