File tree 3 files changed +24
-1
lines changed
3 files changed +24
-1
lines changed Original file line number Diff line number Diff line change
1
+ target
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ target=" ./target/"
4
+ pkgSource=" ./command-status-widget"
5
+ zipName=" command-status-widget.plasmoid"
6
+
7
+ function clean(){
8
+ if [ -d $target ] ; then
9
+ rm -rf $target
10
+ fi
11
+ }
12
+
13
+ function build(){
14
+ mkdir $target
15
+ cd $pkgSource
16
+ zip -r ../$target /$zipName ./
17
+ cd ..
18
+ }
19
+
20
+ clean
21
+ build
22
+ echo " Done!"
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ X-Plasma-RequiredExtensions=LaunchApp
11
11
X-KDE-PluginInfo-Author =Jason Schindler
12
12
X-KDE-PluginInfo-Email [email protected]
13
13
X-KDE-PluginInfo-Website =http://www.bucket440.com
14
- X-KDE-PluginInfo-Category =Examples
14
+ X-KDE-PluginInfo-Category =Utilities
15
15
X-KDE-PluginInfo-Name =com.bucket440.qtquick.widget.command-status
16
16
X-KDE-PluginInfo-Version =0.1
17
17
You can’t perform that action at this time.
0 commit comments