aboutsummaryrefslogtreecommitdiff
path: root/blog/2023-01-08-fedora-remove-login-manager.org
diff options
context:
space:
mode:
authorChristian Cleberg <hello@cleberg.net>2024-01-08 20:11:17 -0600
committerChristian Cleberg <hello@cleberg.net>2024-01-08 20:11:17 -0600
commit25945b8fead989cca09a23983623b63ce36dcc0c (patch)
tree0dfc869ce8b028e04ce9da196af08779780915ce /blog/2023-01-08-fedora-remove-login-manager.org
parent22b526be60bf4257c2a1d58a5fad59cf6b044375 (diff)
downloadcleberg.net-25945b8fead989cca09a23983623b63ce36dcc0c.tar.gz
cleberg.net-25945b8fead989cca09a23983623b63ce36dcc0c.tar.bz2
cleberg.net-25945b8fead989cca09a23983623b63ce36dcc0c.zip
feat: total re-write from Emacs org-mode to Zola markdown
Diffstat (limited to 'blog/2023-01-08-fedora-remove-login-manager.org')
-rw-r--r--blog/2023-01-08-fedora-remove-login-manager.org47
1 files changed, 0 insertions, 47 deletions
diff --git a/blog/2023-01-08-fedora-remove-login-manager.org b/blog/2023-01-08-fedora-remove-login-manager.org
deleted file mode 100644
index eedb47b..0000000
--- a/blog/2023-01-08-fedora-remove-login-manager.org
+++ /dev/null
@@ -1,47 +0,0 @@
-#+title: Remove the Login Manager from Fedora i3
-#+date: 2023-01-08
-
-** Fedora i3's Login Manager
-:PROPERTIES:
-:CUSTOM_ID: fedora-i3s-login-manager
-:END:
-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
-:PROPERTIES:
-:CUSTOM_ID: removing-the-login-manager
-:END:
-In order to remove the login manager, simply uninstall the package.
-
-#+begin_src sh
-sudo dnf remove lightdm
-#+end_src
-
-** Launching i3 Manually
-:PROPERTIES:
-:CUSTOM_ID: launching-i3-manually
-:END:
-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