-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathinstall.sh
More file actions
executable file
·21 lines (16 loc) · 678 Bytes
/
Copy pathinstall.sh
File metadata and controls
executable file
·21 lines (16 loc) · 678 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/bash
. ./TemplateManagerTools.sh
. ./TemplateManagerLocalization.sh
mkdir -p "$bin_dir"
mkdir -p "$template_src_folder"
/bin/cp "./TemplateCreator.sh" "$bin_dir"
/bin/cp "./TemplateEditor.sh" "$bin_dir"
/bin/cp "./TemplateEraser.sh" "$bin_dir"
/bin/cp "./TemplateManagerLocalization.sh" "$bin_dir"
/bin/cp "./TemplateManagerTools.sh" "$bin_dir"
chmod +x "$bin_dir/TemplateCreator.sh"
chmod +x "$bin_dir/TemplateEditor.sh"
chmod +x "$bin_dir/TemplateEraser.sh"
/bin/cp "./TemplateManager_File.desktop" "$service_folder"
/bin/cp "./TemplateManager_Dir.desktop" "$service_folder"
kdialog --msgbox "$(str_installed)" --title "$(str_window_title)" --icon "$creator_icon"