aboutsummaryrefslogtreecommitdiff
path: root/content/blog/2023-01-08-fedora-login-manager.org
diff options
context:
space:
mode:
authorChristian Cleberg <hello@cleberg.net>2024-07-28 19:46:20 -0500
committerChristian Cleberg <hello@cleberg.net>2024-07-28 19:46:20 -0500
commit2be43cc479dfd4cfb621f14381330c708291e324 (patch)
tree7ac50f99425c5524c0820360754045b80d1bafcc /content/blog/2023-01-08-fedora-login-manager.org
parentafe76ac7d7498b862abaa623790b91410e34574d (diff)
downloadcleberg.net-2be43cc479dfd4cfb621f14381330c708291e324.tar.gz
cleberg.net-2be43cc479dfd4cfb621f14381330c708291e324.tar.bz2
cleberg.net-2be43cc479dfd4cfb621f14381330c708291e324.zip
conversion from Zola to Weblorg
Diffstat (limited to 'content/blog/2023-01-08-fedora-login-manager.org')
-rw-r--r--content/blog/2023-01-08-fedora-login-manager.org43
1 files changed, 43 insertions, 0 deletions
diff --git a/content/blog/2023-01-08-fedora-login-manager.org b/content/blog/2023-01-08-fedora-login-manager.org
new file mode 100644
index 0000000..8b8a382
--- /dev/null
+++ b/content/blog/2023-01-08-fedora-login-manager.org
@@ -0,0 +1,43 @@
+#+date: <2023-01-08>
+#+title: How to Remove the Login Manager from Fedora i3
+#+description:
+
+
+* 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.
+
+#+begin_src sh
+sudo dnf list installed
+#+end_src
+
+* Removing the Login Manager
+
+In order to remove the login manager, simply uninstall the package.
+
+#+begin_src sh
+sudo dnf remove lightdm
+#+end_src
+
+* 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.
+
+#+begin_src config
+exec i3
+#+end_src
+
+Now, whenever you log in to the TTY, you can launch your desktop with
+the following command.
+
+#+begin_src sh
+startx
+#+end_src