From 693e42c9c2f05515614a57a6a5607fc975373467 Mon Sep 17 00:00:00 2001 From: Benjamin Chausse Date: Wed, 18 Oct 2023 12:10:59 -0400 Subject: Autostart pipewire --- .xinitrc | 1 + 1 file changed, 1 insertion(+) diff --git a/.xinitrc b/.xinitrc index b685cb4..ad078ac 100644 --- a/.xinitrc +++ b/.xinitrc @@ -1,5 +1,6 @@ $HOME/.dropbox-dist/dropboxd & $HOME/.screenlayout/office.sh & +dbus-launch --sh-syntax --exit-with-session; pulseaudio --kill; pipewire & makewall & sxhkd & dunst & -- cgit v1.2.3 From 3328536d241563d00af79cb7307cdee022e83e05 Mon Sep 17 00:00:00 2001 From: Benjamin Chausse Date: Fri, 20 Oct 2023 13:19:02 -0400 Subject: Update neomutt config --- .config/mutt/my-configs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.config/mutt/my-configs b/.config/mutt/my-configs index bd59b70..831bc67 100644 --- a/.config/mutt/my-configs +++ b/.config/mutt/my-configs @@ -13,6 +13,7 @@ macro index,pager a "goobook add" "add the sender address # Note that if you use an old version of mutt-wizard, # you will need to disable abook in it's script: # sed -i "s/^set\squery_command.*$//" /usr/share/mutt-wizard/mutt-wizard.muttrc +# }}} # PGP Encryption: {{{ # I want pgp encryption by default when possible. @@ -29,8 +30,5 @@ set print_command="muttprint" # Dump all headers # macro index p " " # }}} -# Colors {{{ -source colors -# }}} # vim: filetype=neomuttrc -- cgit v1.2.3 From a19df8b619e13e6f3065b612482110077ede4ef6 Mon Sep 17 00:00:00 2001 From: Benjamin Chausse Date: Fri, 20 Oct 2023 14:19:17 -0400 Subject: Update mail status bar dynamically --- .config/sxhkd/sxhkdrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/sxhkd/sxhkdrc b/.config/sxhkd/sxhkdrc index b8e5261..2ff1a2b 100644 --- a/.config/sxhkd/sxhkdrc +++ b/.config/sxhkd/sxhkdrc @@ -133,7 +133,7 @@ super + w $BROWSER ## TUI Email Client (neomutt) super + e - killall neomutt || $TERMINAL -e neomutt && mw -Y + kill -46 $(pidof dwmblocks) && killall neomutt || $TERMINAL -e neomutt && kill -46 $(pidof dwmblocks) ## TUI calendar (calendar.vim) super + shift + e $TERMINAL -t calendar -e nvim -c ":Calendar -view=week -first_day=monday" -- cgit v1.2.3 From 9248a57eca1186555d114ac6b2315d6c9381eee0 Mon Sep 17 00:00:00 2001 From: Benjamin Chausse Date: Tue, 24 Oct 2023 13:49:46 -0400 Subject: dwmblocks spacing --- .local/bin/dwmbar/dwmb-mail | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.local/bin/dwmbar/dwmb-mail b/.local/bin/dwmbar/dwmb-mail index bd8d56b..3cda519 100755 --- a/.local/bin/dwmbar/dwmb-mail +++ b/.local/bin/dwmbar/dwmb-mail @@ -17,4 +17,4 @@ unread="$(find "${XDG_DATA_HOME:-$HOME/.local/share}"/mail/*/*/new/* -type f | w pidof mbsync >/dev/null 2>&1 && icon=" " -[ "$unread" = "0" ] && [ "$icon" = "" ] || echo "  $unread $icon" +[ "$unread" = "0" ] && [ "$icon" = "" ] || echo "  $unread $icon" -- cgit v1.2.3