文件操作 - zz-liveinst.sh
返回文件管理
返回主菜单
删除本文件
文件: /etc/X11/xinit/xinitrc.d/zz-liveinst.sh
编辑文件内容
#!/bin/bash # Set up a launcher on the desktop for the live installer if we're on # a live CD # Prevents breakage if the hostname is changed before or during the install [ -x /usr/bin/xhost ] && xhost +si:localuser:root > /dev/null 2>&1 # don't run on geode (olpc) if [ `grep -c Geode /proc/cpuinfo` -eq 0 ]; then if [ -b /dev/mapper/live-osimg-min ]; then test -f ${XDG_CONFIG_HOME:-~/.config}/user-dirs.dirs && source ${XDG_CONFIG_HOME:-~/.config}/user-dirs.dirs cp /usr/share/applications/liveinst.desktop "${XDG_DESKTOP_DIR:-$HOME/Desktop}" elif [ -f /.livecd-configured ]; then # FIXME: old way... this should go away test -f ${XDG_CONFIG_HOME:-~/.config}/user-dirs.dirs && source ${XDG_CONFIG_HOME:-~/.config}/user-dirs.dirs cp /usr/share/applications/liveinst.desktop "${XDG_DESKTOP_DIR:-$HOME/Desktop}" fi fi
修改文件时间
将文件时间修改为当前时间的前一年
删除文件