-
Notifications
You must be signed in to change notification settings - Fork 0
/
twmrc
97 lines (88 loc) · 3 KB
/
twmrc
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
94
95
96
97
# Author: Gustavo Yokoyama Ribeiro
# Update: 28 dec 2005
# (C) Copyright 2010 Gustavo Yokoyama Ribeiro
# Licensed under CreativeCommons Attribution-ShareAlike 3.0 Unsupported
# http://creativecommons.org/licenses/by-sa/3.0/ for more info.
#
# $XConsortium: system.twmrc,v 1.8 91/04/23 21:10:58 gildea Exp $
#
# Default twm configuration file; needs to be kept small to conserve string
# space in systems whose compilers don't handle medium-sized strings.
#
# Sites should tailor this file, providing any extra title buttons, menus, etc.
# that may be appropriate for their environment. For example, if most of the
# users were accustomed to uwm, the defaults could be set up not to decorate
# any windows and to use meta-keys.
#
NoGrabServer
RestartPreviousState
DecorateTransients
-schumacher-clean-medium-r-normal--12-120-75-75-c-60-iso8859-1
TitleFont "-schumacher-clean-medium-r-normal--12-120-75-75-c-60-iso8859-1"
ResizeFont "-schumacher-clean-medium-r-normal--12-120-75-75-c-60-iso8859-1"
MenuFont "-schumacher-clean-medium-r-normal--12-120-75-75-c-60-iso8859-1"
IconFont "-schumacher-clean-medium-r-normal--12-120-75-75-c-60-iso8859-1"
IconManagerFont "-schumacher-clean-medium-r-normal--12-120-75-75-c-60-iso8859-1"
#ClientBorderWidth
Color
{
BorderColor "paleturquoise1"
DefaultBackground "black"
DefaultForeground "paleturquoise1"
TitleBackground "paleturquoise1"
TitleForeground "black"
MenuBackground "black"
MenuForeground "paleturquoise1"
MenuTitleBackground "paleturquoise1"
MenuTitleForeground "black"
IconBackground "black"
IconForeground "paleturquoise1"
IconBorderColor "paleturquoise1"
IconManagerBackground "black"
IconManagerForeground "paleturquoise1"
}
#
# Define some useful functions for motion-based actions.
#
MoveDelta 3
Function "move-or-lower" { f.move f.deltastop f.lower }
Function "move-or-raise" { f.move f.deltastop f.raise }
Function "move-or-iconify" { f.move f.deltastop f.iconify }
#
# Set some useful bindings. Sort of uwm-ish, sort of simple-button-ish
#
Button1 = : root : f.menu "defops"
Button1 = m : window|icon : f.function "move-or-lower"
Button2 = m : window|icon : f.iconify
Button3 = m : window|icon : f.function "move-or-raise"
Button1 = : title : f.function "move-or-raise"
Button2 = : title : f.raiselower
Button1 = : icon : f.function "move-or-iconify"
Button2 = : icon : f.iconify
Button1 = : iconmgr : f.iconify
Button2 = : iconmgr : f.iconify
#
# And a menus with the usual things
#
menu "defops"
{
"Twm" f.title
"Iconify" f.iconify
"Resize" f.resize
"Move" f.move
"Raise" f.raise
"Lower" f.lower
"" f.nop
"XTerm" !"xterm &"
"" f.nop
"Focus" f.focus
"Unfocus" f.unfocus
"Show Iconmgr" f.showiconmgr
"Hide Iconmgr" f.hideiconmgr
"" f.nop
"Kill" f.destroy
"Delete" f.delete
"" f.nop
"Restart" f.restart
"Exit" f.quit
}