初创建于: 2022-03-27 16:20
最近迁到了 xfce4
在尝试了 kde, gnome, i3 之后, 感觉还是 xfce 比较好
当然 i3 依旧在用, 但是部分应用窗口在 i3 下的显示很奇怪, 毕竟 i3 只是一个窗口管理器.
必要软件包
在安装 xfce 基础包之后, 还需要安装一部分额外的包:
xfce4-pulseaudio-plugin
在 panel 上显示声音network-manager-applet
在 panel 上显示网络gvfs
使用回收站thunar-archive-plugin
该插件只是提供一个接口, 真正的解压软件需要另外安装;xarchive
thunar-media-tag-plugin
light-locker
与 loghtdm 配套的锁屏, 安装后需执行命令 :
xfconf-query --create -c xfce4-session -p /general/LockCommand -t string -s "light-locker-command --lock"
杂项设置
自启动 Conky 有多个实例
所有应用程序 \(\rightarrow\) 注销 \(\rightarrow\) 取消“保存会话用于将来登录” \(\rightarrow\) 重启
Thunar
隐藏菜单栏
菜单栏被隐藏后可使用快捷键 Ctrl+M
呼出
归档管理器
使用 xarchiver
和 file-roller
之后, 感觉并不满意. xarchiver
太老旧, file-roller
好像不是用 gtk 写的, 和 gtk 主题不能匹配.
最终选择了 peazip
, 但是需要做一些设置 :
# 下载 peazip 的 gtk 版本
paru -S peazip-gtk2-bin
创建文件 /usr/lib/xfce4/thunar-archive-plugin/peazip.tap
:
#!/bin/sh
#
# peazip.tap - Wrapper script to create and extract archive files
# in Thunar, via the thunar-archive-plugin, using the
# peazip.
#
# $Id$
#
# Copyright (c) 2006 Benedikt Meurer <[email protected]>.
#
# This program is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the Free
# Software Foundation; either version 2 of the License, or (at your option)
# any later version.
#
# This program is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
# more details.
#
# You should have received a copy of the GNU General Public License along with
# this program; if not, write to the Free Software Foundation, Inc., 59 Temple
# Place, Suite 330, Boston, MA 02111-1307 USA.
#
# determine the action and the folder, $@ then contains only the files
action=$1; shift;
folder=$1; shift;
# check the action
case $action in
create)
exec peazip "-add2archive-add" "$@"
;;
extract-here)
exec peazip "-ext2here" "$@"
;;
extract-to)
exec peazip "-ext2to" "$@"
;;
*)
echo "Unsupported action '$action'" >&2
exit 1
esac
刷新数据库 :
sudo update-desktop-database /usr/share/applications
然后就可以在 thunar 中使用 peazip 作为归档管理器了
AUR Packages
记录一下正在使用的 AUR 中的包
LAPTOP
- bcwc-pcie-git (摄像头)
- google-chrome
- jdk11
- jdk8
- peazip-gtk2-bin
- ttf-symbola
- ttf-wps-fonts
- wemeet-bin
- wps-office-cn
- wps-office-mui-zh-cn
- yesplaymusic
PC
- google-chrome
- jdk11
- jdk8
- peazip-gtk2-bin
- ttf-symbola
- ttf-wps-fonts
- wemeet-bin
- wps-office-cn
- wps-office-mui-zh-cn
- yesplaymusic
2022-06-05 20:01 : 已经用 KDE 辽
2022-07-03 : 又换回 XFCE 辽
主题设置
MacOS 的样式确实好看, 尝试将 xfce 伪装成 xfce 的样子
标签:xfce4,窗口,--,配置,peazip,theme,设置,XFCE From: https://www.cnblogs.com/Corona09/p/17038883.html