Skip to content

Commit 74cf11a

Browse files
committed
Simplify network configuration from plasma
1 parent 491ffd6 commit 74cf11a

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

bigcontrolcenter/usr/local/bin/systemsettings

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,14 @@
33
# Simplify when open Plasma configurations, without open all systemsettings
44

55
if [ -z "$1" ]; then
6-
/usr/bin/systemsettings $@
6+
/usr/bin/systemsettings
77
else
88
# Fix to open kcm_kscreen in plasma 6.5
99
if [[ "$1" = "kcm_kscreen" ]] && [[ -z $2 ]]; then
1010
kcmshell6 kcm_nightlight kcm_kwinscreenedges kcm_kscreen
11+
elif [[ "$1" = "kcm_networkmanagement" ]]; then
12+
kcmshell6 $(echo $* | sed 's|--args --args|--args|g')
1113
else
12-
kcmshell6 $@
14+
kcmshell6 $*
1315
fi
1416
fi

0 commit comments

Comments
 (0)