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 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 | ## Environmental variables
# Preferred applications
SetEnv fvwm_browser firefox
SetEnv fvwm_terminal urxvt
SetEnv fvwm_editor "urxvt -e vim"
SetEnv fvwm_mail "urxvt -e mutt"
SetEnv fvwm_chat "rxvt -e irssi"
SetEnv fvwm_player "urxvt -e cmus"
SetEnv fvwm_filemanager pcmanfm
SetEnv fvwm_image_viewer feh
SetEnv fvwm_runner gmrun
## General settings
# Ignore CapsLock and NumLock modifiers
IgnoreModifiers 2L
# Resize and move windows instead of
# borders
#OpaqueMoveSize unlimited
#Style * ResizeOpaque
# Indexed window names to make sure
# each window name is unique
Style * IndexedWindowName
# Hides the position and resize dialog
HideGeometryWindow
## Virtual Desktops
# Number of desktops and default
DesktopSize 3x1
Desktop 0 Main
DesktopName 0 /dev/ws1
# Desktop edge thickness and resistance
# for switching easily with mouse
Style EdgeScroll 100 100
Style EdgeResistance 400 400
Style EdgeThickness 1
## Auto started applications
# This configuration uses some fvwm modules
# they are also started here
DestroyFunc StartFunction
AddToFunc StartFunction
# FvwmCommandS is used to issue fvwm commands
+ I Module FvwmCommandS
# FvwmAnimate handles some simple animation
+ I Module FvwmAnimate
# FvwmButtons is a powerful tool for creating
# launchers, buttons, switches and such
+ I Module FvwmButtons
# FvwmBacker is used for desktop backgrounds
+ I Module FvwmBacker
# FvwmPerl is used for parsing perl
+ I Module FvwmPerl
# Some start progs
+ I Exec urxvt
+ I Exec compton
+ I Exec ~/.fehbg
## Functions
# Toggle 'always on top' using TestRc
DestroyFunc WinOnTop
AddToFunc WinOnTop
+ I ThisWindow (Layer 6) Layer
+ I TestRc (NoMatch) Layer 0 6
# Widescreen formatting
DestroyFunc ReadableWidth
AddToFunc ReadableWidth
+ I Maximize 60
+ I Move 50-50w 50-50w
# Autoshade functions set mimics
# kwin autoshade feature
DestroyFunc ToggleAutoshaded
AddToFunc ToggleAutoshaded
+ I State 0
DestroyFunc AutoShade
AddToFunc AutoShade
+ I ThisWindow (State 0) WindowShade True
DestroyFunc AutoUnshade
AddToFunc AutoUnshade
+ I ThisWindow (State 0) WindowShade False
# This module call actually belongs to startup
# function, but I left it here for readability
Module FvwmAuto 0 -menter "Silent AutoUnshade" "Silent AutoShade"
# This is a smart launcher to launch an
# an application if it is not running.
# Also it raises the application if it's
# running and switches between given
# applications/windows if you have two or
# more of them.
DestroyFunc LaunchRaiseSwitch
AddToFunc LaunchRaiseSwitch
+ I None (*$0*) Exec exec $1
+ I Next (*$0*) Focus
+ I Next (*$0*) Iconify False
Module FvwmAuto 0 -mfocus "Silent Raise"
# A mixture of previous two examples would
# let you group windows so that you can
# switch between them with a hotkey.
# Adding a window to a group by chanding
# it's state
DestroyFunc AddToGroup
AddToFunc AddToGroup
+ I ThisWindow State $0
# And switching between groups amd inside them:
DestroyFunc GroupSwitch
AddToFunc GroupSwitch
+ I Next (State $0) Focus
# Undecorate given window
DestroyFunc UnDecorate
AddToFunc UnDecorate
+ I WindowStyle !Title, !Borders, !Handles
# And decorate it again
DestroyFunc Decorate
AddToFunc Decorate
+ I WindowStyle Borders, Handles
# File browser menu using $[fvwm_filemanager]
AddToFunc FuncFvwmMenuDirectory
+ I PipeRead \
"fvwm-menu-directory -d '$0' \
-command-t 'Exec exec $[fvwm_filemanager] "%d"' \
-command-f 'Exec exec $[fvwm_filemanager] "%f"'"
# Function for titlebar push focus
# and window menu
DestroyFunc TitleFunction
AddToFunc TitleFunction
+ C Focus
+ D Lower
+ M Move
# Undecorate window and maximize it
DestroyFunc UndecMax
AddToFunc UndecMax
+ I ThisWindow UnDecorate
+ I Schedule 100 Maximize 100 100
# Autoshading a window and putting
# it to top layer
DestroyFunc AutoShadeAndOnTop
AddToFunc AutoShadeAndOnTop
+ I ToggleAutoShade
+ I WinOnTop
## Focus policy
# Similar to that of openbox
Style * MouseFocus
## Input device bindings
# Cheatsheat
#
# Contexts:
#
# R - Root window
# I - Iconified window
# F - window decoration corner
# S - window decoration side
# T - window decoration title
# W - active window
# 0-9 - titlebar buttons
# M - Menu
# A - any context
#
# You can combine contexts: FWST etc.
#
# Modifiers:
# ctrl - C
# super - 4
# alt - 1
# shift - S
# caps - L
# num - 2
#
# You can combine modifiers: 1S, 4S, etc.
# Switch desktops with arrow keys
Key Left A C1 Scroll -100 0
Key Right A C1 Scroll +100 +0
Key Up A C1 Scroll +0 -100
Key Down A C1 Scroll +0 +100
#Alt Tab
SetEnv DIR Next
AddToFunc FocusRaiseAndStuff
+ I Iconify off
+ I Focus
+ I Raise
+ I WarpToWindow !raise 5 5
AddToFunc SwitchWindow
+ I $[DIR] (CurrentPage, !Iconic, !Sticky) FocusRaiseAndStuff
+ I Deschedule 134000
+ I PipeRead `[ "$[DIR]" == "Prev" ] && \
echo 'SetEnv NDIR Next' || \
echo 'SetEnv NDIR Prev'`
+ I Schedule 700 134000 SetEnv DIR $[NDIR]
Key Tab A M SwitchWindow
# Launch apps/menu & restart/quit
Key Return A C1 Exec exec $[fvwm_terminal]
Key Return A 1 Exec exec dmenu_run
Key r A C1 Restart
Key q A C1 Quit
# Mouse bindings
Mouse 3 R A Menu MainMenu
Mouse 1 R A WindowList Root NoGeometry
Mouse 1 T A TitleFunction
Mouse 1 A 1 Move
Mouse 3 A 1 Resize
Mouse 1 W M Move
## Menus
# Main menu
read fvwm2-menu
AddToMenu MainMenu "Menu" Title
+ "&0. >" Popup xdg_menu
# Window menu
DestroyMenu WindowMenu
AddToMenu WindowMenu
+ "On &Top" WinOnTop
+ "Audo&shade" ToggleAutoShaded
+ "Undecorate and &Maximize" UndecMax
+ "Autoshade and &On Top" AutoShadeAndOnTop
+ "S&tick" Stick
+ "" Nop
+ "Force close" Destroy
## Decorations
# Fonts
MenuStyle "*" Font "-windows-montecarlo-medium-*-normal-*-11-110-72-72-c-60-microsoft-cp1252"
# Cheatsheet:
#
# Colorsets:
#
# 0 = Default colors
# 1 = Inactive windows
# 2 = Active windows
# 3 = Inactive menu entry and menu background
# 4 = Active menu entry
# 5 = greyed out menu entry (only bg used)
# 6 = module foreground and background
# 7 = hilight colors
# Colorsets
# Window Decor CS
Colorset 4 fg #111111, bg #111111
Colorset 5 fg #111111, bg #414141, sh #111111, hi #111111
Colorset 10 fg #B5E15D, bg #111111, sh #555555, hi #555555
Colorset 11 fg #D2B48C, bg #111111, sh #D2B48C, hi #D2B48C
# Menu CS
Colorset 7 fg #C7C7C7, bg #303030, sh #414141, hi #414141
Colorset 8 fg #FFFFB9, bg #eb928e, sh #eb928e, hi #151515
# Menu
MenuStyle * MenuColorset 7
MenuStyle * ActiveColorset 8
# 3D
MenuStyle * SeparatorsLong, TrianglesRelief
MenuStyle * BorderWidth 7
MenuStyle * ActiveFore, Hilight3DOff,
# Popup settings
MenuStyle * PopupAsSubmenu, HoldSubmenus, SubmenusRight
MenuStyle "*" PopupOffset 2 100
# De-iconify an iconified window
Mouse 1 I N Iconify
# Misc. Styles
Style FvwmConsole !Handles, !Icon, WindowListSkip
Style gmrun !Title
Style fvwm-logout
#====================================
#---- Windows
#====================================
# # General settings
TitleStyle Height 19
Style * TitleAtTop
TitleStyle Colorset 11 -- Flat
# Titlebar colorsets
Style "*" HilightColorset 11
Style "*" Colorset 10
ButtonStyle All -- UseTitleStyle
ButtonStyle All Active -- Flat
ButtonStyle All Inactive -- Flat
AddButtonStyle 1 Vector 4 \
60x20@0 60x40@0 80x40@1 80x60@0 60x60@0 60x80@0 40x80@0 40x60@1 20x60@0 20x40@1 40x40@1 40x20@1 60x20@1
AddButtonStyle 2 Vector 5 \
50x45@3 55x40@3 60x45@3 \
55x50@4 55x65@3
AddButtonStyle 4 Vector 4 \
50x50@3 60x60@3 60x50@4 50x60@3
AddButtonStyle 6 Vector 5 \
50x60@3 55x65@3 60x60@3 \
55x55@4 55x40@3
+ TitleStyle -- Flat
+ BorderStyle Simple -- NoInset Flat
+ ButtonStyle All -- UseTitleStyle
# Titlebar Functions
Mouse 1 2 N Maximize 100 100
Mouse 1 4 N Delete
Mouse 1 6 N Iconify
Mouse 1 1 A Menu WindowMenu
BorderStyle Active Colorset 10 -- flat
BorderStyle Inactive Colorset 10 -- flat
Style "*" UseDecor MyDecor
Style "*" Font "xft:montecarlo"
Style "*" BorderWidth 2, HandleWidth 2
Style "cli-clock" !Borders, Sticky
Style "acme" !Title
Style "/usr/local/bin/cli-clock" !Borders, Sticky
Style "clock" !Borders, Sticky
Style "FvwmButtons" Sticky, !Title
Style "*" TitleFormat
###Bootys
#&
###Buttons
*FvwmButtonsGeometry 225x98-8-8
*FvwmButtonsBack #111111
*FvwmButtons(Frame 0 Padding 2 2 Container(Rows 2 Columns 2 Frame 0 \
Padding 10 0))
*FvwmButtons(1x2 Frame 0 Swallow(UseOld) "FvwmPager" "Module FvwmPager 0 0 ")
*FvwmPager: Font "-*-montecarlo-medium-*-*-*-11-*-*-*-*-*-*-*"
*FvwmPager: Back "#111111"
*FvwmPager: Fore "#94C7B5"
*FvwmPager: Hilight "#111111"
*FvwmPager: WindowColors fore "#404040" back "#94C7B5" hiFore "#111111" hiBack "#111111"
*FvwmPager: SolidSeparators
*FvwmPager: WindowBorderWidth 1
*FvwmButtons(1x2 Frame 0 Container(Rows 2 Columns 2 Frame 0))
*FvwmButtons(Frame 0 Swallow(UseOld,NoHints,Respawn) "xbiff" `Exec exec xbiff -bg "#111111" -fg "#9C9A94"`)
*FvwmButtons(Frame 0 Swallow(UseOld,NoHints,Respawn) "xclock" `Exec exec xclock -bg "#111111" -fg "#D2B48C" -padding 0 -update 1`)
*FvwmButtons(2x1 Frame 0 Swallow(UseOld,NoHints,Respawn) "xload" `Exec exec xload -bg "#111111" -fg "#B5E15D" -update 5 -nolabel`)
*FvwmButtons(End)
*FvwmButtons(End)
|
x
Notes
Snip (…)
UPDATED: Scrapped the old config.
Font: montecarlo
Colors: cba
Him said about 12 years ago
I like the warmth of this theme; reminds me of “Rice Boy.” Very nice.
Mafia said about 12 years ago
Thanks, I love it too. The wallpaper warms it up alot.
katsh said about 12 years ago
term colors please
edited about 12 years ago
Mafia said about 12 years ago
I have posted them, you can find them here -> http://dotshare.it/dots/448/