2. インストール
「root」ユーザで
pkg install -y xorg ja-font-migmix
pkg install -y sddm sddm-freebsd-black-theme hal cursor-neutral-white-theme
pkg install -y enlightenment
2020年11月2日時点の「Enlightenment」のバージョンは、下記の通りでした。
$ pkg info enlightenment
enlightenment-0.24.2,2
Name : enlightenment
Version : 0.24.2,2
Installed on : Mon Nov 2 17:36:09 2020 JST
Origin : x11-wm/enlightenment
Architecture : FreeBSD:12:amd64
Prefix : /usr/local
Categories : enlightenment x11-wm
Licenses : BSD2CLAUSE
Maintainer : enlightenment@FreeBSD.org
WWW : https://www.enlightenment.org/
Comment : Artistic and fast X window manager
Options :
NLS : on
Shared Libs required:
libefreet_mime.so.1
libecore_input.so.1
libevas.so.1
libeldbus.so.1
libeio.so.1
libefreet.so.1
libecore_evas.so.1
libecore_con.so.1
libefreet_trash.so.1
libedje.so.1
libecore.so.1
libeina.so.1
libintl.so.8
libecore_ipc.so.1
libecore_x.so.1
libecore_input_evas.so.1
libemotion.so.1
libpulse.so.0
libemile.so.1
libecore_file.so.1
libelementary.so.1
libeet.so.1
Annotations :
FreeBSD_version: 1201000
repo_type : binary
repository : FreeBSD
Flat size : 35.3MiB
Description :
A very artistic and fast X window manager.
WWW: https://www.enlightenment.org/
バージョンが、「enlightenment-0.22.4_1,2」から「enlightenment-0.24.2,2」と微妙にあがっております。
3. SDDM カスタマイズ
ログイン画面の解像度を「1366x768」とし、キーボードレイアウトを「jp.106」にします。
「root」ユーザで
cat << EOF >> /usr/local/share/sddm/scripts/Xsetup
xrandr --output VGA-0 --mode 1366x768 --rate 60
setxkbmap -layout jp
EOF
ログイン画面のテーマとカーソルを変更します。
「root」ユーザのまま
sddm --example-config > /usr/local/etc/sddm.conf
vi /usr/local/etc/sddm.conf
[Theme]
# Current theme name
Current=breeze
# Cursor theme used in the greeter
CursorTheme=breeze_cursors
を下記へ変更します。
[Theme]
# Current theme name
Current=sddm-freebsd-black-theme
# Cursor theme used in the greeter
CursorTheme=Neutral++_White
4. ユーザからのシャットダウン・再起動を有効化する
インストール時のメッセージで表示されるのですが・・・。
「enlightenment」でデスクトップ環境下のユーザからのシャットダウン・再起動を有効にするには「enlightenment_sys」の権限を設定しなければなりません。
「root」ユーザで
chmod 4555 /usr/local/lib/enlightenment/utils/enlightenment_sys
逆に、一般ユーザからシャットダウンさせないようにするにはこの手順を行わないでください。
5. ユーザ用初期化ファイルの作成
「root」ユーザで
cat - << EOF >> /usr/share/skel/dot.xsession
#!/bin/sh
# set locale
export LC_ALL=ja_JP.UTF-8
export LANGUAGE=ja_JP.UTF-8
export LANG=ja_JP.UTF-8
#
setxkbmap -layout jp
/usr/local/bin/VBoxClient-all
EOF
chmod +x /usr/share/skel/dot.xsession
既存のログインユーザで
cp /usr/share/skel/dot.xsession ~/.xsession
6. /etc/rc.conf 編集
前項までインストール・設定したものを有効にします。
cat - << EOF >> /etc/rc.conf
polkitd_enable="YES"
EOF
service dbus enable
service hald enable
service sddm enable
7. ログインマネージャ起動
「root」ユーザで
service dbus start
service hald start
service sddm start
うまく設定できていれば、ログイン画面が表示されます。
ユーザ名・パスワードを入力してログインします。