Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added cafelug-twitter.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added cafelug.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
21 changes: 21 additions & 0 deletions flisol-postinstall.bash
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ TASKS=( \
"task_system_update" \
"task_open_eventol" \
"task_change_wallpaper" \
"task_create_shortcuts" \
)
# <>

Expand Down Expand Up @@ -1015,6 +1016,26 @@ Revise el registro de ejecucion y corrija los problemas"

return 0
}

function task_create_shortcuts() {
cp cafelug.png ~/.cafelug.png
echo "
[Desktop Entry]
Name=CaFeLUG
Comment="Grupo de usuarios de GNU/Linux en Capital Federal"
Exec=xdg-open "https://cafelug.org.ar"
Icon=$HOME/.cafelug.png
" > $(xdg-user-dir DESKTOP)/cafelug.desktop
cp cafelug-twitter.png ~/.cafelug-twitter.png
echo "
[Desktop Entry]
Name=Twitter @CaFeLUG
Comment="CaFeLUG en Twitter"
Exec=xdg-open "https://twitter.com/CaFeLUG_Oficial"
Icon=$HOME/.cafelug-twitter.png
" > $(xdg-user-dir DESKTOP)/cafelug-twitter.desktop
}

# <>

# main()
Expand Down