FVWM_SMALLEST_CONFIG
...
# -----------------------------------------------------------------
# HANDBOOK:
# http://yaoqiang1968.bokee.com/6286046.html
# Contexts:
# R = Root Window
# W = Application Window
# F = Frame Corners
# S = Frame Sides
# T = Title Bar
# I = Icon
# Numbers are buttons:
# Modifiers: (A)ny, (C)ontrol, (S)hift, (M)eta, (N)othing
#
# DestroyFunc FuncName
# AddToFunc FuncName
# + I (Action to happen immediately)
# + C (Action to happen on a mouse 'click)
# + D (Action to happen on a mouse 'double click')
# + H (Action to happen on a mouse 'hold')
# + M (Action to happen on a mouse 'motion')
# -----------------------------------------------------------------
DesktopSize 1x1
EdgeScroll
EdgeResistance
EdgeThickness
EwmhBaseStruts
IgnoreModifiers L25
ClickTime
MoveThreshold
DefaultFont "StringEncoding=utf8:xft:Sans:size=14:encoding=iso10646-1"
HideGeometryWindow
ColormapFocus FollowsMouse # !Handles:不需要窗口大小调整边角
# !Icon:使得程序 Iconify 后不在桌面上显示图标
# Style * BorderWidth , !Handles, !Title, !Icon
Style * BorderWidth , !Handles, !Title
Style * IconBox -,IconFill top Left
Style * NoIconTitle
Style * SloppyFocus,MouseFocusClickRaises
Style * SmartPlacement
Style * TileCascadePlacement #--#MenuStyle * Foreground gray90, Background gray20
#Style * ClickToFocus, ClickToFocusPassesClick Style "Fvwm*" Sticky, WindowListSkip, CirculateSkipIcon, CirculateSkip # 窗口边框颜色
Colorset fg black, bg rgb:9e/ee/ee, sh rgb:9e/ee/ee, hi rgb:9e/ee/ee
Colorset fg black, bg rgb:/aa/aa, sh rgb:/aa/aa, hi rgb:/aa/aa
Style * BorderColorset
Style * HilightBorderColorset MenuStyle * Hilight3DOff, PopupDelayed, PopupDelay , SeparatorsLong
MenuStyle * ActiveFore white, HilightBack rgb://
# fg:文本色、bg:背景色、sh:右下边框色、hi:左上边框色
Colorset fg black, bg rgb:e9/ff/e9, sh rgb:/cc/, hi rgb:/cc/
MenuStyle * MenuColorset
#############################################################################
DestroyFunc StartFunction
AddToFunc StartFunction
+ I Exec exec xsetroot -solid grey10 DestroyFunc InitFunction
AddToFunc InitFunction
#+ I Exec xclock -d -bg grey10 -fg grey80 -geometry 88x44-+ -strftime '%H:%M'
+ I Exec xterm DestroyFunc ExitFunction
AddToFunc ExitFunction
+ I All Close DestroyFunc RestartFunction
AddToFunc RestartFunction
#+ I Exec xclock -d -bg grey10 -fg grey80 -geometry 88x44-+ -strftime '%H:%M'
+ I Exec xterm DestroyMenu RootMenu
AddToMenu RootMenu "Root Menu" Title
+ "" Nop ##
# Key maps
##
Key Tab A M WindowList Root c c CurrentAtEnd CurrentDesk NoGeometry NoCurrentDeskTitle NoNumInDeskTitle NoDeskNum SelectOnRelease Meta_L Key k A GotoDesk - Next [*] Focus
Key j A GotoDesk + Next [*] Focus
Key k A C4 Silent MovetoDesk - Next [*] Focus
Key j A C4 Silent MovetoDesk + Next [*] Focus
Key k A C4M Restart
Key k A CM All (xterm) Close Delete
Key s A All Iconify True
Key d A All Iconify False
Key A Silent Move
Key A Silent Resize
Key m A Silent Maximize
Key f A Silent Maximize
Key t A Exec xterm
Key i A Exec firefox AddToFunc CloseProgram
+ I Silent Close Delete
+ I Silent Next [*] Focus
Key A Silent CloseProgram AddToFunc IconifyProgram
+ I Silent Iconify True
+ I Silent Next [*] Focus
Key A IconifyProgram Key F4 A Quit ##
# Mouse maps
##
Mouse R A -
Mouse R A -
Mouse R A -
AddToFunc MoveSelectedWindow
+ H move
Mouse WFS A MoveSelectedWindow
...
FVWM_SMALLEST_CONFIG的更多相关文章
随机推荐
- 自定义jQuery Mobile工具栏按钮
自定义jQuery Mobile工具栏按钮 1.实现效果
- django 之模板层
1. 模板语法之变量 格式:{{ 变量名 }} 句点符,深度查询(可以点到方法,不要加括号,只能是无参的方法) 代码 视图函数: from django.shortcuts import render ...
- idea下远程debug配置
一. 背景: 在测试工作中,为方便发现代码中的逻辑问题,尝试使用远程debug模式,在测试过程中走查代码,不仅可以辅助测试减少与开发的沟通成本,更便于了解业务提升测试深度. 二. 配置方式: 1. 调 ...
- Spring 使用@Async出现循环依赖Bean报错的解决方案
初现端倪 Caused by:org.springframework.beans.factory.BeanCurrentlyInCreationException: Errorcreating bea ...
- Python运维-获取当前操作系统的各种信息
#通过Python的psutil模块,获取当前系统的各种信息(比如内存,cpu,磁盘,登录用户等),并将信息进行备份 # coding=utf-8 # 获取系统基本信息 import sys impo ...
- WEB前端资源集
原出处:http://www.cnblogs.com/zhengjialux/archive/2017/01/16/6291394.html 资源网站篇 CSDN:全球最大中文IT社区,为IT专业技术 ...
- 【java】自定义排序
使用Comparable接口 这里定义了一个类Node,有两个属性,id,age. 排序方法是,先根据id升序排,id一样,age降序排. 里面有一个compareTo方法.返回值有三个 1. < ...
- arcpy-字段唯一值、重复值、最值、平均值、方差、标准差、中数、众数
插个广告,制作ArcGIS的Tool工具学习下面的教程就对了: 零基础学习Python制作ArcGIS自定义工具观看链接 <零基础学习Python制作ArcGIS自定义工具>课程简介 im ...
- Apache Solr远程命令执行
简介 Solr是一个独立的企业级搜索应用服务器,它对外提供类似于Web-service的API接口.用户可以通过http请求,向搜索引擎服务器提交一定格式的XML文件,生成索引:也可以通过Http G ...
- Python第九节 条件和循环
while...else 当满足while循环条件的时候执行循环体内的语句,否则执行else的语句例如下面的例子: count = 1 while count <= 5: print(" ...