diff options
| author | Josh Rahm <rahm@boson.lan> | 2021-11-24 12:48:13 -0700 |
|---|---|---|
| committer | Josh Rahm <rahm@boson.lan> | 2021-11-24 12:48:13 -0700 |
| commit | c5a27bb21f012a521e90350d4322c458f3a3e618 (patch) | |
| tree | e0e8368fa236ae646ecee20d86733003c2c997e6 /extras/HOME | |
| parent | e41358263a211bb651ebfdeedeef28c013494960 (diff) | |
| download | rde-c5a27bb21f012a521e90350d4322c458f3a3e618.tar.gz rde-c5a27bb21f012a521e90350d4322c458f3a3e618.tar.bz2 rde-c5a27bb21f012a521e90350d4322c458f3a3e618.zip | |
Added some better support for Void Linux.
Void Linux doesn't have spotify in its official repos. Going with open
source solutions, I can use spotifyd, but had to hack my spotify-control
scripts to get it to work.
Void linux also puts all its binaries in /bin for some reason. Not sure
I like that, but I had to change the DMenu module to support that.
Diffstat (limited to 'extras/HOME')
| -rwxr-xr-x | extras/HOME/.xmonad/xmobar-logo | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extras/HOME/.xmonad/xmobar-logo b/extras/HOME/.xmonad/xmobar-logo index bf48047..aca1846 100755 --- a/extras/HOME/.xmonad/xmobar-logo +++ b/extras/HOME/.xmonad/xmobar-logo @@ -4,6 +4,6 @@ case "$(uname -a)" in *-arch*) exec echo '<fn=5><fc=#1785bd></fc></fn>' ;; *Debian*) exec echo '<fn=5><fc=#c00649></fc></fn>' ;; *Ubuntu*) exec echo '<fn=5><fc=#ff8888></fc></fn>' ;; - *Linux*) exec echo '<fn=5><fc=#ffffff></fc></fn>' ;; + *Linux*) exec echo '<icon=/home/rahm/.xmonad/void.xpm/>' ;; *BSD*) exec echo '<fn=5><fc=#ff4444></fc></fn>' ;; esac |