From bf9e5595f4ee0a6c9ebb7a3a59a312b289446df8 Mon Sep 17 00:00:00 2001 From: Philip Wittamore Date: Fri, 3 Oct 2025 18:54:34 +0200 Subject: update --- dwm-audio | 2 +- dwm-browser | 7 +++++++ dwm-screenshot | 9 +++++++++ dwm-terminal | 8 ++++++++ 4 files changed, 25 insertions(+), 1 deletion(-) create mode 100755 dwm-browser create mode 100755 dwm-screenshot create mode 100755 dwm-terminal diff --git a/dwm-audio b/dwm-audio index 3ef4331..788b529 100755 --- a/dwm-audio +++ b/dwm-audio @@ -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 + + + -- cgit v1.2.3