1
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?

hyprlandを使ってみる

1
Posted at

早速hyprlandを触ってみようと思う

1 super+Qでターミナルを開く

2 自分の環境だとデフォルトでネットワークサービスが自動起動になっていなかったので設定します。

sudo systemctl start NetworkManager
sudo systemctl enable NetworkManeger

 先ほど設定したwifiに接続します

nmcli device wifi list

 接続できるwifiの一覧が表示されます

 接続したいwifiを確認したら

nmcli device wifi connect <ssid名> password <パスワード>

 で設定することができます

3 キーボードが日本語配列に対応してなかったので再度設定しなおします。

vim ~/.config/hypr/hyprland.lua

 hyprland.luaの設定を書き換えます。

input {
    kb_layout = jp
    }

4 エラーが出てるので消すのを試みる

you're using an autogenerated configといったエラーメッセージが出てるのでAI君に聞きながら原因を究明してみる

vim ~/.config/hypr/hyprland.lua

ここが怪しいので覗いてみる

autogenerated = true

ここがtrueになっていたのが原因のようです
falseに書き換えます

これでおおむね触れるようになりました。

ここから様々なソフトウェアを入れて自分好みにカスタマイズしていきたいと思います。

1
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
1
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?