2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

xmonadを使ってみる

Last updated at Posted at 2018-02-03

参考にしたもの

xmonadって何?

タイル型のウィンドウマネージャー
私はFedora26で動かしてます。

インストール

sudo dnf install -y xmonad

設定ファイルを作成

cat <<EOF > ~/.xmonad/xmonad.hs

# http://code.haskell.org/xmonad/man/xmonad.hs
# とかも参考にして書き込む

EOF

キーマップ & 入力

キーボード配列を日本語にする

setxkbmap -layout jp

ibus-mozcのデーモンを起動する

ibus-daemon --xim &

ibusの設定

ibus-setup

CapslockをCtrlにする

setxkbmap -option ctrl:nocaps

画面の輝度

インストール

sudo dnf install -y xbacklight
sudo cat <<EOF > /etc/X11/xorg.conf
Section "Device"
Identifier  "Card0"
Driver      "intel"
Option      "Backlight"  "NAME OF THE FOLDER"
EndSection
EOF
mod-shift-return  : ターミナルを起動
mod-p             : dmenuを起動(キーワードランチャ)
mod-shift-p       : gmrunを起動(キーワードランチャ)
mod-shift-c       : フォーカスウィンドウを閉じる
mod-space         : レイアウトアルゴリズムを変更する(縦分割→横分割→フル)
mod-shift-space   : レイアウトアルゴリズムをデフォルトに戻す
mod-n             : フォーカスウィンドウを正しいサイズに戻す
mod-tab/shift-tab : ウィンドウフォーカスを移動
mod-j/k           : ウィンドウフォーカスを移動
mod-m             : マスターウィンドウへフォーカスを移動
mod-return        : フォーカスウィンドウをマスターパネルとスワップ
mod-shift-j/k     : フォーカスウィンドウを隣りのウィンドウとスワップ
mod-h/l           : マスターパネルのサイズ比率を狭める/広げる
mod-t             : フローティングウィンドウをタイルに戻す
mod-,/.           : マスターエリアのウィンドウ数を増やす/減らす
mod-b             : ステータスバーのギャップをトグルする
mod-shift-q       : Xmonadを終了
mod-q             : Xmonadを再起動
mod-1~9           : ワークスペースを切り替え
mod-shift-1~9     : フォーカスウィンドウを指定ワークスペースへ移動
mod-w/e/r         : スクリーンを切り替え(1, 2, 3)
mod-shift-w/e/r   : フォーカスウィンドウを指定スクリーンへ移動(1, 2, 3)
mod-button1       : ウィンドウのフローティングと移動
mod-button2       : フローティングウィンドウを最前面に移動
mod-button3       : フローティングウィンドウのリサイズ
```set
2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?