summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuke Smith <luke@lukesmith.xyz>2020-03-28 14:12:53 -0400
committerLuke Smith <luke@lukesmith.xyz>2020-03-28 14:12:53 -0400
commitb340d3dc839abab1688ba0b6592905b49646716b (patch)
tree647f0207349494207a53ac45a7622c643ac6c65c
parent9365b3db7d0f80bb9bbe965a0b1d1df663ee06f3 (diff)
downloadeibhear-b340d3dc839abab1688ba0b6592905b49646716b.tar.gz
eibhear-b340d3dc839abab1688ba0b6592905b49646716b.tar.zst
eibhear-b340d3dc839abab1688ba0b6592905b49646716b.zip
calcurse automatically xdg compliant now
-rw-r--r--.config/i3/config2
-rw-r--r--.config/sxhkd/sxhkdrc2
-rwxr-xr-x.local/bin/statusbar/clock2
3 files changed, 3 insertions, 3 deletions
diff --git a/.config/i3/config b/.config/i3/config
index 8aee953..a22fe8e 100644
--- a/.config/i3/config
+++ b/.config/i3/config
@@ -81,7 +81,7 @@ bindsym $mod+Shift+r exec --no-startup-id winresize
bindsym $mod+t split toggle
bindsym $mod+Shift+t gaps inner current set $inner_gaps; gaps outer current set $outer_gaps
-bindsym $mod+y exec $term -e calcurse -D ~/.config/calcurse
+bindsym $mod+y exec $term -e calcurse
bindsym $mod+Shift+y exec --no-startup-id i3resize left
bindsym $mod+u exec --no-startup-id ddspawn tmuxdd
diff --git a/.config/sxhkd/sxhkdrc b/.config/sxhkd/sxhkdrc
index 6d8bda1..0b05a3d 100644
--- a/.config/sxhkd/sxhkdrc
+++ b/.config/sxhkd/sxhkdrc
@@ -21,7 +21,7 @@ super + m
super + n
$TERMINAL -e newsboat
super + c
- $TERMINAL -e calcurse -D ~/.config/calcurse
+ $TERMINAL -e calcurse
super + v
$TERMINAL -e nvim -c VimwikiIndex
super + shift + a
diff --git a/.local/bin/statusbar/clock b/.local/bin/statusbar/clock
index 5d46359..c668926 100755
--- a/.local/bin/statusbar/clock
+++ b/.local/bin/statusbar/clock
@@ -3,7 +3,7 @@
date '+%Y %b %d (%a) %I:%M%p'
case $BLOCK_BUTTON in
- 1) pgrep -x dunst >/dev/null && notify-send "This Month" "$(cal --color=always | sed "s/..7m/<b><span color=\"red\">/;s/..27m/<\/span><\/b>/")" && notify-send "Appointments" "$(calcurse -D ~/.config/calcurse -d3)" ;;
+ 1) pgrep -x dunst >/dev/null && notify-send "This Month" "$(cal --color=always | sed "s/..7m/<b><span color=\"red\">/;s/..27m/<\/span><\/b>/")" && notify-send "Appointments" "$(calcurse)" ;;
2) $TERMINAL -e calcurse -D ~/.config/calcurse ;;
3) pgrep -x dunst >/dev/null && notify-send "📅 Time/date module" "\- Left click to show upcoming appointments for the next three days via \`calcurse -d3\` and show the month via \`cal\`
- Middle click opens calcurse if installed" ;;