fix qt6ct config conflict
This commit is contained in:
commit
18dd9f5a9a
17 changed files with 175 additions and 18 deletions
101
de/home/.config/de-vars/colors/generate.sh
Executable file
101
de/home/.config/de-vars/colors/generate.sh
Executable file
|
|
@ -0,0 +1,101 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
if ! which pastel;then
|
||||||
|
printf "pastel is not installed\n"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
source ./active/colors.sh
|
||||||
|
|
||||||
|
#change these up
|
||||||
|
theme_color="${de_color_5}"
|
||||||
|
white="${de_color_15}"
|
||||||
|
black="${de_color_0}"
|
||||||
|
window_bg=$(pastel mix "${theme_color}" "${black}" | pastel mix - "${black}" | pastel format hex | cut -c 2-)
|
||||||
|
alpha="150" #out of 255
|
||||||
|
|
||||||
|
#let the script handle these
|
||||||
|
alpha_hex=$(printf '%x\n' "${alpha}")
|
||||||
|
QT6CT_COLORS_DIR="${HOME}/.config/qt6ct/colors"
|
||||||
|
QT5CT_COLORS_DIR="${HOME}/.config/qt5ct/colors"
|
||||||
|
CONFIG_DATE="$(date +%y%m%d_%H%M%S)"
|
||||||
|
|
||||||
|
qt_conf_line(){
|
||||||
|
printf '%s=%s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s\n' \
|
||||||
|
$@
|
||||||
|
}
|
||||||
|
|
||||||
|
create_qt_conf(){
|
||||||
|
|
||||||
|
printf '[ColorScheme]\n' | tee "${QT6CT_COLORS_DIR}/colors-${CONFIG_DATE}.conf"
|
||||||
|
|
||||||
|
active_colors=(
|
||||||
|
#window text
|
||||||
|
"#ff${de_color_13}"
|
||||||
|
#button background
|
||||||
|
"#${alpha_hex}${de_color_0}"
|
||||||
|
#bright
|
||||||
|
"#${alpha_hex}${de_color_15}"
|
||||||
|
#less bright
|
||||||
|
"#${alpha_hex}${de_color_7}"
|
||||||
|
#dark
|
||||||
|
"#${alpha_hex}${de_color_8}"
|
||||||
|
#less dark
|
||||||
|
"#${alpha_hex}${de_color_7}"
|
||||||
|
#normal text
|
||||||
|
"#ff${de_color_15}"
|
||||||
|
#bright text
|
||||||
|
"#ff${de_color_15}"
|
||||||
|
#button text
|
||||||
|
"#ff${de_color_15}"
|
||||||
|
#normal background
|
||||||
|
"#${alpha_hex}${window_bg}"
|
||||||
|
#window
|
||||||
|
"#${alpha_hex}${window_bg}"
|
||||||
|
#shadow
|
||||||
|
"#${alpha_hex}${de_color_15}"
|
||||||
|
#highlight
|
||||||
|
"#${alpha_hex}${de_color_5}"
|
||||||
|
#highlighted text
|
||||||
|
"#ff${de_color_1}"
|
||||||
|
#link
|
||||||
|
"#ff${de_color_5}"
|
||||||
|
#visited link
|
||||||
|
"#ff${de_color_9}"
|
||||||
|
#alternate background
|
||||||
|
"#${alpha_hex}${window_bg}"
|
||||||
|
#default
|
||||||
|
"#ff${de_color_15}"
|
||||||
|
#tooltip background
|
||||||
|
"#${alpha_hex}${de_color_0}"
|
||||||
|
#tooltip text
|
||||||
|
"#ff${de_color_15}"
|
||||||
|
#placeholder text
|
||||||
|
"#80${de_color_15}"
|
||||||
|
#accent
|
||||||
|
"#e1${de_color_13}"
|
||||||
|
)
|
||||||
|
|
||||||
|
qt_conf_line \
|
||||||
|
"active_colors" \
|
||||||
|
${active_colors[@]} | tee -a "${QT6CT_COLORS_DIR}/colors-${CONFIG_DATE}.conf"
|
||||||
|
|
||||||
|
disabled_colors=()
|
||||||
|
for color in ${active_colors[@]};do
|
||||||
|
echo "${color}"
|
||||||
|
faded_color=$(pastel mix "${color:3:9}" "${de_color_8}" | pastel format hex | cut -c 2-)
|
||||||
|
disabled_colors+=("${color:0:3}${faded_color}")
|
||||||
|
done
|
||||||
|
qt_conf_line \
|
||||||
|
"disabled_colors" \
|
||||||
|
${disabled_colors[@]} | tee -a "${QT6CT_COLORS_DIR}/colors-${CONFIG_DATE}.conf"
|
||||||
|
|
||||||
|
qt_conf_line \
|
||||||
|
"inactive_colors" \
|
||||||
|
${active_colors[@]} | tee -a "${QT6CT_COLORS_DIR}/colors-${CONFIG_DATE}.conf"
|
||||||
|
|
||||||
|
ln -rs "${QT6CT_COLORS_DIR}/colors-${CONFIG_DATE}.conf" "${QT5CT_COLORS_DIR}/colors-${CONFIG_DATE}.conf"
|
||||||
|
}
|
||||||
|
|
||||||
|
create_qt_conf
|
||||||
|
#window text
|
||||||
|
|
@ -11,8 +11,9 @@ de_color_7='d0d0d0'
|
||||||
de_color_8='576176'
|
de_color_8='576176'
|
||||||
de_color_9='d75f87'
|
de_color_9='d75f87'
|
||||||
de_color_10='87af87'
|
de_color_10='87af87'
|
||||||
de_color_12='ffd787'
|
de_color_11='ffd787'
|
||||||
de_color_13='add4fb'
|
de_color_12='add4fb'
|
||||||
de_color_14='ffafaf'
|
de_color_13='ffafaf'
|
||||||
de_color_15='87d7d7'
|
de_color_14='87d7d7'
|
||||||
|
de_color_15='e4e4e4'
|
||||||
de_color_foreground='e4e4e4'
|
de_color_foreground='e4e4e4'
|
||||||
|
|
|
||||||
1
de/home/.config/de-vars/colors/seoul256/qt.conf
Normal file
1
de/home/.config/de-vars/colors/seoul256/qt.conf
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
active_colors=#ffffafaf, #00424245, #00979797, #005e5c5b, #00302f2e, #004a4947, #ffe4e4e4, #ffe4e4e4, #ffe4e4e4, #003d3d3d, #64111317, #ffe7e4e0, #96d7afaf, #ff111317, #ffd7afaf, #ffa70b06, #19576176, #ffffffff, #ff3f3f36, #ffffffff, #80ffffff, #e1d7afaf
|
||||||
|
|
@ -168,8 +168,8 @@ RunPrefix=
|
||||||
SetEditor=false
|
SetEditor=false
|
||||||
|
|
||||||
[MainWindow]
|
[MainWindow]
|
||||||
1920x1200 screen: Height=593
|
1920x1200 screen: Height=552
|
||||||
1920x1200 screen: Width=1896
|
1920x1200 screen: Width=1036
|
||||||
2 screens: Height=1119
|
2 screens: Height=1119
|
||||||
2 screens: Width=490
|
2 screens: Width=490
|
||||||
2048x1280 screen: Height=1199
|
2048x1280 screen: Height=1199
|
||||||
|
|
|
||||||
4
de/home/.config/qt6ct/colors/colors-251110_124138.conf
Normal file
4
de/home/.config/qt6ct/colors/colors-251110_124138.conf
Normal file
|
|
@ -0,0 +1,4 @@
|
||||||
|
[ColorScheme]
|
||||||
|
active_colors=#ffffafaf, #64111317, #64e4e4e4, #64d0d0d0, #64576176, #64d0d0d0, #ffe4e4e4, #ffe4e4e4, #ffe4e4e4, #64ffafaf, #64ffafaf, #64e4e4e4, #64d7afaf, #ffd68787, #ffd7afaf, #ffd75f87, #19576176, #ffe4e4e4, #64111317, #ffe4e4e4, #80e4e4e4, #e1ffafaf
|
||||||
|
disabled_colors=#ffab8792, #64323844, #649ba0ab, #649297a2, #64576176, #649297a2, #ff9ba0ab, #ff9ba0ab, #ff9ba0ab, #64ab8792, #64ab8792, #649ba0ab, #64978792, #ff98747f, #ff978792, #ff9a637e, #19576176, #ff9ba0ab, #64323844, #ff9ba0ab, #809ba0ab, #e1ab8792
|
||||||
|
inactive_colors=#ffffafaf, #64111317, #64e4e4e4, #64d0d0d0, #64576176, #64d0d0d0, #ffe4e4e4, #ffe4e4e4, #ffe4e4e4, #64ffafaf, #64ffafaf, #64e4e4e4, #64d7afaf, #ffd68787, #ffd7afaf, #ffd75f87, #19576176, #ffe4e4e4, #64111317, #ffe4e4e4, #80e4e4e4, #e1ffafaf
|
||||||
4
de/home/.config/qt6ct/colors/colors-251110_124457.conf
Normal file
4
de/home/.config/qt6ct/colors/colors-251110_124457.conf
Normal file
|
|
@ -0,0 +1,4 @@
|
||||||
|
[ColorScheme]
|
||||||
|
active_colors=#ffffafaf, #64111317, #64e4e4e4, #64d0d0d0, #64576176, #64d0d0d0, #ffe4e4e4, #ffe4e4e4, #ffe4e4e4, #64ffafaf, #646c5b5d, #64e4e4e4, #64d7afaf, #ffd68787, #ffd7afaf, #ffd75f87, #19576176, #ffe4e4e4, #64111317, #ffe4e4e4, #80e4e4e4, #e1ffafaf
|
||||||
|
disabled_colors=#ffab8792, #64323844, #649ba0ab, #649297a2, #64576176, #649297a2, #ff9ba0ab, #ff9ba0ab, #ff9ba0ab, #64ab8792, #64635e69, #649ba0ab, #64978792, #ff98747f, #ff978792, #ff9a637e, #19576176, #ff9ba0ab, #64323844, #ff9ba0ab, #809ba0ab, #e1ab8792
|
||||||
|
inactive_colors=#ffffafaf, #64111317, #64e4e4e4, #64d0d0d0, #64576176, #64d0d0d0, #ffe4e4e4, #ffe4e4e4, #ffe4e4e4, #64ffafaf, #646c5b5d, #64e4e4e4, #64d7afaf, #ffd68787, #ffd7afaf, #ffd75f87, #19576176, #ffe4e4e4, #64111317, #ffe4e4e4, #80e4e4e4, #e1ffafaf
|
||||||
4
de/home/.config/qt6ct/colors/colors-251110_124815.conf
Normal file
4
de/home/.config/qt6ct/colors/colors-251110_124815.conf
Normal file
|
|
@ -0,0 +1,4 @@
|
||||||
|
[ColorScheme]
|
||||||
|
active_colors=#ffffafaf, #96111317, #96e4e4e4, #96d0d0d0, #96576176, #96d0d0d0, #ffe4e4e4, #ffe4e4e4, #ffe4e4e4, #96ffafaf, #966c5b5d, #96e4e4e4, #96d7afaf, #ffd68787, #ffd7afaf, #ffd75f87, #19576176, #ffe4e4e4, #96111317, #ffe4e4e4, #80e4e4e4, #e1ffafaf
|
||||||
|
disabled_colors=#ffab8792, #96323844, #969ba0ab, #969297a2, #96576176, #969297a2, #ff9ba0ab, #ff9ba0ab, #ff9ba0ab, #96ab8792, #96635e69, #969ba0ab, #96978792, #ff98747f, #ff978792, #ff9a637e, #19576176, #ff9ba0ab, #96323844, #ff9ba0ab, #809ba0ab, #e1ab8792
|
||||||
|
inactive_colors=#ffffafaf, #96111317, #96e4e4e4, #96d0d0d0, #96576176, #96d0d0d0, #ffe4e4e4, #ffe4e4e4, #ffe4e4e4, #96ffafaf, #966c5b5d, #96e4e4e4, #96d7afaf, #ffd68787, #ffd7afaf, #ffd75f87, #19576176, #ffe4e4e4, #96111317, #ffe4e4e4, #80e4e4e4, #e1ffafaf
|
||||||
4
de/home/.config/qt6ct/colors/colors-251110_125101.conf
Normal file
4
de/home/.config/qt6ct/colors/colors-251110_125101.conf
Normal file
|
|
@ -0,0 +1,4 @@
|
||||||
|
[ColorScheme]
|
||||||
|
active_colors=#ffffafaf, #7d111317, #7de4e4e4, #7dd0d0d0, #7d576176, #7dd0d0d0, #ffe4e4e4, #ffe4e4e4, #ffe4e4e4, #7d6c5b5d, #7d6c5b5d, #7de4e4e4, #7dd7afaf, #ffd68787, #ffd7afaf, #ffd75f87, #19576176, #ffe4e4e4, #7d111317, #ffe4e4e4, #80e4e4e4, #e1ffafaf
|
||||||
|
disabled_colors=#ffab8792, #7d323844, #7d9ba0ab, #7d9297a2, #7d576176, #7d9297a2, #ff9ba0ab, #ff9ba0ab, #ff9ba0ab, #7d635e69, #7d635e69, #7d9ba0ab, #7d978792, #ff98747f, #ff978792, #ff9a637e, #19576176, #ff9ba0ab, #7d323844, #ff9ba0ab, #809ba0ab, #e1ab8792
|
||||||
|
inactive_colors=#ffffafaf, #7d111317, #7de4e4e4, #7dd0d0d0, #7d576176, #7dd0d0d0, #ffe4e4e4, #ffe4e4e4, #ffe4e4e4, #7d6c5b5d, #7d6c5b5d, #7de4e4e4, #7dd7afaf, #ffd68787, #ffd7afaf, #ffd75f87, #19576176, #ffe4e4e4, #7d111317, #ffe4e4e4, #80e4e4e4, #e1ffafaf
|
||||||
4
de/home/.config/qt6ct/colors/colors-251110_125504.conf
Normal file
4
de/home/.config/qt6ct/colors/colors-251110_125504.conf
Normal file
|
|
@ -0,0 +1,4 @@
|
||||||
|
[ColorScheme]
|
||||||
|
active_colors=#ffffafaf, #9655aa7f, #9655aaff, #96ff00ff, #96ffaa7f, #96aaaaff, #ffe4e4e4, #ffe4e4e4, #ffe4e4e4, #9655007f, #963c3538, #96e4e4e4, #96d7afaf, #ffd68787, #ffd7afaf, #ffd75f87, #1955aaff, #ffe4e4e4, #96ff557f, #ffe4e4e4, #80ff0000, #e1ffafaf
|
||||||
|
disabled_colors=#ff808080, #9655aa7f, #9655aaff, #96ff00ff, #96ffaa7f, #96aaaaff, #ff808080, #ffe4e4e4, #ff808080, #9655007f, #963c3538, #96e4e4e4, #96d7afaf, #ff808080, #ffd7afaf, #ffd75f87, #1955aaff, #ffe4e4e4, #96ff557f, #ffe4e4e4, #80ff0000, #e1ffafaf
|
||||||
|
inactive_colors=#ffffafaf, #9655aa7f, #9655aaff, #96ff00ff, #96ffaa7f, #96aaaaff, #ffe4e4e4, #ffe4e4e4, #ffe4e4e4, #9655007f, #963c3538, #96e4e4e4, #96d7afaf, #ffd68787, #ffd7afaf, #ffd75f87, #1955aaff, #ffe4e4e4, #96ff557f, #ffe4e4e4, #80ff0000, #e1ffafaf
|
||||||
4
de/home/.config/qt6ct/colors/colors-251110_131635.conf
Normal file
4
de/home/.config/qt6ct/colors/colors-251110_131635.conf
Normal file
|
|
@ -0,0 +1,4 @@
|
||||||
|
[ColorScheme]
|
||||||
|
active_colors=#ffffafaf, #96111317, #96e4e4e4, #96d0d0d0, #96576176, #96d0d0d0, #ffe4e4e4, #ffe4e4e4, #ffe4e4e4, #963c3538, #963c3538, #96e4e4e4, #96d7afaf, #ffd68787, #ffd7afaf, #ffd75f87, #19576176, #ffe4e4e4, #96111317, #ffe4e4e4, #80e4e4e4, #e1ffafaf
|
||||||
|
disabled_colors=#ffab8792, #96323844, #969ba0ab, #969297a2, #96576176, #969297a2, #ff9ba0ab, #ff9ba0ab, #ff9ba0ab, #964a4a56, #964a4a56, #969ba0ab, #96978792, #ff98747f, #ff978792, #ff9a637e, #19576176, #ff9ba0ab, #96323844, #ff9ba0ab, #809ba0ab, #e1ab8792
|
||||||
|
inactive_colors=#ffffafaf, #96111317, #96e4e4e4, #96d0d0d0, #96576176, #96d0d0d0, #ffe4e4e4, #ffe4e4e4, #ffe4e4e4, #963c3538, #963c3538, #96e4e4e4, #96d7afaf, #ffd68787, #ffd7afaf, #ffd75f87, #19576176, #ffe4e4e4, #96111317, #ffe4e4e4, #80e4e4e4, #e1ffafaf
|
||||||
4
de/home/.config/qt6ct/colors/colors-251110_131750.conf
Normal file
4
de/home/.config/qt6ct/colors/colors-251110_131750.conf
Normal file
|
|
@ -0,0 +1,4 @@
|
||||||
|
[ColorScheme]
|
||||||
|
active_colors=#ffffafaf, #96111317, #96e4e4e4, #96d0d0d0, #96576176, #96d0d0d0, #ffe4e4e4, #ffe4e4e4, #ffe4e4e4, #963c3538, #963c3538, #96e4e4e4, #96d7afaf, #ffd68787, #ffd7afaf, #ffd75f87, #00576176, #ffe4e4e4, #96111317, #ffe4e4e4, #80e4e4e4, #e1ffafaf
|
||||||
|
disabled_colors=#ffab8792, #96323844, #969ba0ab, #969297a2, #96576176, #969297a2, #ff9ba0ab, #ff9ba0ab, #ff9ba0ab, #964a4a56, #964a4a56, #969ba0ab, #96978792, #ff98747f, #ff978792, #ff9a637e, #00576176, #ff9ba0ab, #96323844, #ff9ba0ab, #809ba0ab, #e1ab8792
|
||||||
|
inactive_colors=#ffffafaf, #96111317, #96e4e4e4, #96d0d0d0, #96576176, #96d0d0d0, #ffe4e4e4, #ffe4e4e4, #ffe4e4e4, #963c3538, #963c3538, #96e4e4e4, #96d7afaf, #ffd68787, #ffd7afaf, #ffd75f87, #00576176, #ffe4e4e4, #96111317, #ffe4e4e4, #80e4e4e4, #e1ffafaf
|
||||||
4
de/home/.config/qt6ct/colors/colors-251110_131834.conf
Normal file
4
de/home/.config/qt6ct/colors/colors-251110_131834.conf
Normal file
|
|
@ -0,0 +1,4 @@
|
||||||
|
[ColorScheme]
|
||||||
|
active_colors=#ffffafaf, #96111317, #96e4e4e4, #96d0d0d0, #96576176, #96d0d0d0, #ffe4e4e4, #ffe4e4e4, #ffe4e4e4, #963c3538, #963c3538, #96e4e4e4, #96d7afaf, #ffd68787, #ffd7afaf, #ffd75f87, #7d3c3538, #ffe4e4e4, #96111317, #ffe4e4e4, #80e4e4e4, #e1ffafaf
|
||||||
|
disabled_colors=#ffab8792, #96323844, #969ba0ab, #969297a2, #96576176, #969297a2, #ff9ba0ab, #ff9ba0ab, #ff9ba0ab, #964a4a56, #964a4a56, #969ba0ab, #96978792, #ff98747f, #ff978792, #ff9a637e, #104a4a56, #ff9ba0ab, #96323844, #ff9ba0ab, #809ba0ab, #e1ab8792
|
||||||
|
inactive_colors=#ffffafaf, #96111317, #96e4e4e4, #96d0d0d0, #96576176, #96d0d0d0, #ffe4e4e4, #ffe4e4e4, #ffe4e4e4, #963c3538, #963c3538, #96e4e4e4, #96d7afaf, #ffd68787, #ffd7afaf, #ffd75f87, #103c3538, #ffe4e4e4, #96111317, #ffe4e4e4, #80e4e4e4, #e1ffafaf
|
||||||
4
de/home/.config/qt6ct/colors/default-test.conf
Normal file
4
de/home/.config/qt6ct/colors/default-test.conf
Normal file
|
|
@ -0,0 +1,4 @@
|
||||||
|
[ColorScheme]
|
||||||
|
active_colors=#ffffafaf, #00424245, #00979797, #005e5c5b, #00302f2e, #004a4947, #ffe4e4e4, #ffe4e4e4, #ffe4e4e4, #003d3d3d, #64111317, #ffe7e4e0, #96d7afaf, #ff111317, #ffd7afaf, #ffa70b06, #19576176, #ffffffff, #ff3f3f36, #ffffffff, #80ffffff, #e1d7afaf
|
||||||
|
disabled_colors=#ff808080, #00424245, #00979797, #005e5c5b, #00302f2e, #004a4947, #ff808080, #ffe4e4e4, #ff808080, #003d3d3d, #64111317, #ffe7e4e0, #96d7afaf, #ff808080, #ffd7afaf, #ffa70b06, #19576176, #ffffffff, #ff3f3f36, #ffffffff, #80ffffff, #e1d7afaf
|
||||||
|
inactive_colors=#ffffafaf, #00424245, #00979797, #005e5c5b, #00302f2e, #004a4947, #ffe4e4e4, #ffe4e4e4, #ffe4e4e4, #003d3d3d, #64111317, #ffe7e4e0, #96d7afaf, #ff111317, #ffd7afaf, #ffa70b06, #19576176, #ffffffff, #ff3f3f36, #ffffffff, #80ffffff, #e1d7afaf
|
||||||
4
de/home/.config/qt6ct/colors/simple_test.conf
Normal file
4
de/home/.config/qt6ct/colors/simple_test.conf
Normal file
|
|
@ -0,0 +1,4 @@
|
||||||
|
[ColorScheme]
|
||||||
|
active_colors=#ff000000, #ffefebe7, #ffffffff, #ffcbc7c4, #ff9f9d9a, #ffb8b5b2, #ff000000, #ffffffff, #ff000000, #ffffffff, #ffefebe7, #ffb1aeab, #ff308cc6, #ffffffff, #ff0000ff, #ffff0000, #fff7f5f3, #ff000000, #ffffffdc, #ff000000, #80000000
|
||||||
|
disabled_colors=#ffbebebe, #ffefebe7, #ffffffff, #ffcbc7c4, #ff9f9d9a, #ffb8b5b2, #ffbebebe, #ffffffff, #ffbebebe, #ffefebe7, #ffefebe7, #ffb1aeab, #ff9f9d9a, #ffffffff, #ff0000ff, #ffff0000, #fff7f5f3, #ff000000, #ffffffdc, #ff000000, #80000000
|
||||||
|
inactive_colors=#ff000000, #ffefebe7, #ffffffff, #ffcbc7c4, #ff9f9d9a, #ffb8b5b2, #ff000000, #ffffffff, #ff000000, #ffffffff, #ffefebe7, #ffb1aeab, #ff308cc6, #ffffffff, #ff0000ff, #ffff0000, #fff7f5f3, #ff000000, #ffffffdc, #ff000000, #80000000
|
||||||
10
de/home/.config/qt6ct/qss/menubar-color.qss
Normal file
10
de/home/.config/qt6ct/qss/menubar-color.qss
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
QMenuBar {
|
||||||
|
color: palette(accent);
|
||||||
|
}
|
||||||
|
QMenu {
|
||||||
|
background-color: palette(button);
|
||||||
|
}
|
||||||
|
QMenuBar::item:selected {
|
||||||
|
background-color: palette(highlight);
|
||||||
|
color: palette(button);
|
||||||
|
}
|
||||||
|
|
@ -1,13 +1,13 @@
|
||||||
[Appearance]
|
[Appearance]
|
||||||
color_scheme_path=/usr/share/qt6ct/colors/darker_pink.conf
|
color_scheme_path=/usr/share/qt6ct/colors/darker_pink.conf
|
||||||
custom_palette=true
|
custom_palette=true
|
||||||
icon_theme=breeze-dark
|
icon_theme=breeze
|
||||||
standard_dialogs=default
|
standard_dialogs=default
|
||||||
style=Breeze
|
style=Breeze
|
||||||
|
|
||||||
[Fonts]
|
[Fonts]
|
||||||
fixed="OverpassM Nerd Font Mono,10,-1,5,400,0,0,0,0,0,0,0,0,0,0,1"
|
fixed="OverpassM Nerd Font Mono,11,-1,5,400,0,0,0,0,0,0,0,0,0,0,1,Regular"
|
||||||
general="Overpass Nerd Font,10,-1,5,400,0,0,0,0,0,0,0,0,0,0,1"
|
general="Overpass Nerd Font,11,-1,5,400,0,0,0,0,0,0,0,0,0,0,1,Regular"
|
||||||
|
|
||||||
[Interface]
|
[Interface]
|
||||||
activate_item_on_single_click=1
|
activate_item_on_single_click=1
|
||||||
|
|
@ -15,23 +15,27 @@ buttonbox_layout=0
|
||||||
cursor_flash_time=1000
|
cursor_flash_time=1000
|
||||||
dialog_buttons_have_icons=1
|
dialog_buttons_have_icons=1
|
||||||
double_click_interval=400
|
double_click_interval=400
|
||||||
gui_effects=@Invalid()
|
gui_effects=FadeMenu, AnimateCombo, FadeTooltip, AnimateToolBox
|
||||||
keyboard_scheme=2
|
keyboard_scheme=2
|
||||||
menus_have_icons=true
|
menus_have_icons=true
|
||||||
show_shortcuts_in_context_menus=true
|
show_shortcuts_in_context_menus=true
|
||||||
stylesheets=/usr/local/share/qt6ct/qss/header-fix.qss, /usr/share/qt6ct/qss/fusion-fixes.qss, /usr/share/qt6ct/qss/pogmom-menubar.qss
|
stylesheets=/usr/share/qt6ct/qss/header-fix.qss, /usr/share/qt6ct/qss/fusion-fixes.qss, /usr/share/qt6ct/qss/pogmom-menubar.qss
|
||||||
toolbutton_style=4
|
toolbutton_style=4
|
||||||
underline_shortcut=1
|
underline_shortcut=1
|
||||||
wheel_scroll_lines=3
|
wheel_scroll_lines=3
|
||||||
|
|
||||||
[PaletteEditor]
|
[PaletteEditor]
|
||||||
geometry=@ByteArray(\x1\xd9\xd0\xcb\0\x3\0\0\0\0\0\a\0\0\0\0\0\0\x4\xd7\0\0\x1\x17\0\0\0\a\0\0\0\0\0\0\x4\xd7\0\0\x1\x17\0\0\0\0\0\0\0\0\b\0\0\0\0\a\0\0\0\0\0\0\x4\xd7\0\0\x1\x17)
|
geometry=@ByteArray(\x1\xd9\xd0\xcb\0\x3\0\0\0\0\0\0\0\0\0\0\0\0\x2\xca\0\0\x2k\0\0\0\0\0\0\0\0\0\0\x2\xca\0\0\x2k\0\0\0\0\0\0\0\0\a\x80\0\0\0\0\0\0\0\0\0\0\x2\xca\0\0\x2k)
|
||||||
|
|
||||||
[QSSEditor]
|
[QSSEditor]
|
||||||
geometry=@ByteArray(\x1\xd9\xd0\xcb\0\x3\0\0\0\0\0\0\0\0\0\0\0\0\x2\x82\0\0\x1\xf2\0\0\0\0\0\0\0\0\0\0\x2\x82\0\0\x1\xf2\0\0\0\0\0\0\0\0\a\x80\0\0\0\0\0\0\0\0\0\0\x2\x82\0\0\x1\xf2)
|
geometry=@ByteArray(\x1\xd9\xd0\xcb\0\x3\0\0\0\0\0\0\0\0\0\0\0\0\x2\x82\0\0\x1\xf2\0\0\0\0\0\0\0\0\0\0\x2\x82\0\0\x1\xf2\0\0\0\0\0\0\0\0\a\x80\0\0\0\0\0\0\0\0\0\0\x2\x82\0\0\x1\xf2)
|
||||||
|
|
||||||
[SettingsWindow]
|
[SettingsWindow]
|
||||||
|
<<<<<<< HEAD
|
||||||
geometry=@ByteArray(\x1\xd9\xd0\xcb\0\x3\0\0\0\0\0\0\0\0\0\0\0\0\x2\xbe\0\0\x2P\0\0\0\0\0\0\0\0\0\0\x2\xbe\0\0\x2P\0\0\0\0\0\0\0\0\b\0\0\0\0\0\0\0\0\0\0\0\x2\xbe\0\0\x2P)
|
geometry=@ByteArray(\x1\xd9\xd0\xcb\0\x3\0\0\0\0\0\0\0\0\0\0\0\0\x2\xbe\0\0\x2P\0\0\0\0\0\0\0\0\0\0\x2\xbe\0\0\x2P\0\0\0\0\0\0\0\0\b\0\0\0\0\0\0\0\0\0\0\0\x2\xbe\0\0\x2P)
|
||||||
|
=======
|
||||||
|
geometry=@ByteArray(\x1\xd9\xd0\xcb\0\x3\0\0\0\0\0\0\0\0\0\0\0\0\x3\0\0\0\x2\xbc\0\0\0\0\0\0\0\0\0\0\x3\0\0\0\x2\xbc\0\0\0\0\0\0\0\0\a\x80\0\0\0\0\0\0\0\0\0\0\x3\0\0\0\x2\xbc)
|
||||||
|
>>>>>>> 0cc874fab5284fc96d46b894c27c1bc0c7971a29
|
||||||
|
|
||||||
[Troubleshooting]
|
[Troubleshooting]
|
||||||
force_raster_widgets=1
|
force_raster_widgets=1
|
||||||
|
|
|
||||||
|
|
@ -17,13 +17,18 @@ Name=Penelope
|
||||||
IsRelative=1
|
IsRelative=1
|
||||||
Path=penelope
|
Path=penelope
|
||||||
Default=1
|
Default=1
|
||||||
StoreID=0585997e
|
StoreID=bf331188
|
||||||
ShowSelector=0
|
ShowSelector=0
|
||||||
|
|
||||||
[General]
|
[General]
|
||||||
StartWithLastProfile=1
|
StartWithLastProfile=1
|
||||||
Version=2
|
Version=2
|
||||||
|
|
||||||
|
[Profile4]
|
||||||
|
Name=testing
|
||||||
|
IsRelative=1
|
||||||
|
Path=4z689ygf.testing
|
||||||
|
|
||||||
[Install6C4726F70D182CF7]
|
[Install6C4726F70D182CF7]
|
||||||
Default=penelope
|
Default=penelope
|
||||||
Locked=1
|
Locked=1
|
||||||
|
|
@ -33,8 +38,3 @@ Name=School
|
||||||
IsRelative=1
|
IsRelative=1
|
||||||
Path=school
|
Path=school
|
||||||
|
|
||||||
[Profile4]
|
|
||||||
Name=testing
|
|
||||||
IsRelative=1
|
|
||||||
Path=4z689ygf.testing
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue