aboutsummaryrefslogtreecommitdiff
path: root/content/blog/2023-01-08-fedora-remove-login-manager.md
diff options
context:
space:
mode:
authorChristian Cleberg <[email protected]>2024-03-04 22:34:28 -0600
committerChristian Cleberg <[email protected]>2024-03-04 22:34:28 -0600
commitc71a52cb7a80a102e58bd5465e994225ea98c44f (patch)
treefcbb56dc023c1e490df70478e696041c566e58b4 /content/blog/2023-01-08-fedora-remove-login-manager.md
parent566a5ce4ec810bf5f4a941fb0c27fa215a0ad458 (diff)
downloadcleberg.net-c71a52cb7a80a102e58bd5465e994225ea98c44f.tar.gz
cleberg.net-c71a52cb7a80a102e58bd5465e994225ea98c44f.tar.bz2
cleberg.net-c71a52cb7a80a102e58bd5465e994225ea98c44f.zip
initial migration to test org-mode
Diffstat (limited to 'content/blog/2023-01-08-fedora-remove-login-manager.md')
-rw-r--r--content/blog/2023-01-08-fedora-remove-login-manager.md44
1 files changed, 0 insertions, 44 deletions
diff --git a/content/blog/2023-01-08-fedora-remove-login-manager.md b/content/blog/2023-01-08-fedora-remove-login-manager.md
deleted file mode 100644
index e233809..0000000
--- a/content/blog/2023-01-08-fedora-remove-login-manager.md
+++ /dev/null
@@ -1,44 +0,0 @@
-+++
-date = 2023-01-08
-title = "How to Remove the Login Manager from Fedora i3"
-description = "Learn how to completely remove the login manager from Fedora i3."
-+++
-
-## 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
-```