dotfiles

Yes, my $HOME has a git repo now :(

git clone git://git.shimmy1996.com/dotfiles.git
commit af6018bcceb623feca70f2697799d4e658ffc479
parent dacf985e6be06fc3f324a4d0350402bf52711bc7
Author: Shimmy Xu <shimmy.xu@shimmy1996.com>
Date:   Mon, 21 Jan 2019 22:49:27 -0500

Merge branch 'master' of ssh://git.shimmy1996.com:4869/shimmy1996/dotfiles

Diffstat:
M.config/i3/config | 2+-
M.config/sway/config | 4+++-
D.local/bin/sway/start-notifyd | 9---------
3 files changed, 4 insertions(+), 11 deletions(-)
diff --git a/.config/i3/config b/.config/i3/config
@@ -293,7 +293,7 @@ bar {
 }
 
 ### Startup Applications
+exec --no-startup-id dunst
 exec --no-startup-id greenclip daemon
-exec --no-startup-id ~/.local/bin/sway/start-notifyd
 exec --no-startup-id dropbox
 exec --no-startup-id fcitx -d
diff --git a/.config/sway/config b/.config/sway/config
@@ -1,6 +1,8 @@
+## Prevent dunst from being spawned.
+exec --no-startup-id mako
+
 include ~/.config/i3/config
 
-### Aesthetics
 ## Background
 output * bg $background stretch
 ## GTK Settings (wayland specific)
diff --git a/.local/bin/sway/start-notifyd b/.local/bin/sway/start-notifyd
@@ -1,9 +0,0 @@
-#!/usr/bin/env bash
-
-# Starts corresponding notification daemon.
-
-if [[ $XDG_SESSION_TYPE -eq "wayland" ]]; then
-    exec mako
-else
-    exec dunst
-fi