Skip to content
Open
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
24 changes: 20 additions & 4 deletions kocify.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,19 +30,35 @@ function remove_keyboard_packages {
sudo apt-get remove fcitx*
}

function set_regional_formats {
LC_ALL=es_MX.UTF-8
}

function ubermix_kocify {
ubermix_update_packages
ubermix_install_wireless_drivers
ubermix_install_software
echo 'Updating packages'
tmp = `ubermix_update_packages`
echo 'Installing wireless drivers'
tmp = `ubermix_install_wireless_drivers`
echo 'Installing software'
tmp = `ubermix_install_software`
# For the rest of the functions, uncomment echo
# and add tmp = `name_function`
# Change the wallpaper using commands
# Install Kids Ruby
# echo 'Changing wallpaper'
# Change regional formats
echo 'Changing regional formats'
tmp = `set_regional_formats`
# Configure input methods
echo 'Configuring keyboard packages'
remove_keyboard_packages
# Change the timezone to Mexico City
# echo 'Changing timezone'
# Install Language Pack support for Spanish
# echo 'Installing language support'
}



#######################
# Ubermix customization
#######################
Expand Down