Skip to content

Commit

Permalink
awesomeshot: default config v.1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nihsx committed May 27, 2022
1 parent bfd0d2b commit fba8784
Showing 1 changed file with 32 additions and 1 deletion.
33 changes: 32 additions & 1 deletion awesomeshot.conf
Original file line number Diff line number Diff line change
Expand Up @@ -134,11 +134,42 @@ convert_second_border="yes"
# This variable serves to set border color (background image), change this value
# to "none" for transparent background, if you want to custom the color, you can
# change this value with hex color or use the one in the array list.
second_border_color="${hex_color[0]}"
# NOTE: if convert_second_border enable and second_border_color value not none
# will be conflict
#second_border_color="${hex_color[0]}"
second_border_color="none"

# This variable serves to set how many size of the second border
second_border_size=50

# This variable serves to convert border with gradient color,
# change this value to blank or whatever for disable convert and "yes" for enable function
convert_second_border_gradient="yes"

# This variable serves to convert gradient color method
# More information: https://legacy.imagemagick.org/Usage/misc/
# List available method:
# - saddle
# - mesh
interpolate_method="saddle"

second_border_gradient_color=(
"#C850C0"
"#FFCC70"
"#4158D0"
"#FE7FAA"
)

saddle_color_top_left="${second_border_gradient_color[0]}"
saddle_color_top_right="${second_border_gradient_color[1]}"
saddle_color_bottom_left="${second_border_gradient_color[2]}"
saddle_color_bottom_right="${second_border_gradient_color[0]}"

mesh_color_top_left="${second_border_gradient_color[1]}"
mesh_color_top_right="${second_border_gradient_color[1]}"
mesh_color_bottom_left="${second_border_gradient_color[3]}"
mesh_color_bottom_right="${second_border_gradient_color[3]}"

# This variable serves to convert the shadow of image, change this value
# to blank or whatever for disable function and "yes" for enable function.
convert_shadow="yes"
Expand Down

0 comments on commit fba8784

Please sign in to comment.