commit 783e0f9b645133f4ebd9b66f9de13632760b2c82
parent 37b5704e93ac67ad69408a3535138ea4a4460b81
Author: grouse <bdmfegys@duck.com>
Date: Sat, 3 Feb 2024 21:15:26 -0500
change commands in config.def.h back to pointers, and disable bar transparency
Diffstat:
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/config.def.h b/config.def.h
@@ -14,7 +14,7 @@ static const int systraypinningfailfirst = 1; /* 1: if pinning fails, display
static const int showsystray = 1; /* 0 means no systray */
static const char *fonts[] = { "Inconsolata-ExpandedBold:pixelsize=22" };
static const char dmenufont[] = "Inconsolata-ExpandedBold:pixelsize=22";
-static const unsigned int baralpha = 0x70;
+static const unsigned int baralpha = 0xff;
static const unsigned int borderalpha = OPAQUE;
static char normbgcolor[] = "#222222";
static char normbordercolor[] = "#444444";
@@ -114,10 +114,10 @@ static const char *dmenucmd[] = { "dmenu_run", "-i", NULL };
static const char *termcmd[] = { "birdterm", NULL };
/*static const char *wallpaper[] = { "nsxiv", "-t", "/home/tetraonini/Pictures/wallpapers/\*.png", NULL }; */
/*static const char *wallpapergif[] = { "nsxiv", "-t", "/home/tetraonini/Pictures/wallpapers/gif/\*.gif", NULL }; */
-static const char wallpaper[] = "xwallpaper"; /* calling wallpaper picker script, utilizes nsxiv */
-static const char wallpapergif[] = "xwallpapergif"; /* calling gif wallpaper picker script, utilizes nsxiv */
-static const char restarter[] = "restarter"; /* dmenu script for restarting daemons and getting system info through dunst */
-static const char firefox[] = "net.mullvad.MullvadBrowser"; /* browser shortcut */
+static const char *wallpaper[] = { "xwallpaper" }; /* calling wallpaper picker script, utilizes nsxiv */
+static const char *wallpapergif[] = { "xwallpapergif" }; /* calling gif wallpaper picker script, utilizes nsxiv */
+static const char *restarter[] = { "restarter" }; /* dmenu script for restarting daemons and getting system info through dunst */
+static const char *firefox[] = { "net.mullvad.MullvadBrowser" }; /* browser shortcut */
/* pulseaudio script for setting volume, called by XF86 keys */
static const char *volup[] = { "volume.sh", "up", NULL};
static const char *voldown[] = { "volume.sh", "down", NULL};