double wmfs 2 (scrot) (+3 likes)
linuxville Jul 25, 2012 (wms/wmfs)
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 | #
# WMFS2 configuration file
#
# Possible file inclusion:
# @include "file"
@include ~/.config/wmfs/wmfs_themes
@include ~/.config/wmfs/wmfs_rules
[bars]
[bar]
name = topbar
position = 0
screen = 0
elements = "tlys" # element order in bar
theme = "default"
[/bar]
[bar]
name = botbar
position = 1
screen = 0
elements = "s"
theme = "default"
[/bar]
[/bars]
[tags]
# Tag wrapping navigation
circular = false
# Use no screen option or screen = -1 to set tag on each screen
[tag]
screen = -1
name = "term"
# statusline=""
[/tag]
[tag] name = "web" [/tag]
[tag] name = "media" [/tag]
[tag] name = "work" [/tag]
# Mousebinds associated to Tags element button
[mouse] button = "1" func = "tag_click" [/mouse]
[mouse] button = "4" func = "tag_next" [/mouse]
[mouse] button = "5" func = "tag_prev" [/mouse]
[/tags]
[client]
# Padding between clients (default: 0) :
padding = 24
# Give focus to new created client (default = false)
autofocus = false
theme = "default"
key_modifier = "Super"
# Focus type:
# enter : focus follow mouse (default)
# click : click to focus
# everything-else : disable mouse focus support
focus = enter
[mouse] button = "1" func = "client_focus_click" [/mouse]
[mouse] button = "1" func = "mouse_swap" [/mouse]
[mouse] button = "2" func = "mouse_tab" [/mouse]
[mouse] button = "3" func = "mouse_resize" [/mouse]
[mouse] button = "4" func = "client_focus_next_tab" [/mouse]
[mouse] button = "5" func = "client_focus_prev_tab" [/mouse]
[/client]
[launchers]
# command can be an uicb function or an uicb function + extension (see example)
[launcher]
name = "exec"
prompt = " "
# Example of uicb + ext:
# command = "spawn xterm -e"
command = "spawn"
width = 150
[/launcher]
[/launchers]
[keys]
[key] mod = {"Super"} key = "Return" func = "spawn" cmd = "urxvt || xterm" [/key]
[key] mod = {"Control", "Alt"} key = "q" func = "quit" [/key]
[key] mod = {"Control", "Alt"} key = "r" func = "reload" [/key]
# Tag manipulation
[key] mod = {"Super"} key = "F1" func = "tag_set" cmd = "0" [/key]
[key] mod = {"Super"} key = "F2" func = "tag_set" cmd = "1" [/key]
[key] mod = {"Super"} key = "F3" func = "tag_set" cmd = "2" [/key]
[key] mod = {"Super"} key = "F4" func = "tag_set" cmd = "3" [/key]
[key] mod = {"Super"} key = "F5" func = "tag_set" cmd = "4" [/key]
[key] mod = {"Super"} key = "F6" func = "tag_set" cmd = "5" [/key]
[key] mod = {"Super"} key = "F7" func = "tag_set" cmd = "6" [/key]
[key] mod = {"Super"} key = "F8" func = "tag_set" cmd = "7" [/key]
[key] mod = {"Super", "Shift"} key = "F1" func = "tag_client" cmd = "0" [/key]
[key] mod = {"Super", "Shift"} key = "F2" func = "tag_client" cmd = "1" [/key]
[key] mod = {"Super", "Shift"} key = "F3" func = "tag_client" cmd = "2" [/key]
[key] mod = {"Super", "Shift"} key = "F4" func = "tag_client" cmd = "3" [/key]
[key] mod = {"Super", "Shift"} key = "F5" func = "tag_client" cmd = "4" [/key]
[key] mod = {"Super", "Shift"} key = "F6" func = "tag_client" cmd = "5" [/key]
[key] mod = {"Super", "Shift"} key = "F7" func = "tag_client" cmd = "6" [/key]
[key] mod = {"Super", "Shift"} key = "F8" func = "tag_client" cmd = "7" [/key]
[key] mod = {"Super"} key = "minus" func = "tag_del" [/key]
[key] mod = {"Super", "Shift"} key = "minus" func = "tag_new" [/key]
# tag function: cmd = nameofthetag
#[key] mod = {"Super"} key = "z" func = "tag" cmd = "2" [/key]
[key] mod = {"Control"} key = "Right" func = "tag_next" [/key]
[key] mod = {"Control"} key = "Left" func = "tag_prev" [/key]
[key] mod = {"Control"} key = "Up" func = "screen_next" [/key]
[key] mod = {"Control"} key = "Down" func = "screen_prev" [/key]
[key] mod = {"Super"} key = "q" func = "client_close" [/key]
# Focus next / prev client and next / prev tabbed client
[key] mod = { "Alt" } key = "Tab" func = "client_focus_next" [/key]
[key] mod = { "Alt", "Shift" } key = "Tab" func = "client_focus_prev" [/key]
[key] mod = { "Super" } key = "Tab" func = "client_focus_next_tab" [/key]
[key] mod = { "Super", "Shift" } key = "Tab" func = "client_focus_prev_tab" [/key]
# Focus next client with direction
[key] mod = {"Alt"} key = "h" func = "client_focus_left" [/key]
[key] mod = {"Alt"} key = "l" func = "client_focus_right" [/key]
[key] mod = {"Alt"} key = "k" func = "client_focus_top" [/key]
[key] mod = {"Alt"} key = "j" func = "client_focus_bottom" [/key]
# swap next client with direction:
[key] mod = {"Control", "Shift"} key = "h" func = "client_swap_left" [/key]
[key] mod = {"Control", "Shift"} key = "l" func = "client_swap_right" [/key]
[key] mod = {"Control", "Shift"} key = "k" func = "client_swap_top" [/key]
[key] mod = {"Control", "Shift"} key = "j" func = "client_swap_bottom" [/key]
# Resize selected tiled client with direction
[key] mod = {"Super"} key = "h" func = "client_resize_left" cmd = "20" [/key]
[key] mod = {"Super"} key = "l" func = "client_resize_left" cmd = "-20" [/key]
[key] mod = {"Super"} key = "k" func = "client_resize_top" cmd = "20" [/key]
[key] mod = {"Super"} key = "j" func = "client_resize_top" cmd = "-20" [/key]
[key] mod = {"Super", "Control"} key = "h" func = "client_resize_right" cmd = "-20" [/key]
[key] mod = {"Super", "Control"} key = "l" func = "client_resize_right" cmd = "20" [/key]
[key] mod = {"Super", "Control"} key = "k" func = "client_resize_bottom" cmd = "-20" [/key]
[key] mod = {"Super", "Control"} key = "j" func = "client_resize_bottom" cmd = "20" [/key]
# Tabbing command
[key] mod = {"Alt", "Shift"} key = "h" func = "client_tab_left" [/key]
[key] mod = {"Alt", "Shift"} key = "l" func = "client_tab_right" [/key]
[key] mod = {"Alt", "Shift"} key = "k" func = "client_tab_top" [/key]
[key] mod = {"Alt", "Shift"} key = "j" func = "client_tab_bottom" [/key]
[key] mod = {"Alt", "Shift"} key = "u" func = "client_untab" [/key]
[key] mod = {"Super"} key = "t" func = "client_tab_next_opened" [/key]
# Layout manipulation
[key] mod = {"Super"} key = "m" func = "layout_vmirror" [/key]
[key] mod = {"Super", "Shift"} key = "m" func = "layout_hmirror" [/key]
[key] mod = {"Super"} key = "r" func = "layout_rotate_right" [/key]
[key] mod = {"Super", "Shift"} key = "r" func = "layout_rotate_left" [/key]
[key] mod = {"Control", "Super", "Alt"} key = "h" func = "layout_integrate_left" [/key]
[key] mod = {"Control", "Super", "Alt"} key = "j" func = "layout_integrate_bottom" [/key]
[key] mod = {"Control", "Super", "Alt"} key = "k" func = "layout_integrate_top" [/key]
[key] mod = {"Control", "Super", "Alt"} key = "l" func = "layout_integrate_right" [/key]
# Layout set historic travelling function (TESTING)
[key] mod = {"Super"} key = "o" func = "layout_prev_set" [/key]
[key] mod = {"Super", "Shift"} key = "o" func = "layout_next_set" [/key]
# Toggle client free/tile
[key] mod = {"Super"} key = "f" func = "client_toggle_free" [/key]
# Toggle client ignore_tag
[key] mod = {"Super", "Shift"} key = "f" func = "client_toggle_ignore_tag" [/key]
# Toggle infobar visibility
[key] mod = {"Super", "Shift"} key = "h" func = "infobar_toggle_hide" cmd = "default" [/key]
# Launcher
[key] mod = {"Super"} key = "p" func = "launcher" cmd = "exec" [/key]
[/keys]
|
x
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 | # Multi theme section
[themes]
[theme]
# No name mean default
# name = "default"
font = "cure"
# Bars
bars_width = 14
bars_fg = "#fcfcfc"
bars_bg = "#000000"
# Element tags
tags_normal_fg = "#fcfcfc"
tags_normal_bg = "#000000"
# tags_normal_statusline = ""
tags_sel_fg = "#000000"
tags_sel_bg = "#5c94fc"
tags_sel_statusline = "\R[0;0;100;1;#e52a00]"
tags_occupied_fg = "#000000"
tags_occupied_bg = "#f0bc3c"
tags_occupied_statusline = "\R[0;0;100;1;#e52a00]"
tags_urgent_fg = "#000000"
tags_urgent_bg = "#f0bc3c"
tags_urgent_statusline = "\R[0;0;100;1;#e52a00]"
tags_border_color = "#000000"
tags_border_width = 2
# Frame / Client
client_normal_fg = "#fcfcfc"
client_normal_bg = "#7c0800"
#client_normal_statusline = "\s[3;9;#121212;x] \s[2;8;#ff0000;x](1;client_close)"
client_sel_fg = "#fcfcfc"
client_sel_bg = "#e52a00"
#client_sel_statusline = "\s[3;9;#121212;x] \s[2;8;#ff0000;x](1;client_close)"
# client_free_statusline = ""
frame_bg = "#000000"
client_titlebar_width = 2
client_border_width = 2
[/theme]
[/themes]
|
x
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 | [rules]
[rule]
# use instance = "*" for a all-clients rule
instance = "dwb"
tag = 1 # 2nd tag
screen = 0
free = false
tab = false
ignore_tag = false
[/rule]
[rule]
instance = "gimp"
tag = 2
screen = 0
free = true
tab = false
ignore_tag = false
[/rule]
[rule]
instance = "libreoffice"
tag = 3
screen = 0
free = false
tab = false
ignore_tag = false
[/rule]
[rule]
instance = "thunar"
tag = 2
screen = 0
free = true
tab = false
ignore_tag = false
[/rule]
[rule]
instance = "urxvt"
tag = 0
screen = 0
free = true
tab = false
ignore_tag = false
[/rule]
[rule]
instance = "leafpad"
tag = 3
screen = 0
free = true
tab = false
ignore_tag = false
[/rule]
[rule]
instance = "vlc"
tag = 2
screen = 0
free = true
tab = false
ignore_tag = false
[/rule]
[rule]
instance = "bluefish"
tag = 3
screen = 0
free = false
tab = false
ignore_tag = false
[/rule]
[/rules]
|
x
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | ##############################################
# Settings
##############################################
background no
out_to_x no
out_to_console yes
update_interval 1
total_run_times 0
uppercase no
short_units yes
use_spacer none
if_up_strictness address
##############################################
# Output
##############################################
TEXT
^s[right;\#fcfcfc;${time %A, %e %B %G, %H:%M:%S }]
|
x
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 | ##############################################
# Settings
##############################################
background no
out_to_x no
out_to_console yes
update_interval 1
total_run_times 0
uppercase no
short_units yes
use_spacer none
if_up_strictness address
##############################################
# Output
##############################################
TEXT
^s[left;\#e52a00; :: ]\
^s[left;\#5c94fc;kernel:] ^s[left;\#fcfcfc; $kernel ]\
^s[left;\#e52a00; :: ]\
^s[left;\#5c94fc;uptime:] ^s[left;\#fcfcfc; $uptime ]\
^s[left;\#e52a00; :: ]\
^s[left;\#5c94fc;load:] ^s[left;\#fcfcfc; $loadavg ]\
^s[left;\#e52a00; :: ]\
^s[left;\#5c94fc;proc:] ^s[left;\#fcfcfc; $processes ]\
^s[left;\#e52a00; :: ]\
^s[left;\#5c94fc;run:] ^s[left;\#fcfcfc; $running_processes ]\
^s[left;\#e52a00; :: ]\
^s[left;\#5c94fc;bat:] ^s[left;\#fcfcfc; ${battery BAT1} ]\
^s[right;\#e52a00; :: ]\
^s[right;\#5c94fc;cpu:] ^s[right;\#fcfcfc; ${cpu}% ]\
^s[right;\#e52a00; :: ]\
^s[right;\#5c94fc;ram:] ^s[right;\#fcfcfc; $memperc%] ^s[right;\#fcfcfc; $mem]\
^s[right;\#e52a00; :: ]\
^s[right;\#5c94fc;root:] ^s[right;\#fcfcfc; ${fs_used_perc /}% ] ^p[right;8;10;0;${fs_used_perc /};100;\#000000;\#fcfcfc;ckyhdd]\
^s[right;\#e52a00; :: ]\
^s[right;\#5c94fc;home:] ^s[right;\#fcfcfc; ${fs_used_perc /home}% ] ^p[right;8;10;0;${fs_used_perc /home};100;\#000000;\#fcfcfc;ckyhdd]\
^s[right;\#e52a00; :: ]\
^s[right;\#5c94fc;ext:] ^s[right;\#fcfcfc; ${fs_used_perc /run/media/goku/Depo}% ] ^p[right;8;10;0;${fs_used_perc /run/media/goku/Depo};100;\#000000;\#fcfcfc;ckyhdd]\
^s[right;\#e52a00; :: ]\
^s[right;\#5c94fc;up:] ^s[right;\#fcfcfc; ${upspeed wlan0}kb/s ]\
^s[right;\#e52a00; :: ]\
^s[right;\#5c94fc;down:] ^s[right;\#fcfcfc; ${downspeed wlan0}kb/s ]\
^s[right;\#e52a00; :: ]\
^s[right;\#5c94fc;mpd:]^s[right;\#fcfcfc; $mpd_smart ]\
|
x
StylinGreymon said about 12 years ago
That is a great wallpaper.