CentOS7桌⾯版系统使⽤的⼀些⼩技巧1、清空~/.kde/ ⽂件下的⽂件,登陆后不显⽰桌⾯的解决⽅法
在使⽤CentOS7 桌⾯系统时,有时候打开⽂件会很卡。这时我们需要清空当前⽤户下的 .kde ⽂件下的所有⽂件。再重新登陆该⽤户时,会发现桌⾯上的图标都不显⽰了。
⾸先查看⼀下系统语⾔hao@test01: $ cat ~/.config/user-dirs.locale
zh_CN ##发现是中⽂的
然后我们需要查看~/.config/user-dirs.dirs 配置⽂件是否正常
hao@test01: $ cat ~/.config/user-dirs.dirs
1
2 3 4 5 6 7 8 9 10 11 12 13 14 15# This file is written by xdg-user-dirs-update
# If you want to change or add directories, just edit the line you're
# interested in. All local changes will be retained on the next run
# Format is XDG_xxx_DIR="$HOME/yyy", where yyy is a shell-escaped # homedir-relative path, or XDG_xxx_DIR="/yyy", where /yyy is an
# absolute path. No other format is supported.
#
XDG_DESKTOP_DIR="$HOME/桌⾯"
XDG_DOWNLOAD_DIR="$HOME/下载"
XDG_TEMPLATES_DIR="$HOME/模板"
XDG_PUBLICSHARE_DIR="$HOME/公共"
XDG_DOCUMENTS_DIR="$HOME/⽂档"
XDG_MUSIC_DIR="$HOME/⾳乐"
XDG_PICTURES_DIR="$HOME/图⽚"
XDG_VIDEOS_DIR="$HOME/视频"<br><br><br>不显⽰的原因是
1XDG_DESKTOP_DIR="$HOME/"<br>……<br><br>在$HOME/ 添加桌⾯的⽬录就⾏了。<br>如果是英⽂就是"$HOME/DeskTop" vim ~zhousc/.config/user-dirs.dirs
centos vim命令2、在桌⾯上添加图标
cat /usr/local/bin/desktop-shotcut.bash
1 2 3 4 5 6 7 8 9 10 11 12 13source~/.config/user-dirs.dirs
ln-s /usr/share/applications/firefox.desktop $XDG_DESKTOP_DIR/firefox.desktop
ln-s /usr/share/applications/mozilla-thunderbird.desktop $XDG_DESKTOP_DIR/mozilla-thunderbird.desktop ln-s /usr/share/applications/pidgin.desktop $XDG_DESKTOP_DIR/pidgin.desktop
ln-s /usr/share/applications/spark.desktop $XDG_DESKTOP_DIR/spark.desktop
ln-s /usr/share/applications/shotgun.desktop $XDG_DESKTOP_DIR/shotgun.desktop
#指定⽤户添加不同的桌⾯图标
if[[ $USER == lisi ]]|| [[ $USER == zhaoliu ]]
then
ln-s /usr/share/applications/recorder.desktop $XDG_DESKTOP_DIR/recorder.desktop
fi
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论