aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2019-11-19 00:28:45 +0100
committerJozanLeClerc <bousset.rudy@gmail.com>2019-11-19 00:28:45 +0100
commit5f3cf1c1acb261714a7038606dfe55bea7cff4eb (patch)
tree252a1acbda1be8efa459cbd89e07918263d1b9b0
parenttilde bug (diff)
downloaddwm-5f3cf1c1acb261714a7038606dfe55bea7cff4eb.tar.gz
dwm-5f3cf1c1acb261714a7038606dfe55bea7cff4eb.tar.bz2
dwm-5f3cf1c1acb261714a7038606dfe55bea7cff4eb.tar.xz
dwm-5f3cf1c1acb261714a7038606dfe55bea7cff4eb.tar.zst
dwm-5f3cf1c1acb261714a7038606dfe55bea7cff4eb.zip
Litteral text
-rw-r--r--README.org86
1 files changed, 43 insertions, 43 deletions
diff --git a/README.org b/README.org
index 486e7bd..f5199a3 100644
--- a/README.org
+++ b/README.org
@@ -6,16 +6,16 @@ As I am not using dwm anymore, developpement on my build might be stuck on this
** Dependencies
**** Required:
- - ~gcc~
- - ~make~
- - ~xorg~
- - ~libX11~
- - ~libXft~
+ - =gcc=
+ - =make=
+ - =xorg=
+ - =libX11=
+ - =libXft=
**** Optional:
- - ~st~ find my custom improved build [[https://github.com/JozanLeClerc/st][here]]
- - ~slock~
- - ~dmenu~
+ - =st= find my custom improved build [[https://github.com/JozanLeClerc/st][here]]
+ - =slock=
+ - =dmenu=
** Installation
To install this open a terminal and run these commands:
@@ -24,36 +24,36 @@ git clone https://github.com/JozanLeClerc/dwm-laptop.git
cd dwm-laptop
sudo make clean install
#+END_SRC
-To use it as a default WM, if you are using xinit, add this to your ~.xinitrc~:
+To use it as a default WM, if you are using xinit, add this to your =.xinitrc=:
#+BEGIN_SRC shell
exec dwm
#+END_SRC
-I am not shure about how to set it up on regular desktop managers like ~gdm~ or ~lightdm~.
+I am not shure about how to set it up on regular desktop managers like =gdm= or =lightdm=.
** Bindings
*Window* or *tile* is being called *stack* in this segment as it an apropriate name.
Some of the main key bindings:
-- *switch* to workspace 1-10 with ~super+{F1-F10}~
-- *show all workspaces* at once with ~super+F12~
-- *move* selected stack to workspace 1-10 with ~super+shift+{F1-F10}~
-- *fire up* ~st~ terminal with ~super+return~. See how to set it to another terminal emulator in [[#optional-config][optional config]]
-- *kill* selected stack with ~super+q~
-- *cycle through* stacks down/up with ~super+j/k~
-- *move* selected stack down/up with ~super+shift+j/k~
-- *resize* master stack to left/right with ~super+h/l~
-- *invoke* ~dmenu_run~ application launcher with ~super+p~. Get it [[https://tools.suckless.org/dmenu/][here]]
-- *invoke* ~slock~ screen locker with ~super+shift+l~. Get it [[https://tools.suckless.org/slock/][here]]
-- *invoke* ~QuteBrowser~ if installed with ~super+3~. See how to set it up to your favorite web browser in [[#optional-config][optional config]]
-- toggle *normal tiled mode* with ~super+s~
-- toggle *alternative tiled mode* with ~super+shift+s~
-- toggle *maximized mode* (monocle) on selected stack with ~super+f~
-- toggle *floating mode* on selected stack with ~super+space~
-- toggle *top bar* with ~super+escape~. Hidden by default
-- *exit* dwm with ~super+shift+e~
+- *switch* to workspace 1-10 with =super+{F1-F10}=
+- *show all workspaces* at once with =super+F12=
+- *move* selected stack to workspace 1-10 with =super+shift+{F1-F10}=
+- *fire up* =st= terminal with =super+return=. See how to set it to another terminal emulator in [[#optional-config][optional config]]
+- *kill* selected stack with =super+q=
+- *cycle through* stacks down/up with =super+j/k=
+- *move* selected stack down/up with =super+shift+j/k=
+- *resize* master stack to left/right with =super+h/l=
+- *invoke* =dmenu_run= application launcher with =super+p=. Get it [[https://tools.suckless.org/dmenu/][here]]
+- *invoke* =slock= screen locker with ~super+shift+l~. Get it [[https://tools.suckless.org/slock/][here]]
+- *invoke* =QuteBrowser= if installed with =super+3=. See how to set it up to your favorite web browser in [[#optional-config][optional config]]
+- toggle *normal tiled mode* with =super+s=
+- toggle *alternative tiled mode* with =super+shift+s=
+- toggle *maximized mode* (monocle) on selected stack with =super+f=
+- toggle *floating mode* on selected stack with =super+space=
+- toggle *top bar* with =super+escape=. Hidden by default
+- *exit* dwm with =super+shift+e=
** Optional config
-You might want to change my ~st~ invocation to your terminal emulator of choice.
+You might want to change my =st= invocation to your terminal emulator of choice.
To do exactly this change:
#+BEGIN_SRC c
static const char *termcmd[] = { "st", NULL };
@@ -62,7 +62,7 @@ to:
#+BEGIN_SRC c
static const char *termcmd[] = { "your-beloved-terminal-emulator", NULL };
#+END_SRC
-in ~config.h~ on *line 80*.
+in =config.h= on *line 80*.
To change web browser:
#+BEGIN_SRC c
@@ -72,23 +72,23 @@ to:
#+BEGIN_SRC c
static const char *qbcmd[] = { "your-favorite-web-browser", NULL };
#+END_SRC
-in ~config.h~ on *line 81*.
+in =config.h= on *line 81*.
** Patches
List of patches in use:
-- ~singularborders~
-- ~alwaysfullscreen~
-- ~autostart~
-- ~bottmstack~
-- ~fakefullscreen~
-- ~fibonacci~
-- ~focusurgent~
-- ~movestack~
-- ~noborder~
-- ~pertag~
-- ~systray~
+- =singularborders=
+- =alwaysfullscreen=
+- =autostart=
+- =bottmstack=
+- =fakefullscreen=
+- =fibonacci=
+- =focusurgent=
+- =movestack=
+- =noborder=
+- =pertag=
+- =systray=
** More
-Thanks for checking my custom ~dwm~ build.
+Thanks for checking my custom =dwm= build.
-My own autostart script can be found under my [[https://github.com/JozanLeClerc/dotfiles][dotfiles]] repository. It should be placed in ~\ ~/.dwm~ directory.
+My own autostart script can be found under my [[https://github.com/JozanLeClerc/dotfiles][dotfiles]] repository. It should be placed in =~/.dwm= directory.