summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Christian Pohle2017-05-02 08:10:10 +0200
committerMax Christian Pohle2017-05-02 08:10:10 +0200
commit5011ed6adc06ba6e3a55953e25a36c9105bed171 (patch)
tree0a20d0c0bb0c1ee68e9c75dd4fa4bd5f743a5791
parent9a6771b513520222e6c967dbadd982021f71235e (diff)
downloadi3-5011ed6adc06ba6e3a55953e25a36c9105bed171.tar.bz2
i3-5011ed6adc06ba6e3a55953e25a36c9105bed171.zip
White version with several usability improvements
-rw-r--r--compton.conf129
-rw-r--r--config104
-rw-r--r--i3status.conf10
3 files changed, 130 insertions, 113 deletions
diff --git a/compton.conf b/compton.conf
index 242f000..756ccbd 100644
--- a/compton.conf
+++ b/compton.conf
@@ -1,91 +1,64 @@
1backend = "xrender";
2#backend = "glx";
3paint-on-overlay = true;
4glx-no-stencil = true;
5# glx-no-rebind-pixmap = true; # does not work! definitelly!
6# vsync = "opengl-swc";
7vsync = "drm";
8# vsync-use-glfinish = true
9
10# These are important. The first one enables the opengl backend. The last one is the vsync method. Depending on the driver you might need to use a different method.
11# The other options are smaller performance tweaks that work well in most cases.
12# You can find the rest of the options here: https://github.com/chjj/compton/wiki/perf-guide, and here: https://github.com/chjj/compton/wiki/vsync-guide
13
14
1# Shadow 15# Shadow
2shadow = true; # Enabled client-side shadows on windows. 16#shadow = true; # Enabled client-side shadows on windows.
3no-dock-shadow = true; # Avoid drawing shadows on dock/panel windows. 17shadow = false; # Enabled client-side shadows on windows.
4no-dnd-shadow = true; # Don't draw shadows on DND windows. 18#no-dock-shadow = true; # Avoid drawing shadows on dock/panel windows.
5clear-shadow = true; # Zero the part of the shadow's mask behind the 19#no-dnd-shadow = true; # Don't draw shadows on DND windows.
6 # window. Fix some weirdness with ARGB windows. 20# clear-shadow = true; # Zero the part of the shadow's mask behind the window (experimental).
7shadow-radius = 7; # The blur radius for shadows. (default 12) 21shadow-radius = 7; # The blur radius for shadows. (default 12)
8shadow-offset-x = -7; # The left offset for shadows. (default -15) 22shadow-offset-x = -7; # The left offset for shadows. (default -15)
9shadow-offset-y = -7; # The top offset for shadows. (default -15) 23shadow-offset-y = -7; # The top offset for shadows. (default -15)
10shadow-opacity = 0.7; # The translucency for shadows. (default .75) 24shadow-exclude = [
11# shadow-red = 0.0; # Red color value of shadow. (0.0 - 1.0, defaults to 0) 25 "! name~=''",
12# shadow-green = 0.0; # Green color value of shadow. (0.0 - 1.0, defaults to 0) 26 "n:e:Notification",
13# shadow-blue = 0.0; # Blue color value of shadow. (0.0 - 1.0, defaults to 0) 27 "n:e:Plank",
14shadow-exclude = [ "n:e:Notification" ]; # Exclude conditions for shadows. 28 "n:e:Docky",
15# shadow-exclude = "n:e:Notification"; 29 "g:e:Synapse",
16shadow-ignore-shaped = true; # Avoid drawing shadow on all shaped windows 30 "g:e:Kupfer",
17 # (see also: --detect-rounded-corners) 31 "g:e:Conky",
32 "n:w:*Firefox*",
33 "n:w:*Chrome*",
34 "n:w:*Chromium*",
35 "class_g ?= 'Notify-osd'",
36 "class_g ?= 'Cairo-dock'",
37 "class_g ?= 'Xfce4-notifyd'",
38 "class_g ?= 'Xfce4-power-manager'",
39 "x = 0 && y = 0 && override_redirect = true"
40];
18 41
19# Opacity 42# The shadow exclude options are helpful if you have shadows enabled. Due to the way compton draws its shadows, certain applications will have visual glitches
20menu-opacity = 0.9; # The opacity for menus. (default 1.0) 43# (most applications are fine, only apps that do weird things with xshapes or argb are affected).
21inactive-opacity = 0.9; # Default opacity of inactive windows. (0.0 - 1.0) 44# This list includes all the affected apps I found in my testing. The "! name~=''" part excludes shadows on any "Unknown" windows, this prevents a visual glitch with the XFWM alt tab switcher.
22# active-opacity = 0.8; # Default opacity for active windows. (0.0 - 1.0)
23# frame-opacity = 0.8; # Opacity of window titlebars and borders. (0.1 - 1.0)
24# inactive-opacity-override = true; # Let inactive opacity set by 'inactive-opacity' overrides
25 # value of _NET_WM_OPACITY. Bad choice.
26alpha-step = 0.06; # XRender backend: Step size for alpha pictures. Increasing
27 # it may result in less X resource usage,
28 # Yet fading may look bad.
29# inactive-dim = 0.2; # Dim inactive windows. (0.0 - 1.0)
30# inactive-dim-fixed = true; # Do not let dimness adjust based on window opacity.
31# blur-background = true; # Blur background of transparent windows.
32 # Bad performance with X Render backend.
33 # GLX backend is preferred.
34# blur-background-frame = true; # Blur background of opaque windows with transparent
35 # frames as well.
36blur-background-fixed = false; # Do not let blur radius adjust based on window opacity.
37blur-background-exclude = [ "window_type = 'dock'", "window_type = 'desktop'" ];
38 # Exclude conditions for background blur.
39 45
40# Fading 46# Fading
41fading = true; # Fade windows during opacity changes. 47# fading = true; # Fade windows during opacity changes.
42# fade-delta = 30; # The time between steps in a fade in milliseconds. (default 10). 48fade-delta = 8; # The time between steps in a fade in milliseconds. (default 10).
43fade-in-step = 0.03; # Opacity change between steps while fading in. (default 0.028). 49fade-in-step = 0.03; # Opacity change between steps while fading in. (default 0.028).
44fade-out-step = 0.03; # Opacity change between steps while fading out. (default 0.03). 50fade-out-step = 0.03; # Opacity change between steps while fading out. (default 0.03).
45# no-fading-openclose = true; # Avoid fade windows in/out when opening/closing. 51#no-fading-openclose = true; # Fade windows in/out when opening/closing
46fade-exclude = [ ]; # Exclude conditions for fading.
47
48# Other
49backend = "xrender" # Backend to use: "xrender" or "glx". GLX backend is typically
50 # much faster but depends on a sane driver.
51mark-wmwin-focused = true; # Try to detect WM windows and mark them as active.
52mark-ovredir-focused = true; # Mark all non-WM but override-redirect windows active (e.g. menus).
53use-ewmh-active-win = false; # Use EWMH _NET_WM_ACTIVE_WINDOW to determine which window is focused
54 # instead of using FocusIn/Out events. Usually more reliable but
55 # depends on a EWMH-compliant WM.
56detect-rounded-corners = true; # Detect rounded corners and treat them as rectangular when --shadow-ignore-shaped is on.
57detect-client-opacity = true; # Detect _NET_WM_OPACITY on client windows, useful for window
58 # managers not passing _NET_WM_OPACITY of client windows to frame
59 # windows.
60refresh-rate = 0; # For --sw-opti: Specify refresh rate of the screen. 0 for auto.
61vsync = "none"; # "none", "drm", "opengl", "opengl-oml", "opengl-swc", "opengl-mswc"
62 # See man page for more details.
63dbe = false; # Enable DBE painting mode. Rarely needed.
64paint-on-overlay = true; # Painting on X Composite overlay window. Recommended.
65sw-opti = false; # Limit compton to repaint at most once every 1 / refresh_rate.
66 # Incompatible with certain VSync methods.
67unredir-if-possible = false; # Unredirect all windows if a full-screen opaque window is
68 # detected, to maximize performance for full-screen windows.
69focus-exclude = [ ]; # A list of conditions of windows that should always be considered
70 # focused.
71detect-transient = true; # Use WM_TRANSIENT_FOR to group windows, and consider windows in
72 # the same group focused at the same time.
73detect-client-leader = true; # Use WM_CLIENT_LEADER to group windows.
74invert-color-include = [ ]; # Conditions for windows to be painted with inverted color.
75 52
76# GLX backend # GLX backend fine-tune options. See man page for more info. 53detect-client-opacity = true; # This prevents opacity being ignored for some apps. For example without this enabled my xfce4-notifyd is 100% opacity no matter what.
77# glx-no-stencil = true; # Recommended.
78glx-copy-from-front = false; # Useful with --glx-swap-method,
79# glx-use-copysubbuffermesa = true; # Recommended if it works. Breaks VSync.
80# glx-no-rebind-pixmap = true; # Recommended if it works.
81glx-swap-method = "undefined"; # See man page.
82 54
83# Window type settings 55# Window type settings
84wintypes: 56wintypes:
85{ 57{
86 tooltip = { fade = true; shadow = false; opacity = 0.75; focus = true; }; 58 tooltip = { fade = true; shadow = true; };
87 # fade: Fade the particular type of windows.
88 # shadow: Give those windows shadow
89 # opacity: Default opacity for the type of windows.
90 # focus: Whether to always consider windows of this type focused.
91}; 59};
60
61#opacity-rule = ["90:class_g = 'URxvt'", "90:class_g = ''" ];
62
63
64# opacity-rule = ["90:class_g = 'xfce4-terminal'", "90:class_g = 'Xfce4-terminal'", "90:class_g = 'termite'", "90:class_g = 'i3bar'", "90:class_g = 'i3-frame'" ];
diff --git a/config b/config
index 0a3cbde..67b177b 100644
--- a/config
+++ b/config
@@ -18,7 +18,8 @@ set $mod Mod4
18# This font is widely installed, provides lots of unicode glyphs, right-to-left 18# This font is widely installed, provides lots of unicode glyphs, right-to-left
19# text rendering and scalability on retina/hidpi displays (thanks to pango). 19# text rendering and scalability on retina/hidpi displays (thanks to pango).
20# font pango:Neris SemiBold 10 20# font pango:Neris SemiBold 10
21font pango:Source Code Pro Bold 11 21font pango:Source Code Pro SemiBold 11
22# font pango:Liberation Sans Mono Bold 11
22# font pango:DejaVu Sans Mono 12 23# font pango:DejaVu Sans Mono 12
23 24
24# Before i3 v4.8, we used to recommend this one as the default: 25# Before i3 v4.8, we used to recommend this one as the default:
@@ -36,6 +37,8 @@ floating_modifier $mod
36bindsym $mod+Return exec xfce4-appfinder 37bindsym $mod+Return exec xfce4-appfinder
37bindsym Mod1+F2 exec --no-startup-id rofi -show run -bg #222222 -fg #888888 -hlbg #285577 -hlfg #ffffff 38bindsym Mod1+F2 exec --no-startup-id rofi -show run -bg #222222 -fg #888888 -hlbg #285577 -hlfg #ffffff
38bindsym $mod+t exec xfce4-terminal 39bindsym $mod+t exec xfce4-terminal
40# bindsym $mod+t exec termite
41# bindsym $mod+t exec urxvt
39bindsym $mod+e exec thunar 42bindsym $mod+e exec thunar
40 43
41# kill focused window 44# kill focused window
@@ -58,6 +61,8 @@ bindsym $mod+Down focus down ; exec pkill -SIGRTMIN+11 i3blocks
58bindsym $mod+Up focus up ; exec pkill -SIGRTMIN+11 i3blocks 61bindsym $mod+Up focus up ; exec pkill -SIGRTMIN+11 i3blocks
59bindsym $mod+Right focus right ; exec pkill -SIGRTMIN+11 i3blocks 62bindsym $mod+Right focus right ; exec pkill -SIGRTMIN+11 i3blocks
60 63
64bindsym Mod1+Tab focus right
65bindsym Mod1+Shift+Tab focus left
61 66
62 67
63# alternatively, you can use the cursor keys: 68# alternatively, you can use the cursor keys:
@@ -104,8 +109,8 @@ bindsym $mod+5 workspace 5
104bindsym $mod+6 workspace 6 109bindsym $mod+6 workspace 6
105bindsym $mod+7 workspace 7 110bindsym $mod+7 workspace 7
106bindsym $mod+8 workspace 8 111bindsym $mod+8 workspace 8
107bindsym $mod+9 workspace 9 112bindsym $mod+9 workspace music
108bindsym $mod+0 workspace 10 113bindsym $mod+0 workspace background
109 114
110# move focused container to workspace 115# move focused container to workspace
111bindsym $mod+Shift+1 move container to workspace 1 116bindsym $mod+Shift+1 move container to workspace 1
@@ -116,8 +121,20 @@ bindsym $mod+Shift+5 move container to workspace 5
116bindsym $mod+Shift+6 move container to workspace 6 121bindsym $mod+Shift+6 move container to workspace 6
117bindsym $mod+Shift+7 move container to workspace 7 122bindsym $mod+Shift+7 move container to workspace 7
118bindsym $mod+Shift+8 move container to workspace 8 123bindsym $mod+Shift+8 move container to workspace 8
119bindsym $mod+Shift+9 move container to workspace 9 124bindsym $mod+Shift+9 move container to workspace music
120bindsym $mod+Shift+0 move container to workspace 10 125bindsym $mod+Shift+0 move container to workspace background
126
127workspace 1 output VGA1
128workspace 2 output VGA1
129workspace 3 output VGA1
130workspace 4 output VGA1
131workspace 5 output VGA1
132workspace 6 output HDMI1
133workspace 7 output HDMI1
134workspace 8 output HDMI1
135workspace "music" output HDMI1
136workspace "background" output HDMI1
137
121 138
122# reload the configuration file 139# reload the configuration file
123bindsym $mod+Shift+c reload 140bindsym $mod+Shift+c reload
@@ -130,17 +147,20 @@ bindsym $mod+Shift+e exec "i3-nagbar -t warning -m 'You pressed the exit shortcu
130bindsym $mod+m move scratchpad 147bindsym $mod+m move scratchpad
131bindsym $mod+Shift+m scratchpad show ; resize set 1920 920 ; move position center 148bindsym $mod+Shift+m scratchpad show ; resize set 1920 920 ; move position center
132 149
133for_window [class="^.*"] border normal 4 150for_window [class="^.*"] border normal 2
134for_window [title="^.*Thunderbird"] border pixel 0 151for_window [title="^.*Thunderbird"] border pixel 0
152for_window [title="^.*Chromium"] border pixel 0
153# for_window [title="^.*\|"] border pixel 4
135for_window [title="^HexChat.*"] border pixel 0 154for_window [title="^HexChat.*"] border pixel 0
136for_window [title="^.*"] exec pkill -SIGRTMIN+11 i3blocks 155for_window [title="^.*"] exec pkill -SIGRTMIN+11 i3blocks
137for_window [title="^.*"] exec pkill -SIGRTMIN+11 i3blocks 156for_window [title="^.*"] exec pkill -SIGRTMIN+11 i3blocks
138for_window [title="cairo-dock"] floating enable ; border none 157for_window [title="cairo-dock"] floating enable ; border none
139for_window[class="Plank"] floating enable,move absolute center 158for_window[class="Plank"] floating enable,move absolute center
140 159
141 160for_window [class=".*"] title_format "┋ %title"
142 161# for_window [con_id="__focused__"] title_format "<u>%title</u>"
143smart_borders on 162# hide_edge_borders both
163# smart_borders on
144# gaps inner 5 164# gaps inner 5
145# gaps outer 5 165# gaps outer 5
146 166
@@ -152,16 +172,30 @@ bar {
152 status_command i3status --config ~/.config/i3/i3status.conf 172 status_command i3status --config ~/.config/i3/i3status.conf
153 # status_command i3blocks 173 # status_command i3blocks
154 colors { 174 colors {
155 background #2a3448 175 # background #2a3448
156 statusline #ffffff 176 # statusline #ffffff
177 background #ffffff
178 statusline #000000
179 focused_workspace #ffffff #ffffff #000000
180 active_workspace #ffffff #ffffff #888888
181 inactive_workspace #ffffff #ffffff #888888
182 urgent_workspace #2f343a #900000 #ffffff
183 binding_mode #2f343a #900000 #ffffff
157 } 184 }
158 # tray_output VGA1 185 # tray_output VGA1
159 # tray_padding 4 186 # output HDMI1
160 # font pango:DejaVu Sans Mono 12 187 # tray_output HDMI1
161 # separator_symbol "┋" 188 tray_padding 2
189 #font pango:DejaVu Sans Mono 11
190 #font pango:DejaVu Sans Mono 11
191 #font -misc-fixed-medium-r-normal--13-120-75-75-C-70-iso10646-1
192 # font pango:DejaVu Sans Mono, Icons 8
193 # font pango:DejaVu Sans Mono, Awesome 8
194 separator_symbol "┋"
162 position bottom 195 position bottom
163 # output VGA1 196 # output VGA1
164 binding_mode_indicator yes 197 binding_mode_indicator yes
198 # strip_workspace_numbers yes
165} 199}
166 200
167 201
@@ -169,13 +203,12 @@ bar {
169# client.unfocused #000000 #061229 #ffffff #ff0000 #000000 203# client.unfocused #000000 #061229 #ffffff #ff0000 #000000
170#colors: border backgr. text indicator 204#colors: border backgr. text indicator
171 205
172client.focused #2a3448 #5299bf #2a3448 #f0a000 206client.focused #ffffff #ffffff #000000 #000000
173client.focused_inactive #061229 #061229 #ffffff #ffffff 207client.focused_inactive #ffffff #ffffff #888888 #ffffff
174client.unfocused #061229 #061229 #5299bf #ffffff 208client.unfocused #ffffff #ffffff #888888 #ffffff
175client.urgent #2a3448 #900000 #5299bf #ffffff 209client.urgent #2a3448 #900000 #5299bf #ffffff
176client.background #000000 #000000 #000000 #ffffff 210client.background #000000 #000000 #000000 #ffffff
177 211
178# hide_edge_borders both
179 212
180bindsym $mod+F2 exec i3-input -F 'rename workspace to "%s"' -P 'New name: ' 213bindsym $mod+F2 exec i3-input -F 'rename workspace to "%s"' -P 'New name: '
181bindsym Control+Mod1+Left workspace prev_on_output 214bindsym Control+Mod1+Left workspace prev_on_output
@@ -222,16 +255,16 @@ mode "resize" {
222 # Pressing right will grow the window’s width. 255 # Pressing right will grow the window’s width.
223 # Pressing up will shrink the window’s height. 256 # Pressing up will shrink the window’s height.
224 # Pressing down will grow the window’s height. 257 # Pressing down will grow the window’s height.
225 bindsym $mod+h resize shrink width 10 px or 10 ppt 258 bindsym $mod+h resize shrink width 1 px or 1 ppt
226 bindsym $mod+j resize grow height 10 px or 10 ppt 259 bindsym $mod+j resize grow height 4 px or 4 ppt
227 bindsym $mod+k resize shrink height 10 px or 10 ppt 260 bindsym $mod+k resize shrink height 4 px or 4 ppt
228 bindsym $mod+l resize grow width 10 px or 10 ppt 261 bindsym $mod+l resize grow width 1 px or 1 ppt
229 262
230 # same bindings, but for the arrow keys 263 # same bindings, but for the arrow keys
231 bindsym Left resize shrink width 10 px or 10 ppt 264 bindsym Left resize shrink width 1 px or 1 ppt
232 bindsym Down resize grow height 10 px or 10 ppt 265 bindsym Up resize grow height 4 px or 4 ppt
233 bindsym Up resize shrink height 10 px or 10 ppt 266 bindsym Down resize shrink height 4 px or 4 ppt
234 bindsym Right resize grow width 10 px or 10 ppt 267 bindsym Right resize grow width 1 px or 1 ppt
235 268
236 # back to normal: Enter or Escape 269 # back to normal: Enter or Escape
237 bindsym Return mode "default" 270 bindsym Return mode "default"
@@ -242,13 +275,22 @@ mode "resize" {
242 275
243 276
244 277
245exec --no-startup-id dbus-launch gnome-settings-daemon 278assign [class="^Thunderbird$"] → background
246exec --no-startup-id dbus-launch nm-applet
247exec --no-startup-id dbus-launch nextcloud
248 279
249exec --no-startup-id setxkbmap -option caps:escape 280exec --no-startup-id setxkbmap -option caps:escape
250exec --no-startup-id xset r rate 330 40 281exec --no-startup-id xset r rate 330 40
251 282
283exec --no-startup-id dbus-launch gnome-settings-daemon
284exec --no-startup-id dbus-launch nm-applet
285
286# exec xrandr --output HDMI1 --fb 3270x1080 --scale 1.05468x1.05468
287# exec xrandr --output HDMI1 --fb 3270x1080 --right-of VGA1 --panning 1350x1080+1920+0 --scale 1.05468x1.05468
288exec /usr/bin/xrandr-reset.sh
289
252# start compositor... 290# start compositor...
253exec --no-startup-id compton -bc 291exec --no-startup-id dbus-launch nitrogen --restore
254exec --no-startup-id nitrogen --restore 292exec --no-startup-id dbus-launch compton -b --config /home/max/.config/i3/compton.conf
293exec --no-startup-id dbus-launch setsid udiskie -2 -s
294exec --no-startup-id dbus-launch nextcloud
295
296
diff --git a/i3status.conf b/i3status.conf
index fd093ed..0f8fd6f 100644
--- a/i3status.conf
+++ b/i3status.conf
@@ -8,9 +8,11 @@
8 8
9general { 9general {
10 colors = true 10 colors = true
11 color_good = "#88ff88" 11 #color_good = "#88ff88"
12 color_bad = "#880000" 12 #color_bad = "#880000"
13 interval = 5 13 color_good = "#00aa00"
14 color_bad = "#aa0000"
15 interval = 1
14 output_format = i3bar 16 output_format = i3bar
15} 17}
16 18
@@ -80,7 +82,7 @@ run_watch VPN {
80} 82}
81 83
82tztime local { 84tztime local {
83 format = "%Y-%m-%d %H:%M:%S" 85 format = "%Y-%m-%d %H:%M"
84} 86}
85 87
86load { 88load {
..