dwm

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

commit def4d229991db376a2e05f11860bfbfc0bc3ff26
parent 2415c00a811da295d37d198677e7faaaf0ffcb62
Author: AndrewLockVI <andrew@laack.co>
Date:   Thu, 27 Feb 2025 07:13:16 -0600

Added chromum, emacs, removed emacs, bindings

Diffstat:
Mconfig.h | 18++++++++++++++++--
1 file changed, 16 insertions(+), 2 deletions(-)

diff --git a/config.h b/config.h @@ -87,13 +87,15 @@ static const char *dmenucmd[] = {"/home/andrew/bin/dmenu.sh", background, foregr static const char *endcmd[] = {"/home/andrew/bin/power.sh", background, foreground, highlight, NULL}; static const char *passcmd[] = {"/home/andrew/bin/pass.sh", background, foreground, highlight, NULL}; static const char *tmuxcmd[] = {"/home/andrew/bin/tmux.sh", background, foreground, highlight, NULL}; +//static const char *emacscmd[] = {"/home/andrew/bin/emacs.sh" , NULL }; + //static const char *attachcmd[] = {"/home/andrew/bin/attach.sh", background, foreground, highlight, NULL}; //static const char *tabbedcmd[] = {"/home/andrew/bin/tabbed.sh", background, foreground, highlight, NULL}; //static const char *abducocmd[] = {"/home/andrew/bin/abduco.sh", background, foreground, highlight, NULL}; //static const char *searchcmd[] = {"/home/andrew/bin/search.sh", background, foreground, highlight, NULL}; static const char *zathuracmd[] = {"/home/andrew/bin/zathura.sh", background, foreground, highlight, NULL}; static const char *musiccmd[] = {"/home/andrew/bin/find-music.sh", "/home/serverBackup/fileSharing/music/" , background, foreground, highlight, NULL}; -static const char *rangercmd[] = {"/home/andrew/bin/ranger.sh", "/home/" , background, foreground, highlight, NULL}; +//static const char *rangercmd[] = {"/home/andrew/bin/ranger.sh", "/home/" , background, foreground, highlight, NULL}; static const char *workspacecmd[] = {"/home/andrew/bin/init-screen.sh", NULL}; // copying bookmarks static const char *bookmarkscmd[] = {"/home/andrew/bin/bookmarks.sh", NULL}; @@ -101,6 +103,13 @@ static const char *addbookmarkcmd[] = {"/home/andrew/bin/add-bookmark.sh", NULL} static const char *openbookmarkcmd[] = {"/home/andrew/bin/open-bookmark.sh", NULL}; static const char *openlibrewolfcmd[] = {"librewolf", NULL}; +// I had to take this stupid test with honorlock so I decided to bind c-c to +// make my chromium window opaque. This will ensure the professor has to read my background +// which is a scathing review or proprietary software, and general ill sentiments towards +// honorlock. +//static const char *chromecmd[] = {"/home/andrew/bin/toggle.sh", NULL}; + + static const char *screenshotcmd[] = {"/home/andrew/bin/screenshot.sh", NULL}; static const char *playlinkcmd[] = {"/home/andrew/bin/mpv.sh", NULL}; @@ -126,7 +135,7 @@ static const Key keys[] = { { MODKEY, XK_z, spawn, {.v = zathuracmd } }, { MODKEY, XK_m, spawn, {.v = musiccmd } }, //{ MODKEY, XK_t, spawn, {.v = tabbedcmd } }, - { MODKEY, XK_r, spawn, {.v = rangercmd } }, + //{ MODKEY, XK_r, spawn, {.v = rangercmd } }, { MODKEY, XK_w, spawn, {.v = workspacecmd} }, // copy bookmark @@ -149,6 +158,11 @@ static const Key keys[] = { { MODKEY|ShiftMask, XK_l, spawn, {.v = openlibrewolfcmd } }, { MODKEY|ShiftMask, XK_p, spawn, {.v = playlinkcmd } }, { MODKEY|ShiftMask, XK_w, spawn, {.v = webbrowsercmd } }, + //{ MODKEY|ShiftMask, XK_e, spawn, {.v = emacscmd } }, + + // this shouldn't really be used seriously. + // there is a definite line number for toggling this, hacky at best. + //{ MODKEY|ShiftMask, XK_c, spawn, {.v = chromecmd} }, { MODKEY, XK_Return, spawn, {.v = termcmd } },