You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
260 B
10 lines
260 B
#!/usr/bin/env bash
|
|
|
|
appRoot=$(dirname $(readlink -f $0));
|
|
|
|
cd $appRoot;
|
|
echo "Installing desktop file and icons..."
|
|
cp -v --parents -r share $HOME/.local/
|
|
|
|
echo "Installing Konsole profile and keybindings..."
|
|
cp -v --parents -r konsole $HOME/.kde/share/apps/
|
|
|