aboutsummaryrefslogtreecommitdiff
path: root/blog/fedora-login-manager/index.org
diff options
context:
space:
mode:
authorChristian Cleberg <[email protected]>2024-03-29 01:30:23 -0500
committerChristian Cleberg <[email protected]>2024-03-29 01:30:23 -0500
commit07c42d3ad17060131e822f5816d2057cd1753b1b (patch)
tree205e844650144648e58700df2b632c89298904d4 /blog/fedora-login-manager/index.org
parentc71a52cb7a80a102e58bd5465e994225ea98c44f (diff)
downloadcleberg.net-07c42d3ad17060131e822f5816d2057cd1753b1b.tar.gz
cleberg.net-07c42d3ad17060131e822f5816d2057cd1753b1b.tar.bz2
cleberg.net-07c42d3ad17060131e822f5816d2057cd1753b1b.zip
massive re-write from org-publish to weblorg
Diffstat (limited to 'blog/fedora-login-manager/index.org')
-rw-r--r--blog/fedora-login-manager/index.org40
1 files changed, 0 insertions, 40 deletions
diff --git a/blog/fedora-login-manager/index.org b/blog/fedora-login-manager/index.org
deleted file mode 100644
index 861a174..0000000
--- a/blog/fedora-login-manager/index.org
+++ /dev/null
@@ -1,40 +0,0 @@
-#+title: How to Remove the Login Manager from Fedora i3
-#+date: 2023-01-08
-#+description: Learn how to completely remove the login manager from Fedora i3.
-#+filetags: :linux:
-
-* 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