Merge branch 'master' of github.com:id101010/LinuxDotFiles
This commit is contained in:
@@ -247,7 +247,7 @@ for_window [class="firefox"] border none
|
|||||||
#############################################
|
#############################################
|
||||||
|
|
||||||
# composite manager
|
# composite manager
|
||||||
exec --no-startup-id compton -b --config ~/.config/compton.conf
|
exec --no-startup-id picom -b --config ~/.config/picom.conf
|
||||||
# less eye pain
|
# less eye pain
|
||||||
#exec --no-startup-id redshift -l 46:7
|
#exec --no-startup-id redshift -l 46:7
|
||||||
# no beep!
|
# no beep!
|
||||||
|
|||||||
@@ -1,21 +1,49 @@
|
|||||||
background #202020
|
# gruvbox dark by morhetz, https://github.com/morhetz/gruvbox
|
||||||
foreground #d0d0d0
|
# This work is licensed under the terms of the MIT license.
|
||||||
cursor #d0d0d0
|
# For a copy, see https://opensource.org/licenses/MIT.
|
||||||
selection_background #303030
|
|
||||||
color0 #151515
|
background #282828
|
||||||
color8 #505050
|
foreground #ebdbb2
|
||||||
color1 #ac4142
|
|
||||||
color9 #ac4142
|
cursor #928374
|
||||||
color2 #7e8d50
|
|
||||||
color10 #7e8d50
|
selection_foreground #928374
|
||||||
color3 #e5b566
|
selection_background #3c3836
|
||||||
color11 #e5b566
|
|
||||||
color4 #6c99ba
|
color0 #282828
|
||||||
color12 #6c99ba
|
color8 #928374
|
||||||
color5 #9e4e85
|
|
||||||
color13 #9e4e85
|
# red
|
||||||
color6 #7dd5cf
|
color1 #cc241d
|
||||||
color14 #7dd5cf
|
# light red
|
||||||
color7 #d0d0d0
|
color9 #fb4934
|
||||||
color15 #f5f5f5
|
|
||||||
selection_foreground #202020
|
# green
|
||||||
|
color2 #98971a
|
||||||
|
# light green
|
||||||
|
color10 #b8bb26
|
||||||
|
|
||||||
|
# yellow
|
||||||
|
color3 #d79921
|
||||||
|
# light yellow
|
||||||
|
color11 #fabd2d
|
||||||
|
|
||||||
|
# blue
|
||||||
|
color4 #458588
|
||||||
|
# light blue
|
||||||
|
color12 #83a598
|
||||||
|
|
||||||
|
# magenta
|
||||||
|
color5 #b16286
|
||||||
|
# light magenta
|
||||||
|
color13 #d3869b
|
||||||
|
|
||||||
|
# cyan
|
||||||
|
color6 #689d6a
|
||||||
|
# lighy cyan
|
||||||
|
color14 #8ec07c
|
||||||
|
|
||||||
|
# light gray
|
||||||
|
color7 #a89984
|
||||||
|
# dark gray
|
||||||
|
color15 #928374
|
||||||
|
|||||||
@@ -22,44 +22,27 @@ backend = "glx";
|
|||||||
#################################
|
#################################
|
||||||
glx-no-stencil = true;
|
glx-no-stencil = true;
|
||||||
glx-copy-from-front = false;
|
glx-copy-from-front = false;
|
||||||
glx-swap-method = "undefined";
|
|
||||||
# Set VSync method. VSync methods currently available:
|
|
||||||
# none: No VSync
|
|
||||||
# drm: VSync with DRM_IOCTL_WAIT_VBLANK. May only work on some drivers.
|
|
||||||
# opengl: Try to VSync with SGI_video_sync OpenGL extension. Only work on some drivers.
|
|
||||||
# opengl-oml: Try to VSync with OML_sync_control OpenGL extension. Only work on some drivers.
|
|
||||||
# opengl-swc: Try to VSync with SGI_swap_control OpenGL extension. Only work on some drivers. Works only with GLX backend. Known to be most effective on many drivers. Does not actually control paint timing, only buffer swap is affected, so it doesn’t have the effect of --sw-opti unlike other methods. Experimental.
|
|
||||||
# opengl-mswc: Try to VSync with MESA_swap_control OpenGL extension. Basically the same as opengl-swc above, except the extension we use.
|
|
||||||
# (Note some VSync methods may not be enabled at compile time.)
|
|
||||||
# NOTE! Try using "none" first and using video driver configuration
|
|
||||||
# to handle vsync properly before resorting to a compositor!
|
|
||||||
#vsync = "opengl-swc";
|
|
||||||
vsync = "none";
|
|
||||||
# Unredirect all windows if a full-screen opaque window is detected, to maximize performance for full-screen windows, like games.
|
|
||||||
# Known to cause flickering when redirecting/unredirecting windows.
|
|
||||||
# paint-on-overlay may make the flickering less obvious.
|
|
||||||
unredir-if-possible = true;
|
unredir-if-possible = true;
|
||||||
|
use-damage = true;
|
||||||
|
vsync = true;
|
||||||
|
|
||||||
#################################
|
#################################
|
||||||
#
|
#
|
||||||
# Opacity
|
# Opacity
|
||||||
#
|
#
|
||||||
#################################
|
#################################
|
||||||
|
|
||||||
menu-opacity = 1;
|
|
||||||
inactive-opacity = 1;
|
inactive-opacity = 1;
|
||||||
active-opacity = 1;
|
active-opacity = 1;
|
||||||
frame-opacity = 1;
|
frame-opacity = 1;
|
||||||
inactive-opacity-override = false;
|
inactive-opacity-override = false;
|
||||||
|
|
||||||
# Dim inactive windows. (0.0 - 1.0)
|
# Dim inactive windows. (0.0 - 1.0)
|
||||||
# inactive-dim = 0.2;
|
#inactive-dim = 0.2;
|
||||||
# Do not let dimness adjust based on window opacity.
|
# Do not let dimness adjust based on window opacity.
|
||||||
# inactive-dim-fixed = true;
|
#inactive-dim-fixed = true;
|
||||||
# Blur background of transparent windows. Bad performance with X Render backend. GLX backend is preferred.
|
# Blur background of transparent windows. Bad performance with X Render backend. GLX backend is preferred.
|
||||||
# blur-background = true;
|
#blur-background = true;
|
||||||
# Blur background of opaque windows with transparent frames as well.
|
# Blur background of opaque windows with transparent frames as well.
|
||||||
# blur-background-frame = true;
|
#blur-background-frame = true;
|
||||||
# Do not let blur radius adjust based on window opacity.
|
# Do not let blur radius adjust based on window opacity.
|
||||||
blur-background-fixed = false;
|
blur-background-fixed = false;
|
||||||
blur-background-exclude = [
|
blur-background-exclude = [
|
||||||
Reference in New Issue
Block a user