-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.mwmrc
93 lines (84 loc) · 2.95 KB
/
.mwmrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
!!$HOME/.mwmrc
!! Root Menu Description (this menu must be explicitly posted via f.menu)
Menu DefaultRootMenu
{
"Root Menu" f.title
"Terminal" f.exec "urxvt -ls -g 120x40 &"
"VI Improved" f.exec "gvim -geometry 120x40 &"
"Eclipse" f.exec "eclipse &"
"Firefox" f.exec "firefox &"
"Thunderbird" f.exec "thunderbird &"
"Media Server" f.exec "/opt/ums/ums5/UMS.sh &"
"Gimp" f.exec "gimp &"
"Inkscape" f.exec "inkscape &"
"DOSBox Emulator" f.exec "dosbox &"
"Next Background" f.exec "xli -onroot -fillscreen -border black \"`find ~/Pictures/Backgrounds | sort -R | tail -1`\""
"Shuffle Up" f.circle_up
"Shuffle Down" f.circle_down
"Refresh" f.refresh
"Pack Icons" f.pack_icons
! "Toggle Behavior..." f.set_behavior
no-label f.separator
"Restart..." f.restart
"Lock..." f.exec "slock &"
"Quit..." f.quit_mwm
}
!! Default Window Menu Description
Menu DefaultWindowMenu
{
Restore _R Alt<Key>F5 f.restore
Move _M Alt<Key>F7 f.move
Size _S Alt<Key>F8 f.resize
Minimize _n Alt<Key>F9 f.minimize
Maximize _x Alt<Key>F10 f.maximize
Lower _L Alt<Key>F3 f.lower
no-label f.separator
Close _C Alt<Key>F4 f.kill
}
!! Key Binding Description
Keys DefaultKeyBindings
{
<Key>Menu root|icon|window f.menu DefaultRootMenu
Ctrl Alt<Key>l root|icon|window f.exec "slock &"
Ctrl Alt<Key>t root|icon|window f.exec "urxvt -ls -g 120x40 &"
Shift<Key>Escape window|icon f.post_wmenu
Alt<Key>space window|icon f.post_wmenu
Alt<Key>Tab root|icon|window f.next_key
Alt Shift<Key>Tab root|icon|window f.prev_key
Alt<Key>Escape root|icon|window f.circle_down
Alt Shift<Key>Escape root|icon|window f.circle_up
! Alt Shift Ctrl<Key>exclam root|icon|window f.set_behavior
! Alt<Key>F6 window f.next_key transient
! Alt Shift<Key>F6 window f.prev_key transient
! Shift<Key>F10 icon f.post_wmenu
! Alt Shift<Key>Delete root|icon|window f.restart
}
!! Button Binding Description(s)
Buttons DefaultButtonBindings
{
<Btn1Down> icon|frame f.raise
<Btn3Down> icon|frame f.post_wmenu
<Btn3Down> root f.menu DefaultRootMenu
}
Buttons ExplicitButtonBindings
{
<Btn1Down> frame|icon f.raise
<Btn3Down> frame|icon f.post_wmenu
<Btn3Down> root f.menu DefaultRootMenu
! <Btn1Up> icon f.restore
Alt<Btn1Down> window|icon f.lower
! Alt<Btn2Down> window|icon f.resize
! Alt<Btn3Down> window|icon f.move
}
Buttons PointerButtonBindings
{
<Btn1Down> frame|icon f.raise
<Btn3Down> frame|icon f.post_wmenu
<Btn3Down> root f.menu DefaultRootMenu
<Btn1Down> window f.raise
! <Btn1Up> icon f.restore
Alt<Btn1Down> window|icon f.lower
! Alt<Btn2Down> window|icon f.resize
! Alt<Btn3Down> window|icon f.move
}
!! END OF mwm RESOURCE DESCRIPTION FILE