diff options
author | Christian Cleberg <hello@cleberg.net> | 2024-04-27 17:01:13 -0500 |
---|---|---|
committer | Christian Cleberg <hello@cleberg.net> | 2024-04-27 17:01:13 -0500 |
commit | 74992aaa27eb384128924c4a3b93052961a3eaab (patch) | |
tree | d5193997d72a52f7a6d6338ea5da8a6c80b4eddc /content/blog/2023-01-08-fedora-login-manager.md | |
parent | 3def68d80edf87e28473609c31970507d9f03467 (diff) | |
download | cleberg.net-74992aaa27eb384128924c4a3b93052961a3eaab.tar.gz cleberg.net-74992aaa27eb384128924c4a3b93052961a3eaab.tar.bz2 cleberg.net-74992aaa27eb384128924c4a3b93052961a3eaab.zip |
test conversion back to markdown
Diffstat (limited to 'content/blog/2023-01-08-fedora-login-manager.md')
-rw-r--r-- | content/blog/2023-01-08-fedora-login-manager.md | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/content/blog/2023-01-08-fedora-login-manager.md b/content/blog/2023-01-08-fedora-login-manager.md new file mode 100644 index 0000000..2f1fdfa --- /dev/null +++ b/content/blog/2023-01-08-fedora-login-manager.md @@ -0,0 +1,45 @@ ++++ +date = 2023-01-08 +title = "How to Remove the Login Manager from Fedora i3" +description = "" +draft = false ++++ + +# Fedora i3\'s Login Manager + +Since I use the i3 spin of Fedora Workstation, I don\'t like to have a +login manager installed by default. As of the current version of Fedora +i3, the default login manager is LightDM. + +If this is no longer the case, you can search for currently-installed +packages with the following command and see if you can identify a +different login manager. + +```sh +sudo dnf list installed +``` + +# Removing the Login Manager + +In order to remove the login manager, simply uninstall the package. + +```sh +sudo dnf remove lightdm +``` + +# Launching i3 Manually + +In order to launch i3 manually, you need to set up your X session +properly. To start, create or edit the `~/.xinitrc` file to +include the following at the bottom. + +``` config +exec i3 +``` + +Now, whenever you log in to the TTY, you can launch your desktop with +the following command. + +```sh +startx +``` |