Compare commits

...

4 Commits

Author SHA1 Message Date
Sravan Balaji
46529b1cf3 Change menu to fuzzel 2024-09-04 10:22:26 -04:00
Sravan Balaji
1c66f4ca52 Add cliphist startup and clipboard command 2024-09-03 21:15:32 -04:00
Sravan Balaji
39c5f25405 Switch from wofi to rofi-wayland 2024-09-03 20:54:22 -04:00
Sravan Balaji
8857c9c85b Replace foot with kitty 2024-09-03 17:23:43 -04:00
2 changed files with 8 additions and 6 deletions

View File

@@ -88,12 +88,13 @@ static const char *const autostart[] = {
"/usr/bin/bash", "/home/sravan/.azotebg", NULL,
"/usr/libexec/polkit-gnome-authentication-agent-1", NULL,
"/usr/bin/kdeconnectd", "--replace", NULL,
"/usr/bin/foot", "-s", NULL,
"/usr/bin/bash", "/home/sravan/.scripts/dunst.sh", "--on", NULL,
"/usr/bin/nextcloud", NULL,
"/usr/bin/syncthing-gtk", NULL,
"/usr/bin/openrgb", NULL,
"/usr/bin/udiskie", "-a", "-n", "-s", NULL,
"wl-paste", "--type", "text", "--watch", "cliphist", "store", NULL,
"wl-paste", "--type", "image", "--watch", "cliphist", "store", NULL,
NULL /* terminate */
};
#+END_SRC
@@ -219,8 +220,8 @@ static const enum libinput_config_tap_button_map button_map = LIBINPUT_CONFIG_TA
** Commands
#+BEGIN_SRC c :tangle config.h
static const char *termcmd[] = { "footclient", NULL };
static const char *menucmd[] = { "wofi", "--show", "drun", NULL };
static const char *termcmd[] = { "kitty", NULL };
static const char *menucmd[] = { "fuzzel", NULL };
static const Key keys[] = {
/* Note that Shift changes certain key codes: c -> C, 2 -> at, etc. */

View File

@@ -23,12 +23,13 @@ static const char *const autostart[] = {
"/usr/bin/bash", "/home/sravan/.azotebg", NULL,
"/usr/libexec/polkit-gnome-authentication-agent-1", NULL,
"/usr/bin/kdeconnectd", "--replace", NULL,
"/usr/bin/foot", "-s", NULL,
"/usr/bin/bash", "/home/sravan/.scripts/dunst.sh", "--on", NULL,
"/usr/bin/nextcloud", NULL,
"/usr/bin/syncthing-gtk", NULL,
"/usr/bin/openrgb", NULL,
"/usr/bin/udiskie", "-a", "-n", "-s", NULL,
"wl-paste", "--type", "text", "--watch", "cliphist", "store", NULL,
"wl-paste", "--type", "image", "--watch", "cliphist", "store", NULL,
NULL /* terminate */
};
@@ -126,8 +127,8 @@ static const enum libinput_config_tap_button_map button_map = LIBINPUT_CONFIG_TA
/* helper for spawning shell commands in the pre dwm-5.0 fashion */
#define SHCMD(cmd) { .v = (const char*[]){ "/bin/sh", "-c", cmd, NULL } }
static const char *termcmd[] = { "footclient", NULL };
static const char *menucmd[] = { "wofi", "--show", "drun", NULL };
static const char *termcmd[] = { "kitty", NULL };
static const char *menucmd[] = { "fuzzel", NULL };
static const Key keys[] = {
/* Note that Shift changes certain key codes: c -> C, 2 -> at, etc. */