Blame


1 f7481580 2022-02-21 op # calm window manager
2 f7481580 2022-02-21 op
3 f7481580 2022-02-21 op The calm window manager, cwm for short, is my favourite window manager.
4 f7481580 2022-02-21 op It's *the* window manager that convinced me that using a floating window
5 f7481580 2022-02-21 op manager was actually worth it.
6 f7481580 2022-02-21 op
7 f7481580 2022-02-21 op My configuration is unusually long.
8 f7481580 2022-02-21 op
9 f7481580 2022-02-21 op First I have a list of applications for the built-in menu:
10 f7481580 2022-02-21 op
11 f7481580 2022-02-21 op command emacsclient "emacsclient -c"
12 f7481580 2022-02-21 op command firefox firefox
13 f7481580 2022-02-21 op command gimp gimp
14 f7481580 2022-02-21 op command godot godot
15 f7481580 2022-02-21 op command inkscape inkscape
16 f7481580 2022-02-21 op command iridium iridium
17 f7481580 2022-02-21 op command keepassxc keepassxc
18 f7481580 2022-02-21 op command lock xlock
19 f7481580 2022-02-21 op command term xterm
20 f7481580 2022-02-21 op command xterm.jp xterm.jp
21 f7481580 2022-02-21 op
22 9742dc33 2022-03-02 op I found these color by random I guess, but they're fine
23 f7481580 2022-02-21 op
24 f7481580 2022-02-21 op color activeborder "#0abeff"
25 f7481580 2022-02-21 op color inactiveborder "#777"
26 f7481580 2022-02-21 op
27 f7481580 2022-02-21 op set a decently-sized border around every window
28 f7481580 2022-02-21 op
29 f7481580 2022-02-21 op borderwidth 2
30 f7481580 2022-02-21 op
31 0ae8e78f 2022-11-23 op I've started to use cwm without "sticky" tags. Enabling the sticky mode
32 0ae8e78f 2022-11-23 op makes cwm behave like other windows managers with "tags" (or
33 0ae8e78f 2022-11-23 op "workspaces".) Without sticky tags, you can decide with more granularly
34 0ae8e78f 2022-11-23 op which window to show and which not.
35 f7481580 2022-02-21 op
36 0ae8e78f 2022-11-23 op # sticky yes
37 f7481580 2022-02-21 op
38 f7481580 2022-02-21 op I also prefer to "snap" windows close to the edges
39 f7481580 2022-02-21 op
40 f7481580 2022-02-21 op snapdist 5
41 f7481580 2022-02-21 op
42 f7481580 2022-02-21 op I don't want to give focus to some applications via alt-tab
43 f7481580 2022-02-21 op
44 f7481580 2022-02-21 op ignore sshmenu
45 f7481580 2022-02-21 op ignore stalonetray
46 f7481580 2022-02-21 op ignore stats
47 f7481580 2022-02-21 op ignore termbar
48 f7481580 2022-02-21 op ignore xclock
49 f7481580 2022-02-21 op ignore xconsole
50 f7481580 2022-02-21 op ignore Catclock
51 f7481580 2022-02-21 op ignore "Speedbar 1.0"
52 f7481580 2022-02-21 op
53 f7481580 2022-02-21 op autogroup does what it seems: it automatically moves some windows in a
54 f7481580 2022-02-21 op specific group (aka workspace.) The group 0 is sticky across all groups
55 f7481580 2022-02-21 op
56 f7481580 2022-02-21 op autogroup 0 XClock
57 f7481580 2022-02-21 op autogroup 0 Catclock
58 f7481580 2022-02-21 op autogroup 0 XConsole
59 f7481580 2022-02-21 op autogroup 0 sshmenu,Xmessage
60 f7481580 2022-02-21 op autogroup 0 stalonetray
61 f7481580 2022-02-21 op autogroup 0 stats
62 f7481580 2022-02-21 op autogroup 0 termbar
63 f7481580 2022-02-21 op autogroup 2 Firefox
64 f7481580 2022-02-21 op autogroup 3 Gajim
65 f7481580 2022-02-21 op autogroup 3 TelegramDesktop
66 f7481580 2022-02-21 op
67 f7481580 2022-02-21 op Most cwm keybindings use `alt' which conflicts with emacs. So I unbind
68 f7481580 2022-02-21 op everything and re-bind most of the keys on the mod4 (super) key
69 f7481580 2022-02-21 op
70 f7481580 2022-02-21 op unbind-key all
71 f7481580 2022-02-21 op
72 f7481580 2022-02-21 op bind-key 4-Tab group-last
73 f7481580 2022-02-21 op bind-mouse C-3 menu-exec-wm
74 f7481580 2022-02-21 op bind-key C4-slash menu-window
75 f7481580 2022-02-21 op
76 f7481580 2022-02-21 op control the playback
77 f7481580 2022-02-21 op
78 f7481580 2022-02-21 op bind-key XF86AudioPrev "amused prev"
79 f7481580 2022-02-21 op bind-key XF86AudioNext "amused next"
80 f7481580 2022-02-21 op bind-key XF86AudioPlay "amused toggle"
81 6ae067c1 2022-03-02 op bind-key XF86AudioStop "amused stop"
82 f7481580 2022-02-21 op
83 616e27e6 2022-07-29 op "gamemode" swiches the keyboard from my custom dvp-eu to an us querty
84 616e27e6 2022-07-29 op and vice-versa, and the mouse buttons too. it's useful when playing
85 616e27e6 2022-07-29 op some games, hence the name, or when in need to share the keyboard with
86 616e27e6 2022-07-29 op someone else.
87 616e27e6 2022-07-29 op
88 616e27e6 2022-07-29 op bind-key 4-F5 "gamemode"
89 616e27e6 2022-07-29 op
90 f7481580 2022-02-21 op I don't have a dedicated key for screenshot on this machine, but
91 f7481580 2022-02-21 op Scroll_Lock is not too awkward to press
92 f7481580 2022-02-21 op
93 468b1dd4 2022-03-02 op bind-key 4-Scroll_Lock "sshot -c"
94 468b1dd4 2022-03-02 op bind-key 4S-Scroll_Lock "sshot -cs"
95 f7481580 2022-02-21 op
96 f7481580 2022-02-21 op manage the notifications
97 f7481580 2022-02-21 op
98 6d6d5962 2023-02-16 op bind-key 4-space "pkill -SIGUSR1 xnotify"
99 f7481580 2022-02-21 op
100 f7481580 2022-02-21 op basics window movements
101 f7481580 2022-02-21 op
102 f7481580 2022-02-21 op bind-key 4-h window-move-left
103 f7481580 2022-02-21 op bind-key 4-j window-move-down
104 f7481580 2022-02-21 op bind-key 4-k window-move-up
105 f7481580 2022-02-21 op bind-key 4-l window-move-right
106 f7481580 2022-02-21 op
107 f7481580 2022-02-21 op bind-key S4-h window-move-left-big
108 f7481580 2022-02-21 op bind-key S4-j window-move-down-big
109 f7481580 2022-02-21 op bind-key S4-k window-move-up-big
110 f7481580 2022-02-21 op bind-key S4-l window-move-right-big
111 f7481580 2022-02-21 op
112 f7481580 2022-02-21 op bind-key C4-h window-resize-left
113 f7481580 2022-02-21 op bind-key C4-j window-resize-down
114 f7481580 2022-02-21 op bind-key C4-k window-resize-up
115 f7481580 2022-02-21 op bind-key C4-l window-resize-right
116 f7481580 2022-02-21 op
117 f7481580 2022-02-21 op bind-key CS4-h window-resize-left-big
118 f7481580 2022-02-21 op bind-key CS4-j window-resize-down-big
119 f7481580 2022-02-21 op bind-key CS4-k window-resize-up-big
120 f7481580 2022-02-21 op bind-key CS4-l window-resize-right-big
121 f7481580 2022-02-21 op
122 f7481580 2022-02-21 op bind-key 4-greater window-raise
123 f7481580 2022-02-21 op bind-key 4-less window-lower
124 f7481580 2022-02-21 op
125 f7481580 2022-02-21 op bind-key 4-Return window-hide
126 f7481580 2022-02-21 op bind-key C4-x window-close
127 f7481580 2022-02-21 op bind-key C4-c window-close
128 f7481580 2022-02-21 op
129 f7481580 2022-02-21 op bind-key 4-slash menu
130 f7481580 2022-02-21 op
131 f7481580 2022-02-21 op bind-key CM-Return xterm # kitty
132 f7481580 2022-02-21 op bind-key C4-Return "emacsclient -c"
133 f7481580 2022-02-21 op bind-key CS4-Return "env SHELL=rc 9term"
134 f7481580 2022-02-21 op
135 f7481580 2022-02-21 op bind-key M-Tab window-cycle
136 f7481580 2022-02-21 op bind-key MS-Tab window-rcycle
137 f7481580 2022-02-21 op
138 f7481580 2022-02-21 op bind-key 4-f window-maximize
139 f7481580 2022-02-21 op bind-key C4S-v window-vmaximize
140 f7481580 2022-02-21 op bind-key C4S-w window-hmaximize
141 f7481580 2022-02-21 op
142 f7481580 2022-02-21 op htile 0
143 f7481580 2022-02-21 op vtile 0
144 f7481580 2022-02-21 op bind-key 4-w window-htile
145 f7481580 2022-02-21 op bind-key 4-v window-vtile
146 f7481580 2022-02-21 op
147 f7481580 2022-02-21 op bind-key C4S-q quit
148 f7481580 2022-02-21 op
149 f7481580 2022-02-21 op I'm using a custom keyboard layout based on the dvorak-programmer.
150 f7481580 2022-02-21 op Thus, the upper row is not numbers, but symbols!
151 f7481580 2022-02-21 op
152 f7481580 2022-02-21 op # & { [ ( = + ) ] }
153 0ae8e78f 2022-11-23 op bind-key 4-ampersand group-toggle-1
154 0ae8e78f 2022-11-23 op bind-key 4-braceleft group-toggle-2
155 0ae8e78f 2022-11-23 op bind-key 4-bracketleft group-toggle-3
156 0ae8e78f 2022-11-23 op bind-key 4-parenleft group-toggle-4
157 0ae8e78f 2022-11-23 op bind-key 4-equal group-toggle-5
158 0ae8e78f 2022-11-23 op bind-key 4-plus group-toggle-6
159 0ae8e78f 2022-11-23 op bind-key 4-parenright group-toggle-7
160 0ae8e78f 2022-11-23 op bind-key 4-bracketright group-toggle-8
161 0ae8e78f 2022-11-23 op bind-key 4-braceright group-toggle-9
162 f7481580 2022-02-21 op
163 f7481580 2022-02-21 op move with shift
164 f7481580 2022-02-21 op
165 f7481580 2022-02-21 op bind-key S4-ampersand window-movetogroup-1
166 f7481580 2022-02-21 op bind-key S4-braceleft window-movetogroup-2
167 f7481580 2022-02-21 op bind-key S4-bracketleft window-movetogroup-3
168 f7481580 2022-02-21 op bind-key S4-parenleft window-movetogroup-4
169 f7481580 2022-02-21 op bind-key S4-equal window-movetogroup-5
170 f7481580 2022-02-21 op bind-key S4-plus window-movetogroup-6
171 f7481580 2022-02-21 op bind-key S4-parenright window-movetogroup-7
172 f7481580 2022-02-21 op bind-key S4-bracketright window-movetogroup-8
173 f7481580 2022-02-21 op bind-key S4-braceright window-movetogroup-9
174 f7481580 2022-02-21 op bind-key S4-exclam window-movetogroup-0
175 f7481580 2022-02-21 op
176 f7481580 2022-02-21 op mouse bindings
177 f7481580 2022-02-21 op
178 f7481580 2022-02-21 op bind-mouse 4-1 window-move
179 f7481580 2022-02-21 op bind-mouse 4-3 window-resize