hellwal support
This commit is contained in:
parent
fa874b6f97
commit
24ad12f106
1 changed files with 7 additions and 3 deletions
10
config.h
10
config.h
|
@ -1,4 +1,9 @@
|
|||
#include "/home/amolinae/.cache/wal/colors-wal-dwl.h"
|
||||
/* Taken from https://github.com/djpohly/dwl/issues/466 */
|
||||
#define COLOR(hex) { ((hex >> 24) & 0xFF) / 255.0f, \
|
||||
((hex >> 16) & 0xFF) / 255.0f, \
|
||||
((hex >> 8) & 0xFF) / 255.0f, \
|
||||
(hex & 0xFF) / 255.0f }
|
||||
#include "/home/amolinae/.cache/hellwal/dwl-colors-bar.h"
|
||||
|
||||
/* appearance */
|
||||
static const int sloppyfocus = 1; /* focus follows mouse */
|
||||
|
@ -44,7 +49,6 @@ static const Env envs[] = {
|
|||
|
||||
/* Autostart */
|
||||
static const char *const autostart[] = {
|
||||
"touch", "/tmp/swaylock-sleep", "&&", "inotifyd", "swaylock", "/tmp/swaylock-sleep", NULL,
|
||||
"/usr/libexec/xdg-desktop-portal", "-r", NULL,
|
||||
"/usr/libexec/xdg-desktop-portal-wlr", "-r", NULL,
|
||||
"wbg", WALLPAPER, NULL,
|
||||
|
@ -181,7 +185,7 @@ static const char *menucmd[] = { "fuzzel", NULL }; // Application launcher
|
|||
static const char *fmgrcmd[] = { "footclient", "--title", "lf", "lf", NULL }; // File manager
|
||||
static const char *sptfcmd[] = { "footclient", "--title", "Spotify", "spotify_player", NULL }; // Spotify client
|
||||
static const char *ncmxcmd[] = { "footclient", "--title", "ncpamixer", "ncpamixer", NULL }; // Volume control
|
||||
static const char *blthcmd[] = { "footclient", "--title", "bluetui", "bluetui", NULL }; // Bluetooth manager
|
||||
static const char *blthcmd[] = { "bluetooth", NULL }; // Bluetooth manager
|
||||
static const char *pdfrcmd[] = { "zathura", NULL }; // PDF reader
|
||||
static const char *brwscmd[] = { "librewolf", NULL }; // Web Browser
|
||||
static const char *lockcmd[] = { "swaylock", NULL }; // Launch swaylock
|
||||
|
|
Loading…
Add table
Reference in a new issue