22 lines
744 B
Bash
Executable File
22 lines
744 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Installing symlinks in the chroot
|
|
# We might be changing directories with each symlink.
|
|
# Don't assume each instance will be from ~/ for the root user.
|
|
|
|
# These are for the 3 installer scripts - icons.sh, themes.sh & walls.sh
|
|
# In 0610- we set the permissions to 777 on the DIRECTORY, not the contents.
|
|
ln -s icons /usr/share/pepicons
|
|
ln -s themes /usr/share/pepthemes
|
|
ln -s backgrounds /usr/share/pepwallpaper
|
|
|
|
# A better version of vi and vim than vim-tiny
|
|
rm /etc/alternatives/vi
|
|
ln -s ../../etc/alternatives/vim /usr/bin/vim
|
|
ln -s ../../usr/bin/vim.tiny /etc/alternatives/vim
|
|
ln -s ../../usr/bin/busybox /etc/alternatives/vi
|
|
|
|
# Put a .png at ~/.face from within /etc/skel
|
|
#ln -s /usr/share/pixmaps/logo.png /etc/skel/.face
|
|
|