Commit 462a63d3 authored by Jay Ta'ala's avatar Jay Ta'ala
Browse files

Changes to compton.conf to fix screen tearing. Colour changes to dunst to...

Changes to compton.conf to fix screen tearing.  Colour changes to dunst to match my theme (numix).  i3exit now uses dmtool lock instead of blurlock).
parent 65eff439
# Shadow
shadow = true;
shadow = false;
# no-dnd-shadow = true;
# no-dock-shadow = true;
clear-shadow = true;
......@@ -41,13 +41,15 @@ fade-in-step = 0.03;
fade-out-step = 0.03;
fade-exclude = [ ];
backend = "xrender";
#backend = "xrender";
backend = "glx";
mark-wmwin-focused = true;
mark-ovredir-focused = true;
detect-client-opacity = true;
unredir-if-possible = true;
refresh-rate = 0;
vsync = "none";
#vsync = "none";
vsync = "opengl-swc";
dbe = false;
paint-on-overlay = true;
focus-exclude = [ "class_g = 'Cairo-clock'" ];
......@@ -85,7 +87,7 @@ opacity-rule = [
"99:name *?= 'Write'",
"93:class_g = 'URxvt' && !_NET_WM_STATE@:32a",
"0:_NET_WM_STATE@:32a *= '_NET_WM_STATE_HIDDEN'",
"96:_NET_WM_STATE@:32a *= '_NET_WM_STATE_STICKY'"
"99:_NET_WM_STATE@:32a *= '_NET_WM_STATE_STICKY'"
];
wintypes :
......
[global]
frame_width = 1
frame_color = "#788388"
frame_width = 3
frame_color = "#eb564d"
font = Noto Sans 10
......@@ -181,14 +181,14 @@
[urgency_low]
# IMPORTANT: colors have to be defined in quotation marks.
# Otherwise the "#" and following would be interpreted as a comment.
background = "#263238"
foreground = "#556064"
timeout = 10
background = "#4a4a4a"
foreground = "#F9FAF9"
timeout = 3
[urgency_normal]
background = "#263238"
background = "#4a4a4a"
foreground = "#F9FAF9"
timeout = 10
timeout = 3
[urgency_critical]
background = "#D62929"
......
......@@ -6,7 +6,7 @@
case "$1" in
lock)
blurlock
dm-tool lock
;;
logout)
i3-msg exit
......@@ -15,10 +15,10 @@ case "$1" in
dm-tool switch-to-greeter
;;
suspend)
blurlock && $logind suspend
dm-tool lock && sleep 1 && $logind suspend
;;
hibernate)
blurlock && $logind hibernate
dm-tool lock && sleep 1 && $logind hibernate
;;
reboot)
$logind reboot
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment