diff options
author | JozanLeClerc <50464604+JozanLeClerc@users.noreply.github.com> | 2019-11-08 13:51:32 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-08 13:51:32 +0100 |
commit | bd68caed781dfc721eb3ce01be596e499755beb8 (patch) | |
tree | 79469c13dfd36250e35362e6020bf1b66cd58c3e | |
parent | Update README.md (diff) | |
download | dwm-bd68caed781dfc721eb3ce01be596e499755beb8.tar.gz dwm-bd68caed781dfc721eb3ce01be596e499755beb8.tar.bz2 dwm-bd68caed781dfc721eb3ce01be596e499755beb8.tar.xz dwm-bd68caed781dfc721eb3ce01be596e499755beb8.tar.zst dwm-bd68caed781dfc721eb3ce01be596e499755beb8.zip |
Update README.md
Diffstat (limited to '')
-rw-r--r-- | README.md | 19 |
1 files changed, 14 insertions, 5 deletions
@@ -61,16 +61,25 @@ Some of the main key bindings: ## Optional config You might want to change my st invocation to your terminal emulator of choice. -To do exactly this change: +To do exactly this change: ```c static const char *termcmd[] = { "st", NULL }; -``` -to: +``` +to: ```c static const char *termcmd[] = { "your-beloved-terminal-emulator", NULL }; -``` +``` +in `config.h` on **line 80**. -In `config.h` on **line 80**. +For web browsers change: +```c +static const char *qbcmd[] = { "qutebrowser", NULL }; +``` +to: +```c +static const char *qbcmd[] = { "your-favorite-web-browser", NULL }; +``` +in `config.h` on **line 81**. ## Patches |