Skip to content

Commit 7e571f0

Browse files
committedMar 14, 2025··
Save changes at: 1741962386
1 parent 2662c6f commit 7e571f0

File tree

2 files changed

+16
-2
lines changed

2 files changed

+16
-2
lines changed
 

‎kde.sh

+6-2
Original file line numberDiff line numberDiff line change
@@ -58,16 +58,20 @@ function packages() {
5858
}
5959

6060
function configure() {
61+
echo "--> Configure KDE."
62+
kwriteconfig6 --file "$HOME"/.config/kdeglobals --group "General" --key "ColorSchemeHash" "babca25f3a5cf7ece26a85de212ab43d0a141257"
6163
kwriteconfig6 --file "$HOME"/.config/kdeglobals --group "KDE" --key "LookAndFeelPackage" "org.kde.breezedark.desktop"
6264
kwriteconfig6 --file "$HOME"/.config/kdeglobals --group "KDE" --key "widgetStyle" "Fusion"
6365
kwriteconfig6 --file "$HOME"/.config/kdeglobals --group "Sounds" --key "Enable" "false"
6466
kwriteconfig6 --file "$HOME"/.config/ksplashrc --group "KSplash" --key "Engine" "None"
6567
kwriteconfig6 --file "$HOME"/.config/ksplashrc --group "KSplash" --key "Theme" "None"
6668
kwriteconfig6 --file "$HOME"/.config/kwalletrc --group "Wallet" --key "Enabled" "false"
67-
kwriteconfig6 --file "$HOME"/.config/kwinrc --group "TabBox" --key "HighlightWindows" "false"
68-
kwriteconfig6 --file "$HOME"/.config/kwinrc --group "TabBox" --key "LayoutName" "compact"
6969
kwriteconfig6 --file "$HOME"/.config/kwinrc --group "TabBoxAlternative" --key "HighlightWindows" "false"
7070
kwriteconfig6 --file "$HOME"/.config/kwinrc --group "TabBoxAlternative" --key "LayoutName" "compact"
71+
kwriteconfig6 --file "$HOME"/.config/kwinrc --group "TabBox" --key "HighlightWindows" "false"
72+
kwriteconfig6 --file "$HOME"/.config/kwinrc --group "TabBox" --key "LayoutName" "compact"
73+
kwriteconfig6 --file "$HOME"/.config/plasma-localerc --group "Formats" --key "LANG" "en_US.UTF-8"
74+
kwriteconfig6 --file "$HOME"/.config/plasmanotifyrc --group "DoNotDisturb" --key "NotificationSoundsMuted" "true"
7175

7276
kscreen-doctor output.HDMI-A-1.scale.1
7377
}

‎profile.sh

+10
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ function main() {
55
configure_alacritty
66
configure_git
77
configure_gpg
8+
configure_helix
89
configure_kde
910
configure_profile
1011
configure_tmux
@@ -86,6 +87,7 @@ alias e="yazi"
8687
alias f="fzf -i --print0 | xclip -selection clipboard"
8788
alias g="grep -n --color"
8889
alias h="history"
90+
alias hx="helix"
8991
alias l="lsd -lahS --color=auto"
9092
alias ll="lsd -laS --color=auto"
9193
alias o="dolphin ."
@@ -594,6 +596,14 @@ function configure_gpg() {
594596
echo "DA0D2EC084DA5974997B8F5D3BAB49A94D82E715" > ~/.gnupg/sshcontrol
595597
}
596598

599+
function configure_helix() {
600+
echo "--> Configure Helix"
601+
602+
cat > "$HOME"/.config/helix/config.toml << 'EOF'
603+
theme = "adwaita-dark"
604+
EOF
605+
}
606+
597607
function configure_kde() {
598608
echo "--> Configure KDE."
599609
# kwriteconfig6 --file ~/.config/kdedefaults/ksplashrc --group KSplash --key Theme org.kde.breezedark.desktop

0 commit comments

Comments
 (0)
Please sign in to comment.