awesome - FreeBSD 11.4 RELEASE - 環境構築

クラウディア 
1. 概要
2. インストール
3. SDDM カスタマイズ
4. ユーザ用初期化ファイルの作成
5. /etc/rc.conf 編集
6. ログインマネージャ起動

1. 概要

 下記のデスクトップ環境を構築する手順を記述します。  ここまでの時点で、システムインストールと「VirtualBox Guest Additions」の設定は終わっているものとします。  それぞれのインストール・設定に関しては、 「FreeBSD - デスクトップ環境構築 - 共通事項 - システムインストール」 「FreeBSD - デスクトップ環境構築 - 共通事項 - VirtualBox Guest Additions」  をご参照ください。
 項目   内容   備考 
ホスト Windows10 Version 2004
VitualBox Version 6.1.8
ゲスト FreeBSD 11.4 RELEASE
ログインマネージャ SDDM

2. インストール

 「root」ユーザで

pkg install -y xorg numlockx ja-font-migmix
pkg install -y sddm sddm-freebsd-black-theme hal cursor-neutral-white-theme
pkg install -y awesome
 2020年6月26日の時点で、「awesome」のバージョンは、下記の通りでした。

$ pkg info awesome
awesome-4.3_1,1
Name           : awesome
Version        : 4.3_1,1
Installed on   : Fri Jun 26 09:10:22 2020 JST
Origin         : x11-wm/awesome
Architecture   : FreeBSD:11:amd64
Prefix         : /usr/local
Categories     : x11-wm
Licenses       : GPLv2+
Maintainer     : dbaio@FreeBSD.org
WWW            : https://awesomewm.org/
Comment        : Highly configurable, next generation framework window manager
Options        :
        DBUS           : on
        DOCS           : on
        MANPAGES       : on
Shared Libs required:
        libxcb-cursor.so.0
        libglib-2.0.so.0
        libgobject-2.0.so.0
        libgdk_pixbuf-2.0.so.0
        libxcb-shape.so.0
        libxcb-xinerama.so.0
        libxdg-basedir.so.1
        libstartup-notification-1.so.0
        libdbus-1.so.3
        liblua-5.2.so
        libxkbcommon-x11.so.0
        libcairo.so.2
        libxcb-util.so.1
        libintl.so.8
        libxcb-xrm.so.0
        libxkbcommon.so.0
        libxcb-icccm.so.4
        libxcb-xkb.so.1
        libxcb-randr.so.0
        libxcb.so.1
        libxcb-render.so.0
        libxcb-xtest.so.0
        libxcb-keysyms.so.1
        libX11.so.6
Annotations    :
        FreeBSD_version: 1103000
        repo_type      : binary
        repository     : FreeBSD
Flat size      : 2.20MiB
Description    :
awesome is a highly configurable, next generation framework window
manager for X. It is very fast, small, dynamic, heavily extensible using
the Lua programming language, and licensed under the GNU GPLv2 license.

It is primarly targeted at power users, developers and any people
dealing with every day computing tasks and who want to have fine-grained
control on theirs graphical environment.

WWW: https://awesomewm.org/
 「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. ユーザ用初期化ファイルの作成

 「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
numlockx &
EOF
chmod +x /usr/share/skel/dot.xsession
 既存のログインユーザで

cp /usr/share/skel/dot.xsession ~/.xsession

5. /etc/rc.conf 編集

 前項までインストール・設定したものを有効にします。

cat - << EOF >> /etc/rc.conf

polkitd_enable="YES"
dbus_enable="YES"
hald_enable="YES"
sddm_enable="YES"
EOF

6. ログインマネージャ起動

 「root」ユーザで

service dbus start
service hald start
service sddm start
 うまく設定できていれば、ログイン画面が表示されます。  ユーザ名・パスワードを入力してログインします。
「awesome FreeBSD 11.4」-「ログイン画面」

ハイスピードプラン