mirror of
https://github.com/aclist/dztui.git
synced 2025-04-05 03:53:01 +02:00
Explicitly create directory in $HOME
This commit is contained in:
parent
64e28e1372
commit
0cf150fe9e
1 changed files with 6 additions and 6 deletions
12
dzgui.sh
12
dzgui.sh
|
@ -155,22 +155,22 @@ cat <<-END
|
|||
Version=1.0
|
||||
Type=Application
|
||||
Terminal=false
|
||||
Exec=$HOME/.local/share/dzgui/dzgui.sh
|
||||
Exec=$HOME/dzgui/dzgui.sh
|
||||
Name=DZGUI
|
||||
Comment=dzgui
|
||||
Icon=$HOME/.local/share/dzgui/dzgui
|
||||
Icon=$HOME/dzgui/dzgui
|
||||
Categories=Game
|
||||
END
|
||||
}
|
||||
freedesktop_dirs(){
|
||||
mkdir -p $HOME/.local/share/dzgui
|
||||
mkdir $HOME/dzgui
|
||||
mkdir -p "$freedesktop_path"
|
||||
#TODO: update url
|
||||
curl -s "$version_url" > $HOME/.local/share/dzgui/dzgui.sh
|
||||
chmod +x "$HOME/.local/share/dzgui/dzgui.sh"
|
||||
curl -s "$version_url" > $HOME/dzgui/dzgui.sh
|
||||
chmod +x "$HOME/dzgui/dzgui.sh"
|
||||
img_url="https://raw.githubusercontent.com/aclist/dztui/testing/images"
|
||||
for i in dzgui grid.png hero.png logo.png; do
|
||||
curl -s "$img_url/$i" > "$HOME/.local/share/dzgui/$i"
|
||||
curl -s "$img_url/$i" > "$HOME/dzgui/$i"
|
||||
done
|
||||
write_desktop_file > "$freedesktop_path/dzgui.desktop"
|
||||
write_desktop_file > "$HOME/Desktop/dzgui.desktop"
|
||||
|
|
Loading…
Reference in a new issue