1#!/bin/sh
2
3# install ProcessController, NetworkStatus, PowerStatus & volume control in the Deskbar
4/boot/system/apps/ProcessController -deskbar
5/boot/system/apps/NetworkStatus --deskbar
6/boot/system/apps/PowerStatus --deskbar
7/boot/system/bin/desklink --add-volume
8
9# install KeymapSwitcher for certain locales
10if [[ `locale -l` =~ ^(ru|uk|be)$ ]]; then
11   /boot/system/preferences/KeymapSwitcher --deskbar
12fi
13