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 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 | ## mmmmmmmm mm mm mm mm mmm mmm
## ##"""""" "## ##" ## ## ### ###
## ## ## ## "#m ## m#" ########
## ####### ## ## ## ## ## ## ## ##
## ## #### ###""### ## "" ##
## ## #### ### ### ## ##
## "" """" """ """ "" ""
##
## ~/.fvwm/config - FVWM's main config file
## Environmental variables
# Preferred applications
SetEnv fvwm_browser firefox
SetEnv fvwm_terminal urxvt
SetEnv fvwm_editor emacs
SetEnv fvwm_mail thunderbird
SetEnv fvwm_chat "urxvt -e irssi"
SetEnv fvwm_player "urxvt -e ncmpcpp"
SetEnv fvwm_filemanager thunar
SetEnv fvwm_image_viewer viewnior
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
# Get rid of applications icons
Style * !Icon
# Hides the position and resize dialog
HideGeometryWindow
## Virtual Desktops
# Number of desktops and default
DesktopSize 2x1
Desktop 0 Main
# Desktop edge thickness and resistance
# for switching easily with mouse
Style EdgeScroll 100 100
Style EdgeResistance 400 400
Style EdgeThickness 1
## Desktop backgrounds
# Set with fvwm-root
#Desk0
*FvwmBacker: Command (Desk 0, Page 0 0) Exec fvwm-root \
$[HOME]/images/wallpaper/ringo.png
#Desk1
*FvwmBacker: Command (Desk 0, Page 1 0) Exec fvwm-root \
$[HOME]/images/wallpaper/ringo.png
## 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
# Applications
# Test (Init) Exec exec makes sure a new
# instance of an application is not launched
# every time you restart fvwm
+ I Test (Init) Exec exec mpd $HOME/.mpd/mpd.conf
+ I Test (Init) Exec exec conky
## Functions
# Toggle 'always on top' using TestRc
DestroyFunc WinOnTop
AddToFunc WinOnTop
+ I ThisWindow (Layer 6) Layer
+ I TestRc (NoMatch) Layer 0 6
# Take screenshot using scrot
DestroyFunc FvwmDesktopScreenshot
AddToFunc FvwmDesktopScreenshot
+ I Exec exec scrot '%Y-%m-%d--%s_$wx$h_scrot.png' -e 'mv $f ~/images/ & $[fvwm_image_viewer] ~/images/$f'
#And Delayed 10 seconds
DestroyFunc FvwmDesktopScreenshotDelayed
AddToFunc FvwmDesktopScreenshotDelayed
+ I Exec exec scrot -d 10 '%Y-%m-%d--%s_$wx$h_scrot.png' -e 'mv $f ~/images/ & $[fvwm_image_viewer] ~/images/$f'
# 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
# Quake-like terminal
DestroyFunc QLikeTerm
AddToFunc QLikeTerm
+ I None ($1, CurrentDesk) Exec exec $0 -name $1
+ I All ($1) ResizeMove $2p $3p $4p $5p
+ I All ($1) Stick True
+ I All ($1, CurrentDesk) Iconify
DestroyFunc QLikeLaunch
AddToFunc QLikeLaunch
+ I None ($1, CurrentDesk) Exec exec $0
+ I All ($1) ResizeMove $1p $2p $3p $4p
+ I All ($1) Stick True
+ I All ($1, CurrentDesk) Iconify
# FvwmConsole in urxvt
DestroyFunc QLikeFvwmConsole
AddToFunc QLikeFvwmConsole
+ I None (FvwmConsole, CurrentDesk) FvwmConsole -terminal urxvt
+ I All (FvwmConsole) ResizeMove $0p $1p $2p $3p
+ I All (FvwmConsole) Stick True
+ I All (FvwmConsole, CurrentDesk) Iconify
# Undecorate given window
DestroyFunc UnDecorate
AddToFunc UnDecorate
+ I WindowStyle !Title, !Borders, !Handles
# And decorate it again
DestroyFunc Decorate
AddToFunc Decorate
+ I WindowStyle Title, 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 * ClickToFocus
## 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.
# Key bindings
Key F4 W M DeleteWin
Key Tab A M WindowList Root NoGeometry
Key M A M Module FvwmConsole
Key F2 A 1 Exec exec $[fvwm_runner]
Key Space A 4 Menu MainMenu
Key t W S4 WinOnTop
Key a W S4 ToggleAutoShaded
Key d W S4 UnDecorate
Key d W 4 Decorate
Key m W 4 Maximize 100 100
Key r W 4 ReadableWidth
Key i W 4 Iconify
Key F7 W 1 Move
Key F8 W 1 Resize
Key D W 4 Decorate
#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
#Move titlebar to particular side
Key Left W S4 WindowStyle TitleAtLeft
Key Right W S4 WindowStyle TitleAtRight
Key Up W S4 WindowStyle TitleAtTop
Key Down W S4 WindowStyle TitleAtBottom
#Grouping windows and switching between
#groups and inside them
Key 1 W C4 AddToGroup 1
Key 2 W C4 AddToGroup 2
Key 3 W C4 AddToGroup 3
Key 1 A 4 GroupSwitch 1
Key 2 A 4 GroupSwitch 2
Key 3 A 4 GroupSwitch 3
#Screenshots and screencasts made easy:
Key Print A N FvwmDesktopScreenshot
Key Print A 1 FvwmDesktopScreenshotDelayed
#Smart launcher for particular applications
Key t A 4 LaunchRaiseSwitch urxvt $[fvwm_terminal]
Key f A 4 LaunchRaiseSwitch *File*Manager $[fvwm_filemanager]
Key e A 4 LaunchRaiseSwitch *gedit $[fvwm_editor]
Key w A 4 LaunchRaiseSwitch *Namoroka $[fvwm_browser]
Key p A 4 LaunchRaiseSwitch *Sonata* $[fvwm_player]
Key g A 4 LaunchRaiseSwitch *GIMP gimp
#Launch particular applications
Key t A C4 Exec exec $[fvwm_terminal]
Key f A C4 Exec exec $[fvwm_filemanager]
Key e A C4 Exec exec $[fvwm_editor]
Key w A C4 Exec exec $[fvwm_browser]
Key p A C4 Exec exec $[fvwm_player]
Key g A C4 Exec exec gimp
#Quake-like terminal and quake-like fvwm console
Key Grave A C QLikeTerm $[fvwm_terminal] quake-term 1366 768 0 0
Key Q A 4 QLikeFvwmConsole 812 360 275 408
# 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
## Menus
# Main menu
AddToMenu MainMenu MainMenu title
+ DynamicPopupAction Function MakeMainMenu
AddToFunc MakeMainMenu
+ I DestroyMenu recreate MainMenu
+ I PipeRead 'echo "AddToMenu MainMenu \'$(echo $HOSTNAME) - $(date +%H:%M)\' Exec exec $[fvwm_runner]"'
+ I AddToMenu MainMenu MissingSubmenuFunction FuncFvwmMenuDirectory
+ I AddToMenu MainMenu "" Nop
+ I AddToMenu MainMenu "Terminal" Exec exec $[fvwm_terminal]
+ I AddToMenu MainMenu "Web Browser" Exec exec $[fvwm_browser]
+ I AddToMenu MainMenu "Text Editor" Exec exec $[fvwm_editor]
+ I AddToMenu MainMenu "Email Client" Exec exec $[fvwm_mail]
+ I AddToMenu MainMenu "Chat Client" Exec exec $[fvwm_chat]
+ I AddToMenu MainMenu "Music Player" Exec exec $[fvwm_player]
+ I AddToMenu MainMenu "File Manager" Popup $[HOME]
+ I AddToMenu MainMenu "Applications" Popup Applications
+ I AddToMenu MainMenu "Dotfiles" Popup Dotfiles
+ I AddToMenu MainMenu "" Nop
+ I AddToMenu MainMenu "Restart" Restart
+ I AddToMenu MainMenu "Exit" Exec exec fvwm-logout
# Applications menu
DestroyMenu Applications
AddToMenu Applications
+ "alsamixer" Exec exec $[fvwm_terminal] -e alsamixer
+ "Agave" Exec exec agave
+ "GIMP" Exec exec gimp
+ "GParted" Exec exec gksudo gparted
+ "htop" Exec exec $[fvwm_terminal] -e htop
+ "Inkscape" Exec exec inkscape
+ "VLC" Exec exec vlc
# Dotfiles Menu
DestroyMenu Dotfiles
AddToMenu Dotfiles
+ ".conkyrc" Exec exec $[fvwm_editor] ~/.conkyrc
+ ".emacs" Exec exec $[fvwm_editor] ~/.emacs
+ ".fvwm/config" Exec exec $[fvwm_editor] ~/.fvwm/config
+ ".gmrunrc" Exec exec $[fvwm_editor] ~/.gmrunrc
+ ".gtkrc-2.0" Exec exec $[fvwm_editor] ~/.gtkrc-2.0
+ ".irssi/config" Exec exec $[fvwm_editor] ~/.irssi/conf
+ ".ncmpcpp/config" Exec exec $[fvwm_editor] ~/.ncmpcpp/config
+ ".screenrc" Exec exec $[fvwm_editor] ~/.screenrc
+ ".config/Trolltech.conf" Exec exec $[fvwm_editor] ~/.config/Trolltech.conf
+ ".Xdefaults" Exec exec $[fvwm_editor] ~/.Xdefaults
+ ".xinitrc" Exec exec $[fvwm_editor] ~/.xinitrc
+ ".zshrc" Exec exec $[fvwm_editor] ~/.zshrc
# 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
Style "*" Font "xft:nu:Regular:size=9"
MenuStyle "*" Font "xft:nu:Regular:size=9"
# 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
# Menu fg - text, bg - background, the rest is for borders
Colorset 3 fg #1a1a1a, bg #ffffff, sh #cfcfcf, hi #cfcfcf
# Menu selected item highligt colorset
Colorset 7 fg #1a1a1a, bg #cfcfcf, sh #cfcfcf, hi #cfcfcf
# Window titlebar and border colors
Colorset 10 fg #cfcfcf, bg #cfcfcf, sh #cfcfcf, hi #cfcfcf
# Window titlebar highlights
Colorset 11 fg #8e8e8e, bg #eaeaea, sh #8e8e8e, hi #8e8e8e
# Menu
# Enable colorsets
MenuStyle * MenuColorset 3
MenuStyle * ActiveColorset 7
# Menu Formatting
MenuStyle * SeparatorsLong, TrianglesUseFore, TrianglesSolid
MenuStyle * BorderWidth 2
MenuStyle * VerticalItemSpacing 3 3, VirticalMargins 3 3
MenuStyle * ActiveFore, Hilight3DOff, HilightBack
MenuStyle * ItemFormat "%.4s%.1|%3p%.5i%.5l%.5l%.5r%.5i%2.3>%1|"
# Popup settings
MenuStyle * PopupAsSubmenu, HoldSubmenus, SubmenusRight
MenuStyle "*" PopupOffset 3 100
# Titlebar
# General settings
TitleStyle Height 20
TitleStyle LeftJustified
TitleStyle Colorset 11 -- Flat
# Titlebar colorsets
Style "*" HilightColorset 11
Style "*" Colorset 10
# Titlebar buttons
ButtonStyle All -- UseTitleStyle
ButtonStyle All Active -- Flat
ButtonStyle All Inactive -- Flat
AddButtonStyle All Vector 9 \
40x30@3 50x30@3 60x40@3 \
60x50@3 50x60@3 40x60@3 \
30x50@3 30x40@3 40x30@3
# Titlebar Functions
Mouse 1 2 N Delete
Mouse 1 4 N Maximize 100 100
Mouse 1 6 N Iconify
Mouse 1 1 A Menu WindowMenu
#De-iconify an iconified window
Mouse 1 I N Iconify
# Borders
Style * BorderWidth 2
Style * HandleWidth 2
BorderStyle Active Colorset 10 -- flat
BorderStyle Inactive Colorset 10 -- flat
# Application specific styles
Style quake-term !Title, !Handles, !Borders, !Icon, WindowListSkip
Style FvwmConsole !Title, !Handles, !Borders, !Icon, WindowListSkip
Style gmrun !Title
Style fvwm-logout !Title
# CursorStyle
CursorStyle root left_ptr
CursorStyle default left_ptr
CursorStyle position left_ptr
CursorStyle sys left_ptr
CursorStyle menu left_ptr
CursorStyle title left_ptr
CursorStyle resize fleur
CursorStyle stroke cross
CursorStyle select draped_box
|
x
Notes
Same functionality as swayr, new look. I’ve been using it with murrina-candido gtk and those faenza icons.
Him said about 13 years ago
Beautiful!