We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 491ffd6 commit 74cf11aCopy full SHA for 74cf11a
1 file changed
bigcontrolcenter/usr/local/bin/systemsettings
@@ -3,12 +3,14 @@
3
# Simplify when open Plasma configurations, without open all systemsettings
4
5
if [ -z "$1" ]; then
6
- /usr/bin/systemsettings $@
+ /usr/bin/systemsettings
7
else
8
# Fix to open kcm_kscreen in plasma 6.5
9
if [[ "$1" = "kcm_kscreen" ]] && [[ -z $2 ]]; then
10
kcmshell6 kcm_nightlight kcm_kwinscreenedges kcm_kscreen
11
+ elif [[ "$1" = "kcm_networkmanagement" ]]; then
12
+ kcmshell6 $(echo $* | sed 's|--args --args|--args|g')
13
- kcmshell6 $@
14
+ kcmshell6 $*
15
fi
16
0 commit comments