diff options
| -rw-r--r-- | .config/picom.conf | 2 | ||||
| -rwxr-xr-x | .local/bin/linkview | 2 | 
2 files changed, 2 insertions, 2 deletions
diff --git a/.config/picom.conf b/.config/picom.conf index e8bd0c4..e4018b8 100644 --- a/.config/picom.conf +++ b/.config/picom.conf @@ -3,7 +3,7 @@  backend = "glx";  # paint-on-overlay = true;  vsync = true; -unredir-if-possible = false; +unredir-if-possible = true;  no-use-damage = false;  # Inactive windows diming diff --git a/.local/bin/linkview b/.local/bin/linkview index aba3993..74ebb1b 100755 --- a/.local/bin/linkview +++ b/.local/bin/linkview @@ -444,7 +444,7 @@ sub linkview  	$answer = fzf_prompt($ARGV[0]);  	$ARGV[1] = undef if (exists $ARGV[1] and $ARGV[1] eq '--dmenu');  	return unless exists $func_list{$answer}; -	$func_list{$answer}->($ARGV[0], $ARGV[1], $answer); +	$func_list{$answer}->($ARGV[0], $answer);  	return;  }  | 
