guest@dotshare [~/groups/wms/i3] $ ls sober/ | cat

sober (scrot) (+3 likes)

virus69 Mar 14, 2017 (wms/i3)

config(raw, dl)

SCROT

  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
#     		'####::'#######::'##:::::'##:'##::::'##:
#     		. ##::'##.... ##: ##:'##: ##: ###::'###:
#     		: ##::..::::: ##: ##: ##: ##: ####'####:
#     		: ##:::'#######:: ##: ##: ##: ## ### ##:
#     		: ##:::...... ##: ##: ##: ##: ##. #: ##:
#    		: ##::'##:::: ##: ##: ##: ##: ##:.:: ##:
#     		'####:. #######::. ###. ###:: ##:::: ##:
#     		....:::.......::::...::...:::..:::::..::

        	############# i3 TWM ###############
        	#                                  #
       	 	# Mi configuración de i3 TWM       #
        	# Autor: Felix Molero              #
        	# Alias: Viru69                    #
        	# Email: elhackerliber@gmail.com   #
        	# Lic:  GPL v2                     #
        	#                                  #
        	############# i3 TWM ###############


#::::::::::::::::::::::::::: Default settings ::::::::::::::::::::::::::::::::#

#                      Activa Tecla Meta por default

set $mod Mod4
#------------------------------------------------------------------------------#

#               Fuente por defecto para los bordes de ventanas

font pango:Monospace 9              
#------------------------------------------------------------------------------#

#           Activo el modo del mouse para mover las ventanas flotantes

floating_modifier $mod
#------------------------------------------------------------------------------#



#::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::#
#                       Ejecutar shell URxvt + Tmux

bindsym $mod+Return workspace $WS1; exec urxvt #-e tmux
#------------------------------------------------------------------------------#

#                       Cerrar ventanas enfocadas

bindsym $mod+Shift+q kill
#------------------------------------------------------------------------------#

#                       Ejecutar dmenu + rofi

bindsym $mod+d exec --no-startup-id i3-dmenu-desktop --dmenu='rofi -dmenu'


#:::::::::::::::::::::::: i3 default config window ::::::::::::::::::::::::::::#

#                       Change focus
bindsym $mod+j focus left
bindsym $mod+k focus down
bindsym $mod+l focus up
bindsym $mod+ntilde focus right

#           Alternatively, you can use the cursor keys:
bindsym $mod+Left focus left
bindsym $mod+Down focus down
bindsym $mod+Up focus up
bindsym $mod+Right focus right

#                       Move focused window
bindsym $mod+Shift+j move left
bindsym $mod+Shift+k move down
bindsym $mod+Shift+l move up
bindsym $mod+Shift+ntilde move right

#       Alternatively, you can use the cursor keys
bindsym $mod+Shift+Left move left
bindsym $mod+Shift+Down move down
bindsym $mod+Shift+Up move up
bindsym $mod+Shift+Right move right

#       Split in horizontal and vertical orientation
bindsym $mod+h split h
bindsym $mod+v split v

#       Enter fullscreen mode for the focused container
bindsym $mod+f fullscreen toggle

#       Change container layout (stacked, tabbed, toggle split)
bindsym $mod+s layout stacking
bindsym $mod+w layout tabbed
bindsym $mod+e layout toggle split

#       Toggle tiling / floating
bindsym $mod+Shift+space floating toggle

#       Change focus between tiling / floating windows
bindsym $mod+space focus mode_toggle

#       Focus the parent container
bindsym $mod+a focus parent


#::::::::::::::::::::::: Customize workspace name :::::::::::::::::::::::::::::#

set $WS1   1:
set $WS2   2:
set $WS3   3:
set $WS4   4:
set $WS5   5:
set $WS6   6:
set $WS7   7:
set $WS8   8:
set $WS9   9:
set $WS0   10:

#       Switch to workspace
bindsym $mod+1 workspace $WS1
bindsym $mod+2 workspace $WS2
bindsym $mod+3 workspace $WS3
bindsym $mod+4 workspace $WS4
bindsym $mod+5 workspace $WS5
bindsym $mod+6 workspace $WS6
bindsym $mod+7 workspace $WS7
bindsym $mod+8 workspace $WS8
bindsym $mod+9 workspace $WS9
bindsym $mod+0 workspace $WS0

#       Move focused container to workspace
bindsym $mod+Shift+1 move container to workspace $WS1
bindsym $mod+Shift+2 move container to workspace $WS2
bindsym $mod+Shift+3 move container to workspace $WS3
bindsym $mod+Shift+4 move container to workspace $WS4
bindsym $mod+Shift+5 move container to workspace $WS5
bindsym $mod+Shift+6 move container to workspace $WS6
bindsym $mod+Shift+7 move container to workspace $WS7
bindsym $mod+Shift+8 move container to workspace $WS8
bindsym $mod+Shift+9 move container to workspace $WS9
bindsym $mod+Shift+0 move container to workspace $WS0

#::::::::::::::::::::::::: App assigned in workspace ::::::::::::::::::::::::::# 

assign [class="chromium"]           $ws2
assign [class="Pale moon"]          $ws2
assign [class="Thunar"]             $ws3
assign [class="Mousepad"]           $ws4
assign [class="Vlc"]                $ws5
assign [class="mplayer"]            $ws5
assign [class="Soundconverter"]     $ws5
assign [class="Popcorn-Time"]       $ws5
assign [class="(?i)popcorntime"]    $ws5
#assig [class="Termite"]            $ws1
#assign [class="urxvt"]             $ws1
#assign [class="Franz"]             $ws6
assign [class="(?i)epdfview"]      	$ws7
assign [class="Gimp"]              	$ws7
assign [class="Inkscape"]           $ws7
#assign [class="Gnumeric"]          $ws7
assign [class="libreoffice"]        $ws7
assign [class="Transmission"]       $ws8
assign [class="JDownloader"]        $ws8
assign [class="Lxappearance"]       $ws9
assign [class="Pavucontrol"]        $ws9
assign [class="imagewriter"]       	$ws9
assign [class="(?i)virtualbox"]    	$ws9
assign [class="minecraft"]         	$ws0


#:::::::::::::::::::::::::::: Config default ::::::::::::::::::::::::::::::::::#

# reload the configuration file
bindsym $mod+Shift+c reload
# restart i3 inplace (preserves your layout/session, can be used to upgrade i3)
bindsym $mod+Shift+r restart
# exit i3 (logs you out of your X session)
#bindsym $mod+Shift+e exec "i3-nagbar -t warning -m 'You pressed the exit 
#shortcut. Do you really want to exit i3? This will end your X session.' -b 
#'Yes, exit i3' 'i3-msg exit'"

# resize window (you can also use the mouse for that)
mode "resize" {
        # These bindings trigger as soon as you enter the resize mode

        # Pressing left will shrink the window’s width.
        # Pressing right will grow the window’s width.
        # Pressing up will shrink the window’s height.
        # Pressing down will grow the window’s height.
        bindsym j resize shrink width 10 px or 10 ppt
        bindsym k resize grow height 10 px or 10 ppt
        bindsym l resize shrink height 10 px or 10 ppt
        bindsym ntilde resize grow width 10 px or 10 ppt

        # same bindings, but for the arrow keys
        bindsym Left resize shrink width 10 px or 10 ppt
        bindsym Down resize grow height 10 px or 10 ppt
        bindsym Up resize shrink height 10 px or 10 ppt
        bindsym Right resize grow width 10 px or 10 ppt

        # back to normal: Enter or Escape
        bindsym Return mode "default"
        bindsym Escape mode "default"
}

bindsym $mod+r mode "resize"


#:::::::::::::::::::::::::::::: Style border ::::::::::::::::::::::::::::::::::#

# <normal|1pixel|pixel xx|none|pixel> #
new_window pixel 1
new_float normal

#       Disable border window
hide_edge_borders none


#:::::::::::::::::;: Assigned window mode floating ::::::::::::::::::::::::::::#

#|||||||||||||| Ventanas flotantes con bordes |||||||||||||||||#
for_window [class="Galculator"] floating enable border normal
for_window [class="Geany"] floating enable border normal
for_window [class="GParted"] floating enable border normal
for_window [class="JDownloader"] floating enable border normal
for_window [class="Lightdm-gtk-greeter-settings"] floating enable border normal
for_window [class="Lxappearance"] floating enable border normal
for_window [class="Mousepad"] floating enable border normal
for_window [class="Nitrogen"] floating enable border normal
for_window [class="Pamac-update"] floating enable border normal
for_window [class="Pavucontrol"] floating enable border normal
for_window [class="Transmission-gtk"] floatingenable border normal
#for_window [class="(?i)virtualbox"] floating enable border normal

#||||||||||||| Ventanas flotantes sin bordes ||||||||||||||||||#
for_window [class="Firefox"] enable border pixel 1
for_window [class="Galculator"] floating enable border pixel 4
for_window [class="soundconverter"] floating enable border pixel 1
for_window [class="Sonata"] floating enable border pixel 4
for_window [class="Terminator"] floating enable border pixel 1
for_window [class="Termite"] floating enable border pixel 4
#for_window [class="URxvt"] floating enable border pixel 4
for_window [class="Vlc"] floating enable border pixel 1
for_window [class="xarchiver"] floating enable border pixel 1
for_window [class="XTerm"] floating enable border pixel 4
for_window [class="imagewriter"] floating enable border pixel 4


#:::::::::::::::::::::::: Position window top right :::::::::::::::::::::::::::#

bindsym $mod+Shift+p floating enable; resize set 560 px 340 px; sticky enable; move window to position 880 px 25 px
bindsym $mod+Shift+m floating enable; resize set 1280 px 500 px; sticky enable; move window to position 10 px 390 px

#           Minimizar ventanas
# Mover ventana al scratchpad
bindsym $mod+Shift+minus move scratchpad

# # Mostrar scratchpad
bindsym $mod+minus scratchpad show


#:::::::::::::::::::::::::::::::: i3 Panel ::::::::::::::::::::::::::::::::::::#

bar {
        status_command              i3blocks -c ~/.config/i3/i3blocks.conf
        position                    top
        mode                        dock
        strip_workspace_numbers     yes
        height                      18
        font                        pango: xos4 Terminess Powerline, icons 9
#       separator_symbol            "::"

#   Color panel
colors {
		background #253941
		statusline #e7dfd9
		separator  #081419

#   Indicadores panel
#                        border  backgr   text
    focused_workspace   #08202a #08202a #e7dfd9
    inactive_workspace  #a5876d #a5876d #000000
    urgent_workspace    #1b1d1f #c6a78a #000000
       }
}

#::::::::::::::::::::::::::::: Frame window :::::::::::::::::::::::::::::::::::#

# Class                      border  backgr   text  indicator child_border
client.focused		 		#1d3037 #1d3037 #ffffff  #ffffff   #1d3037
client.focused_inactive 	#1d2121 #1d2121 #a1a1a1  #484e50   #1d2121
client.urgent   			#4a4b4c #4a4b4c #fdfdfd  #fbfbfb   #4a4c4b

client.background           #111111


#:::::::::::::::::::::::: Settings for gaps window ::::::::::::::::::::::::::::#

# Set inner/outer gaps
set $default_gaps_inner 8
set $default_gaps_outer -4
gaps inner $default_gaps_inner
gaps outer $default_gaps_outer

smart_gaps on
smart_borders on

# Press $mod+Shift+g to enter the gap mode. Choose o or i for modifying
# outer/inner gaps. Press one of + / - (in-/decrement for current workspace) or
# 0 (remove gaps for current workspace). If you also press Shift with these
# keys, the change will be global for all workspaces.

set $mode_gaps Gaps: (o) outer, (i) inner
set $mode_gaps_outer Outer Gaps: +|-|0 (local), Shift + +|-|0 (global)
set $mode_gaps_inner Inner Gaps: +|-|0 (local), Shift + +|-|0 (global)
bindsym $mod+Shift+g mode "$mode_gaps"

mode "$mode_gaps" {
    bindsym o       mode "$mode_gaps_outer"
    bindsym i       mode "$mode_gaps_inner"
    bindsym Return  mode "default"
    bindsym Escape  mode "default"
}

mode "$mode_gaps_inner" {
    bindsym plus    gaps inner current plus 3
    bindsym minus   gaps inner current minus 3
    bindsym 0       gaps inner current set 0

    bindsym Shift+plus  gaps inner all plus 3
    bindsym Shift+minus gaps inner all minus 3
    bindsym Shift+0     gaps inner all set 0

    bindsym Return mode "default"
    bindsym Escape mode "default"
}

mode "$mode_gaps_outer" {
    bindsym plus    gaps outer current plus 3
    bindsym minus   gaps outer current minus 3
    bindsym 0       gaps outer current set 0

    bindsym Shift+plus  gaps outer all plus 3
    bindsym Shift+minus gaps outer all minus 3
    bindsym Shift+0     gaps outer all set 0

    bindsym Return mode "default"
    bindsym Escape mode "default"
}


#::::::::::::::::::::::::::::::: Out system :::::::::::::::::::::::::::::::::::#

set $Locker i3lock && sleep 1
set $mode_system System:   L :  | S :  | P :  | R :  | E :

mode "$mode_system" {
    bindsym l exec --no-startup-id i3lock-fancy, mode "default"
    bindsym s exec --no-startup-id $Lock systemctl suspend, mode "default
    bindsym p exec --no-startup-id systemctl poweroff -i, mode "default"
    bindsym r exec --no-startup-id systemctl reboot, mode "default"
    bindsym e exec --no-startup-id i3-msg exit, mode "default"

#   back to normal: Enter or Escape
    bindsym Return mode "default"
    bindsym Escape mode "default"
}
bindsym $mod+x mode "$mode_system"


#:::::::::::::::::::::::::::: Volume control ::::::::::::::::::::::::::::::::::#

#       Alsamixer control

# Increase sound volume
#bindsym XF86AudioRaiseVolume exec "amixer sset Master '3%+'"
# Decrease sound volume
#bindsym XF86AudioLowerVolume exec "amixer sset Master '3%-'"
# Mute sound
#bindsym XF86AudioMute exec "amixer set Master toggle"

# Increase sound volume key plus
#bindsym plus exec "amixer sset Master '3%'"
# Decrease sound volume key minus
#bindsym minus exec "amixer sset Master '3%-'"
# Mute sound
#bindsym F10 exec "amixer set Master toggle"
#------------------------------------------------------------------------------#

#       Pulseaudio control:
# Increase sound volume
#bindsym XF86AudioRaiseVolume exec --no-startup-id pactl set-sink-volume 0 +5% 
# Decrease sound volume
#bindsym XF86AudioLowerVolume exec --no-startup-id pactl set-sink-volume 0 -5% 
# Mute sound
#bindsym XF86AudioMute exec --no-startup-id pactl set-sink-mute 0 toggle

# Increase sound volume key plus
bindsym Ctrl+plus exec --no-startup-id pactl set-sink-volume 0 +5%
# Decrease sound volume key minus
bindsym Ctrl+minus exec --no-startup-id pactl set-sink-volume 0 -5%
# Mute sound
bindsym Ctrl+0 exec --no-startup-id pactl set-sink-mute 0 toggle
#:::::::::::::::::::::::: Multimedia control ::::::::::::::::::::::::::::::::::#

#       Media player control
#bindsym XF86AudioPlay exec "mpc toggle"
#bindsym XF86AudioStop exec "mpc stop"
#bindsym XF86AudioPrev exec "mpc prev"
#bindsym XF86AudioNext exec "mpc next"


#       Media player control key
bindsym $mod+Ctrl+p exec "mpc toggle"
bindsym $mod+Ctrl+s exec "mpc stop"
bindsym $mod+Ctrl+Left exec "mpc prev"
bindsym $mod+Ctrl+Right exec "mpc next"
#::::::::::::::::::::::::::::::: Launcher APP :::::::::::::::::::::::::::::::::#

#       Call web browser
bindsym $mod+F1 workspace $WS2; exec palemoon
bindsym $mod+Shift+F1 workspace $WS2; exec chromium

#       Call file manager
bindsym $mod+F2 workspace $WS3; exec thunar

#       Call text edit
bindsym $mod+F3 workspace $WS4; exec mousepad
bindsym $mod+Shift+F3 workspace $WS4; exec termite -e tmux

#       Call multimedia
bindsym $mod+F4 workspace $WS5; exec sonata

#       Call chat
bindsym $mod+F5 workspace $WS6; exec Franz

#       Call image edit
bindsym Shift+F4 workspace $WS7; exec inkscape
bindsym $mod+Shift+F8 workspace $WS7; exec gimp

#       Call tools settings
bindsym $mod+Shift+F5 workspace $WS9; exec gksudo imagewriter

bindsym $mod+F6 workspace $WS9; exec gksudo gparted
bindsym $mod+Shift+F6 workspace $WS9; exec gksudo lightdm-gtk-greeter-settings
bindsym Shift+F6 workspace $WS9; exec gksudo grub-customizer

bindsym $mod+F7 workspace $WS9; exec lxappearance
bindsym $mod+F8 workspace $WS9; exec pavucontrol

#   Call tools free workspace
bindsym $mod+n exec nitrogen
bindsym $mod+p exec xfce4-screenshooter


#:::::::::::::::::::::: Autostart app and daemons :::::::::::::::::::::::::::::#

#       Daemon
exec --no-startup-id thunar --daemon
#       Background
exec --no-startup-id nitrogen --restore
#       Pulseaudio
exec --no-startup-id start-pulseaudio-x11
#       Composite manager
exec --no-startup-id compton -cCGb      # xcompmgr -c -f -n
#       Number unlocker
exec --no-startup-id numlockx on
#       Update notifier Archlinux
exec --no-startup-id aarchup            # exec octopi-notifier
#       Music server MPD
exec --no-startup-id mpd
#       Clipboard
#exec --no-startup-id parcellite
#       Auto locker
exec xautolock -time 10 -locker i3lock-fancy
#       Conky
exec conky -d; sleep 1 && transset-df .5 -n Conky &
#       Screensaver
# exec --no-startup-id xscreensaver -nospalsh
#       Oneko
# exec oneko -rv -tofocus

# 	Xresources, xmodmap, start urxvt daemon
exec --no-startup-id "/usr/bin/xmodmap /home/<user>/.keymap"
exec --no-startup-id "/usr/bin/urxvtd -q -f -o"
exec --no-startup-id "/usr/bin/xrdb -merge /home/<user>/.Xresources"

CLICK TO VIEW

x

i3blocks.conf(raw, dl)

  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
# '####::'#######::'########::'##::::::::'#######:::'######::'##:::'##::'######::
# . ##::'##.... ##: ##.... ##: ##:::::::'##.... ##:'##... ##: ##::'##::'##... ##:
# : ##::..::::: ##: ##:::: ##: ##::::::: ##:::: ##: ##:::..:: ##:'##::: ##:::..::
# : ##:::'#######:: ########:: ##::::::: ##:::: ##: ##::::::: #####::::. ######::
# : ##:::...... ##: ##.... ##: ##::::::: ##:::: ##: ##::::::: ##. ##::::..... ##:
# : ##::'##:::: ##: ##:::: ##: ##::::::: ##:::: ##: ##::: ##: ##:. ##::'##::: ##:
# '####:. #######:: ########:: ########:. #######::. ######:: ##::. ##:. ######::
# ....:::.......:::........:::........:::.......::::......:::..::::..:::......:::

# align
# border
# color
# command
# full_text
# instance
# interval
# label
# min_width
# name
# separator
# separator_block_width
# short_text
# signal
# urgent

# Global properties
#
# The top properties below are applied to every block, but can be overridden.
# Each block command defaults to the script name to avoid boilerplate.
command=/usr/libexec/i3blocks/$BLOCK_NAME

full_text=
align=center
separator=false
separator_block_width=0
color=#e7dfd9
markup=pango

border_left=0
border_right=0
border_top=8
border_bottom=8
border=#253941

[focused window]
command=xtitle -s -r
interval=persist
color=#e7dfd9
border=#253941
border_right=3

[separator2]
full_text=<span background="#253941" foreground="#535353"></span>
markup=pango
border=#253941

[weather]
instance=3647651
command=/usr/lib/i3blocks/weather
interval=60
color=#000000
markup=pango
border=#535353
border_right=3

[separator1]
full_text=<span background="#535353" foreground="#a5876d"></span>
markup=pango
border=#535353

[disk-home]
label=
command=/usr/lib/i3blocks/disk $HOME
instance=/home/virus69
interval=30
color=#222222
markup=pango
border=#a5876d
border_right=3

[separator2]
full_text=<span background="#a5876d" foreground="#0d2935"></span>
markup=pango
border=#a5876d
align=center

#
[cpu_usage]
label=
command=/usr/lib/i3blocks/cpu_usage
interval=10
color=#999999
markup=pango
border=#0d2935
border_right=3

[separator1]
full_text=<span background="#0d2935" foreground="#535353"></span>
markup=pango
border=#0d2935

#
[temp]
label=
command=echo `sensors -A | grep -oP '^Core.+?  \+\K\d+' | awk '{k+=$1}END{print k/NR}'` °C
#command=/usr/lib/i3blocks/temp
interval=10
#color=#ffffff
markup=pango
border=#535353
border_right=3

[separator2]
full_text=<span background="#535353" foreground="#a5876d"></span>
markup=pango
border=#535353

[wifi]
label=
command=/usr/lib/i3blocks/wifi
instance=wlan0
interval=10
color=#222222
markup=pango
border=#a5876d
border_right=3

[separator1]
full_text=<span background="#a5876d" foreground="#0d2935"></span>
markup=pango
border=#a5876d

[volume]
label=
command=/usr/lib/i3blocks/volume
instance=Master
interval=3
signal=10
border_right=3
color=#999999
border=#0d2935


[separator2]
full_text=<span background="#0d2935" foreground="#7a5e4a"></span>
border=#0d2935
markup=pango

[time]
label=
command=date '+%I:%M %p'
interval=5
#color=#FFFFFF
border=#7a5e4a
border_right=3
markup=pango

[separator1]
full_text=<span background="#7a5e4a" foreground="#294a51"></span>
border=#7a5e4a
markup=pango

[update label]
full_text=:
color=#999999
separator=false
border=#294a51
border_right=3
markup=pango

[update]
command=sudo pacman -Qu | wc -l
color=#999999
#signal=12
interval=120
border=#294a51
border_right=3
markup=pango

[separator1]
full_text=<span background="#294a51ff" foreground="#c6a78a"></span>
border=#294a51
markup=pango

[mediaplayer]
label=:
command=/usr/lib/i3blocks/mediaplayer
instance=mpd
interval=5
signal=10
color=#294a51
border=#c6a78a
border_right=3
markup=pango

[separator1]
full_text=<span background="#c6a78a" foreground="#c6a78a"></span>
border=#c6a78a
markup=pango

[mpd]
command=/usr/lib/i3blocks/i3blocks-mpd
interval=5
signal=10
color=#1A1B1C
border=#c6a78a
border_right=3
markup=pango

[separator1]
full_text=<span background="#c6a78a" foreground="#c6a78a"></span>
border=#c6a78a
markup=pango

#::::::::::::::: Desactivated ::::::::::::::::#

#[uptime_label]
#label=
#command=/usr/lib/i3blocks/uptime
#interval=60
#border=#543154

#[separator]
#full_text=〈
#color=#f58957

#[memory]
#label=⚅
#command=/usr/lib/i3blocks/memory
#instance=mem
#interval=30
#border=#556072

#[separator]
#full_text=〈
#color=#f58957

#[time]
#label= 
#command=date '+%a:%d/%m/%y'
#interval=5
#border=#70774e



#[music]
#label= :
#command=mpc current
#color=#f58957
#interval=20


#[dunst]
#command=/usr/lib/i3blocks/notify
#signal=12

#[host]
#label=:
#command=uname -r
#color=#84c800
#interval=once

#[wireless]
#label=:
#command=[[ -z "(iwgetid -r)" ]] || echo "$(iwgetid -r)"
#interval=2

#######################################################

#[separator1]
#full_text=<span background="#1a253a" foreground="#3c4a59"></span>
#border=#1a253a
#markup=pango

#[upload]
#label=
#command=~/.config/i3/scripts/bandwidth.sh tx
#min_width=0000 kB/s
#align=left
#interval=1 # IMPORTANT
#border=#3c4a59
#markup=pango

#[separator2]
#full_text=<span background="#3c4a59" foreground="#1a253a"></span>
#border=#3c4a59
#markup=pango

#[download]
#label=
#command=~/.config/i3/scripts/bandwidth.sh rx
#min_width=0000 kB/s
#align=left
#interval=1 # IMPORTANT
#border=#1a253a
#markup=pango
 

x

.Xresources(raw, dl)

  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
! URXVT-CONFIG
!------------------------------------------------
!Xft.dpi:                    96
!Xft.antialias:              true
!Xft.rgba:                   rgb
!Xft.hinting:                true
!Xft.hintstyle:              hintslight

URxvt.buffered:         true
URxvt.font:             xft:xos4 Terminess Powerline:style=Regular:pixelsize=10
URxvt.boldFont:         xft:xos4 Terminess Powerline:style=Bold:pixelsize=11
!URxvt.letterSpace: 	-4
URxvt*scrollBar:                      	false
URxvt*mouseWheelScrollPage:           	true
URxvt*cursorBlink:                    	true
URxvt.geometry: 		      	        95x55+0+0
URxvt*depth: 				            32
URxvt.intensityStyles:			        true
URxvt.fading: 				            15

! EXTENSIONS
!-------------------------------------------------
URxvt*perl-lib:        			/usr/lib/urxvt/perl/
URxvt*perl-ext-common: 			default,matcher,searchable-scrollback
URxvt.cutchars: 			"()*,<>[]{}|''"
*URxvt.perl-ext-common:		osc-xterm-clipboard

! URXVT COPY PASTE SHORTCUTS
!------------------------------------------------

URxvt.keysym.M-c:                     	perl:clipboard:copy
URxvt.keysym.M-v:                     	perl:clipboard:pasteq

! URXVT FULLSCREEN TOGGLE
!------------------------------------------------

URxvt.keysym.F11:                       perl:fullscreen:switch
URxvt.perl-ext-common: 			default,matcher,vtwheel
URxvt.url-launcher: 			/usr/bin/palemoon
URxvt.matcher.button: 			1

! XTERM-CONFIG
!------------------------------------------------

! Fonts:
Uxterm*faceName: Terminess Powerline
Uxterm*faceSize:	8

! Configuración local
UXTerm*locale: 	true

!Adjust line spacing
UXTerm*scaleHeight: 1.01

! Shell entrada por defecto...
UXTerm*loginshell: true

! Enable bell urgent
Uxterm*bellIsUrgent: true

! Fix the 'Alt' key
UXTerm*metaSendsEscape: true

! scrollback...
UXTerm*savelines: 10000

! Doble click selección de URL...
UXTerm*charClass: 33:48,36-47:48,58-59:48,61:48,63-64:48,95:48,126:48

! Geometra de ventana...
Uxterm*VT100.geometry: 94x28+0+0


! URXVT + XTERM COLOR
!------------------------------------------------

!BLACK
#define _color0        #282a2e
#define _color8        #060d10

!RED
#define _color1        #4b4b4b
#define _color9        #0d2935

!GREEN
#define _color2        #7d7d7d
#define _color10       #294a51

!YELLOW
#define _color3        #7a5e4a
#define _color11       #56615b

!BLUE
#define _color4        #313f4b
#define _color12       #7e7860

!MAGENTA
#define _color5        #2a3737
#define _color13       #a5876d

!CYAN
#define _color6        #323733
#define _color14       #c6a78a

!WHITE
#define _color7        #676751
#define _color15       #d3bca8

!FMT Include, StatusLine, ErrorMsg
#define _colorBD       #ffffff
#define _colorUL       #355d5d
#define _colorIT       #999999

!TXT Normal, Normal, Cursor
#define _foreground    #e7dfd9
#define _background    #091416
#define _cursorColor   #56615b


URxvt*color0         : _color0
URxvt*color1         : _color1
URxvt*color2         : _color2
URxvt*color3         : _color3
URxvt*color4         : _color4
URxvt*color5         : _color5
URxvt*color6         : _color6
URxvt*color7         : _color7
URxvt*color8         : _color8
URxvt*color9         : _color9
URxvt*color10        : _color10
URxvt*color11        : _color11
URxvt*color12        : _color12
URxvt*color13        : _color13
URxvt*color14        : _color14
URxvt*color15        : _color15
URxvt*colorBD        : _colorBD
URxvt*colorIT        : _colorIT
URxvt*colorUL        : _colorUL
URxvt*foreground     : _foreground
URxvt*background     : [90]#091416
URxvt*cursorColor    : _cursorColor

!rgba:0000/0000/0200/c800 

UXTerm*color0         : _color0
UXTerm*color1         : _color1
UXTerm*color2         : _color2
UXTerm*color3         : _color3
UXTerm*color4         : _color4
UXTerm*color5         : _color5
UXTerm*color6         : _color6
UXTerm*color7         : _color7
UXTerm*color8         : _color8
UXTerm*color9         : _color9
UXTerm*color10        : _color10
UXTerm*color11        : _color11
UXTerm*color12        : _color12
UXTerm*color13        : _color13
UXTerm*color14        : _color14
UXTerm*color15        : _color15
UXTerm*colorBD        : _colorBD
UXTerm*colorIT        : _colorIT
UXTerm*colorUL        : _colorUL
UXTerm*foreground     : _foreground
UXTerm*background     : _background
UXTerm*cursorColor    : _cursorColor

! ROFI
!---------------------------------

rofi.font		: terminal 9

!			  		   'bg'	     'fg'    'bgalt'  'hlbg'      'hlf'
rofi.color-normal	: #091416,  #EEEEEE, #294a51, #a5876d,	#000000 
rofi.color-urgent	: #011015,  #000000, #000000, #d094e4,	#000000 
rofi.color-active	: #011015,  #5f819d, #000000, #5f819d,	#000000	

!			'background' 'border'
rofi.color-window	: #0d2935,   #000000

! XPDF
!-------------------------------------
xpdf*antialias		: yes
xpdf*background		: white
xpdf*enableFreetype	: yes
xpdf*foreground		: black
xpdf*urlCommand		: chromium %s
 

x

dunstrc(raw, dl)

 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
[global] # Configuración global
    font = "Monospace 8"
    # Permitir etiquetas html
    allow_markup = yes
    # El formato de las notificaciones,
    # %s - sumario
    # %p - progreso
    # %b - cuerpo del mensaje
    format = "<b>%s %p</b>\n%b"
    # Ordenar mensajes por prioridad
    sort = yes
    # Mostrar cuantas not. hay ocultas
    indicate_hidden = true
    idle_threshold = 0
    # Tamaño de  la notificación
    geometry = "225x5-12+30"
    alignment = center
    show_age_threshold = 60
    sticky_history = yes
    follow = mouse
    word_wrap = yes
    separator_height = 2
    padding = 10
    horizontal_padding = 10
    separator_color = frame
    startup_notification = true

# Diseño del borde de la notificación
[frame]
    width = 3
    color = "#d3bca8"

# Atajos de teclado
[shortcuts]
    close = ctrl+space
    close_all = ctrl+shift+space
    history = ctrl+grave
    context = ctrl+shift+period

# Estilo para las notificaciones de baja prioridad
[urgency_low]
    background = "#0a161b"
    foreground = "#fdfdfd"
    timeout = 5

# Estilo para las notificaciones de prioridad normal
[urgency_normal]
    background = "#0d2935"
    foreground = "#c3c3c3"
    timeout = 10

# Estilo para las notificaciones de alta prioridad
[urgency_critical]
    background = "#294a51"
    foreground = "#fdfdfd"
    timeout = 0

# Se pueden personalizar notificciones en función de su texto
[test]
    summary = "*test*"
    background="#56615b"

# Y también se personalizan por aplicación
[signed_on]
    appname = Pidgin
    summary = "*signed on*"
    urgency = low
 

x

Notes

My setup
i3-gaps
i3blocks-gaps
shell: urxvt
notify: dunst

conky: http://dotshare.it/dots/1456/
ncmpcpp: http://dotshare.it/dots/1457/
prompt bash: http://dotshare.it/dots/1459/

Wallpaper: http://imgur.com/a/rebPM

Comments

Nakurusa said about 6 years ago

Hey
Your i3blocks.conf is giving me a exit 1 error. Why is that?

Nakurusa said about 6 years ago

NVM fixed it. Didnt noticed i had iblocks and needed i3blocks-gaps.

virus69 said about 6 years ago

Hello!
Sorry to answer late, is that I almost did not enter this site!
I’m glad you could solve the problem!
If it is true that i3blocks and i3blocks-gaps are not compatible!