2. インストール
pkg install -y xorg numlockx ja-font-migmix
pkg install -y sddm sddm-freebsd-black-theme hal cursor-neutral-white-theme
pkg install -y jwm
最終行の、「JWM」のインストールは、一瞬で終わります。
2020年6月26日の時点で「JWM」のバージョンは、下記の通りでした。
$ pkg info jwm
jwm-2.3.7
Name : jwm
Version : 2.3.7
Installed on : Fri Jun 26 14:51:37 2020 JST
Origin : x11-wm/jwm
Architecture : FreeBSD:11:amd64
Prefix : /usr/local
Categories : x11-wm
Licenses : MIT
Maintainer : woodsb02@FreeBSD.org
WWW : http://joewing.net/projects/jwm/
Comment : Joe's Window Manager
Options :
CAIRO : off
DEBUG : off
FRIBIDI : on
JPEG : on
NLS : on
PNG : on
SVG : off
XEXT : on
XFT : on
XINERAMA : on
XMU : on
XPM : on
XRENDER : on
Shared Libs required:
libXpm.so.4
libintl.so.8
libpng16.so.16
libXrender.so.1
libXext.so.6
libfreetype.so.6
libfribidi.so.0
libjpeg.so.8
libXft.so.2
libXmu.so.6
libXinerama.so.1
libX11.so.6
Annotations :
FreeBSD_version: 1103000
repo_type : binary
repository : FreeBSD
Flat size : 325KiB
Description :
JWM is a window manager for the X11 Window System. JWM is written in C
and uses only Xlib at a minimum, though additional libraries are
supported for extended functionality and features. JWM supports MWM and
Extended Window Manager Hints (EWMH).
WWW: http://joewing.net/projects/jwm/
「FreeBSD 12.1 RELEASE」でのインストール時と、変わっていません。
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. .desktop ファイルの作成
ログイン時に有効となるよう、「.desktop」ファイルを作成します。
「root」ユーザで
mkdir -pv /usr/local/share/xsessions
cat - << EOF >> /usr/local/share/xsessions/jwm.desktop
[Desktop Entry]
Name=JWM
Comment=A lightweight window manager for the X Windowing System
Exec=jwm
Terminal=false
TryExec=jwm
Type=Application
EOF
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
#
/usr/local/bin/VBoxClient-all
#
setxkbmap -layout jp
numlockx &
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"
dbus_enable="YES"
hald_enable="YES"
sddm_enable="YES"
EOF
7. ログインマネージャ起動
「root」ユーザで
service dbus start
service hald start
service sddm start
うまく設定できていれば、ログイン画面が表示されます。
ユーザ名・パスワードを入力してログインします。