add .desktop file for install
This commit is contained in:
parent
cf65000801
commit
fa21100477
8
airootfs/root/Desktop/install.desktop
Normal file
8
airootfs/root/Desktop/install.desktop
Normal file
@ -0,0 +1,8 @@
|
||||
[Desktop Entry]
|
||||
Type=Application
|
||||
Encoding=UTF-8
|
||||
Name=install
|
||||
Comment=start install of system
|
||||
Exec=xfce4-terminal --maximize --execute /root/install
|
||||
Icon=/usr/saturnarch/logo.png
|
||||
Terminal=False
|
99
airootfs/to_install/etc/skel/.bashrc
Normal file
99
airootfs/to_install/etc/skel/.bashrc
Normal file
@ -0,0 +1,99 @@
|
||||
# /etc/bash.bashrc
|
||||
#
|
||||
# https://wiki.archlinux.org/index.php/Color_Bash_Prompt
|
||||
#
|
||||
# This file is sourced by all *interactive* bash shells on startup,
|
||||
# including some apparently interactive shells such as scp and rcp
|
||||
# that can't tolerate any output. So make sure this doesn't display
|
||||
# anything or bad things will happen !
|
||||
|
||||
EDITOR=nano; export EDITOR
|
||||
|
||||
# Test for an interactive shell. There is no need to set anything
|
||||
# past this point for scp and rcp, and it's important to refrain from
|
||||
# outputting anything in those cases.
|
||||
|
||||
# If not running interactively, don't do anything!
|
||||
[[ $- != *i* ]] && return
|
||||
|
||||
# Bash won't get SIGWINCH if another process is in the foreground.
|
||||
# Enable checkwinsize so that bash will check the terminal size when
|
||||
# it regains control.
|
||||
# http://cnswww.cns.cwru.edu/~chet/bash/FAQ (E11)
|
||||
shopt -s checkwinsize
|
||||
|
||||
# Enable history appending instead of overwriting.
|
||||
shopt -s histappend
|
||||
|
||||
case ${TERM} in
|
||||
xterm*|rxvt*|Eterm|aterm|kterm|gnome*)
|
||||
PROMPT_COMMAND=${PROMPT_COMMAND:+$PROMPT_COMMAND; }'printf "\033]0;%s@%s:%s\007" "${USER}" "${HOSTNAME%%.*}" "${PWD/#$HOME/\~}"'
|
||||
|
||||
;;
|
||||
screen*)
|
||||
PROMPT_COMMAND=${PROMPT_COMMAND:+$PROMPT_COMMAND; }'printf "\033_%s@%s:%s\033\\" "${USER}" "${HOSTNAME%%.*}" "${PWD/#$HOME/\~}"'
|
||||
;;
|
||||
esac
|
||||
|
||||
|
||||
# fortune is a simple program that displays a pseudorandom message
|
||||
# from a database of quotations at logon and/or logout.
|
||||
# If you wish to use it, please install "fortune-mod" from the
|
||||
# official repositories, then uncomment the following line:
|
||||
|
||||
#[[ "$PS1" ]] && /usr/bin/fortune
|
||||
|
||||
# Set colorful PS1 only on colorful terminals.
|
||||
# dircolors --print-database uses its own built-in database
|
||||
# instead of using /etc/DIR_COLORS. Try to use the external file
|
||||
# first to take advantage of user additions. Use internal bash
|
||||
# globbing instead of external grep binary.
|
||||
|
||||
# sanitize TERM:
|
||||
safe_term=${TERM//[^[:alnum:]]/?}
|
||||
match_lhs=""
|
||||
|
||||
[[ -f ~/.dir_colors ]] && match_lhs="${match_lhs}$(<~/.dir_colors)"
|
||||
[[ -f /etc/DIR_COLORS ]] && match_lhs="${match_lhs}$(</etc/DIR_COLORS)"
|
||||
[[ -z ${match_lhs} ]] \
|
||||
&& type -P dircolors >/dev/null \
|
||||
&& match_lhs=$(dircolors --print-database)
|
||||
|
||||
|
||||
# we have colors :-)
|
||||
|
||||
# Enable colors for ls, etc. Prefer ~/.dir_colors
|
||||
if type -P dircolors >/dev/null ; then
|
||||
if [[ -f ~/.dir_colors ]] ; then
|
||||
eval $(dircolors -b ~/.dir_colors)
|
||||
elif [[ -f /etc/DIR_COLORS ]] ; then
|
||||
eval $(dircolors -b /etc/DIR_COLORS)
|
||||
fi
|
||||
fi
|
||||
|
||||
#PS1="$(if [[ ${EUID} == 0 ]]; then echo '\[\033[01;31m\]\h'; else echo '\[\033[01;32m\]\u@\h'; fi)\[\033[01;34m\] \w \$([[ \$? != 0 ]] && echo \"\[\033[01;31m\]:(\[\033[01;34m\] \")\\$\[\033[00m\] "
|
||||
PS1="\[\e[0;37m\][ \[\e[0;32m\]\u\[\e[0;37m\]@\[\e[0;31m\]\h \[\e[0;36m\]\W \[\e[0;37m\]] \[\e[0;37m\]$ \[\e[0m\]"
|
||||
|
||||
# Use this other PS1 string if you want \W for root and \w for all other users:
|
||||
# PS1="$(if [[ ${EUID} == 0 ]]; then echo '\[\033[01;31m\]\h\[\033[01;34m\] \W'; else echo '\[\033[01;32m\]\u@\h\[\033[01;34m\] \w'; fi) \$([[ \$? != 0 ]] && echo \"\[\033[01;31m\]:(\[\033[01;34m\] \")\\$\[\033[00m\] "
|
||||
|
||||
alias ls="ls --color=auto"
|
||||
alias dir="dir --color=auto"
|
||||
alias grep="grep --color=auto"
|
||||
alias dmesg='dmesg --color'
|
||||
alias ip='ip -color=auto'
|
||||
alias diff='diff --color=auto'
|
||||
|
||||
PS2="> "
|
||||
PS3="> "
|
||||
PS4="+ "
|
||||
|
||||
# Try to keep environment pollution down, EPA loves us :-)
|
||||
unset safe_term match_lhs
|
||||
|
||||
# Try to enable the auto-completion (type: "pacman -S bash-completion" to install it).
|
||||
[ -r /usr/share/bash-completion/bash_completion ] && . /usr/share/bash-completion/bash_completion
|
||||
|
||||
# Try to enable the "Command not found" hook ("pacman -S pkgfile" to install it).
|
||||
# See also: https://wiki.archlinux.org/index.php/Bash#The_.22command_not_found.22_hook
|
||||
[ -r /usr/share/doc/pkgfile/command-not-found.bash ] && . /usr/share/doc/pkgfile/command-not-found.bash
|
@ -62,7 +62,7 @@
|
||||
</property>
|
||||
<property name="plugins" type="empty">
|
||||
<property name="plugin-1" type="string" value="applicationsmenu">
|
||||
<property name="button-icon" type="string" value="/usr/share/pixmaps/archlinux-logo.svg"/>
|
||||
<property name="button-icon" type="string" value="/usr/saturnarch/logo.png"/>
|
||||
</property>
|
||||
<property name="plugin-2" type="string" value="tasklist">
|
||||
<property name="grouping" type="uint" value="1"/>
|
||||
|
0
airootfs/to_install/etc/skel/Documents/.gitkeep
Normal file
0
airootfs/to_install/etc/skel/Documents/.gitkeep
Normal file
0
airootfs/to_install/etc/skel/Downloads/.gitkeep
Normal file
0
airootfs/to_install/etc/skel/Downloads/.gitkeep
Normal file
0
airootfs/to_install/etc/skel/Music/.gitkeep
Normal file
0
airootfs/to_install/etc/skel/Music/.gitkeep
Normal file
0
airootfs/to_install/etc/skel/Pictures/.gitkeep
Normal file
0
airootfs/to_install/etc/skel/Pictures/.gitkeep
Normal file
0
airootfs/to_install/etc/skel/Videos/.gitkeep
Normal file
0
airootfs/to_install/etc/skel/Videos/.gitkeep
Normal file
13
airootfs/to_install/usr/local/bin/emuhere
Executable file
13
airootfs/to_install/usr/local/bin/emuhere
Executable file
@ -0,0 +1,13 @@
|
||||
#!/bin/bash
|
||||
|
||||
if [ -z "$1" ]
|
||||
then
|
||||
echo
|
||||
echo "No Docker Image supplied. Using archlinux"
|
||||
echo
|
||||
image='archlinux'
|
||||
else
|
||||
image=$1
|
||||
fi
|
||||
|
||||
docker run -it -v "$(pwd):/mnt" -w '/mnt' $image
|
BIN
airootfs/to_install/usr/saturnarch/logo.png
Normal file
BIN
airootfs/to_install/usr/saturnarch/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.6 KiB |
@ -15,5 +15,6 @@ file_permissions=(
|
||||
["/etc/shadow"]="0:0:400"
|
||||
["/usr/local/bin/apt"]="1:1:1"
|
||||
["/usr/local/bin/emuhere"]="1:1:1"
|
||||
["/root/Desktop/install"]="1:1:1"
|
||||
["/root/Desktop/install.desktop"]="1:1:1"
|
||||
["/root/install"]="1:1:1"
|
||||
)
|
||||
|
Loading…
x
Reference in New Issue
Block a user