forked from Snoweuph/Dotfiles
17 lines
445 B
Bash
Executable file
17 lines
445 B
Bash
Executable file
#!/bin/bash
|
|
|
|
RICE_FLAMESHOT_PATH=$RICE_DIR_CONFIG/flameshot
|
|
mkdir -p $RICE_FLAMESHOT_PATH
|
|
|
|
# Generate flameshot.conf
|
|
echo "# $RICE_GENERATED_HEADER
|
|
[General]
|
|
uiColor=$RICE_COLOR_TERTIARY_ACCENT
|
|
contrastUiColor=$RICE_COLOR_SECONDARY_ACCENT
|
|
|
|
drawColor=$RICE_COLOR_PRIMARY_ACCENT
|
|
userColors=picker, $RICE_COLOR_PRIMARY_ACCENT, $RICE_COLOR_SECONDARY_ACCENT, $RICE_COLOR_TERTIARY_ACCENT
|
|
|
|
disabledTrayIcon=true
|
|
|
|
" > $RICE_FLAMESHOT_PATH/flameshot.ini
|