diff options
| author | auric <104602845+ihateamongus@users.noreply.github.com> | 2025-09-07 22:04:30 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-09-07 22:04:30 -0500 |
| commit | 4f1341c29047183a0f361e3af0437666ca3cc660 (patch) | |
| tree | 8637dae4adb83fbdfce6e9de930a13736cb6a5d2 /dwm | |
| parent | e8dc15cd322b928ef0cdfd8452cb62b626a3de3f (diff) | |
| parent | 7101240c59bcdb00c1422d382fc4a15d20d38f5e (diff) | |
Merge pull request #14 from ihateamongus/codex/find-common-status-bar-options
Resolve ephemerality of clickable status bar elements
Diffstat (limited to 'dwm')
| -rw-r--r-- | dwm/config.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dwm/config.h b/dwm/config.h index f24f70b..497dc66 100644 --- a/dwm/config.h +++ b/dwm/config.h @@ -71,8 +71,8 @@ static const char *screenshotcmd[] = { "flameshot", "gui", NULL }; static const char *mediaplaypause[] = { "playerctl", "play-pause", NULL }; static const char *medianext[] = { "playerctl", "next", NULL }; static const char *mediaprev[] = { "playerctl", "previous", NULL }; -static const char *calendarcmd[] = { "/bin/sh", "-c", "st -e cal -3", NULL }; -static const char *dunstlogcmd[] = { "/bin/sh", "-c", "st -e less \"$HOME/.cache/dunst/dunst.log\"", NULL }; +static const char *calendarcmd[] = { "/bin/sh", "-c", "st -e sh -c 'cal -3 | less -+F'", NULL }; +static const char *dunstlogcmd[] = { "/bin/sh", "-c", "st -e sh -c 'less -+F \"$HOME/.cache/dunst/dunst.log\"'", NULL }; static const char *powermenucmd[] = { "/bin/sh", "-c", "printf 'lock\\nreboot\\nshutdown' | dmenu | xargs -r -I{} sh -c 'case \"{}\" in lock) slock ;; reboot) loginctl reboot ;; shutdown) loginctl poweroff ;; esac'", NULL }; static const Key keys[] = { |
