birdwm

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit b1c6936c7ceff28904980c9a6cf50ff66da831a9
parent bf33c4925cc1881b3297a88461cad046254d7957
Author: grouse <bdmfegys@duck.com>
Date:   Sat, 24 Feb 2024 14:05:22 -0500

change browser to suckless' surf

Diffstat:
Mconfig.def.h | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/config.def.h b/config.def.h @@ -82,7 +82,7 @@ static const Rule rules[] = { /* end of scratchpad floating rules */ { "widget", NULL, NULL, 0, 1, -1 }, /* used sometimes, for using sww widgets */ { "python3", NULL, NULL, 0, 1, -1 }, /* i cant remember what this is tbh */ - { NULL, "Toolkit", NULL, 0, 1, -1 }, /* firefox floating media player floating rule */ + { NULL, "Toolkit", NULL, 0, 1, -1 }, /* browser floating media player floating rule */ { "steam","steamwebhelper",NULL, 0, 1, -1 }, /* just to make the steam menus float */ /* all rules below this start on the second monitor */ @@ -128,7 +128,7 @@ static const char *termcmd[] = { "birdterm", 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 *browser[] = { "surf" }; /* 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}; @@ -143,7 +143,7 @@ static const Key keys[] = { { MODKEY, XK_w, spawn, {.v = wallpaper } }, { MODKEY, XK_g, spawn, {.v = wallpapergif } }, { MODKEY|ShiftMask, XK_j, spawn, {.v = restarter } }, - { MODKEY, XK_f, spawn, {.v = firefox } }, + { MODKEY, XK_f, spawn, {.v = browser } }, { 0, XF86XK_AudioRaiseVolume, spawn, {.v = volup} }, { 0, XF86XK_AudioLowerVolume, spawn, {.v = voldown} }, { 0, XF86XK_AudioMute, spawn, {.v = volmute} },