1

Using fluxbox with Linux Mint.

I have this script to set dual screen in fluxbox

xrandr --output DP-1 --off --output DVI-I-1 --mode 1600x900 --pos 1440x0 --rotate normal --output DVI-D-1 --mode 1440x900 --pos 0x0 --rotate normal --output HDMI-1 --off

However my Login screen is not extended

Is there anyway I can set this script to run when the OS start?

Or (if possible) Boot linux without any desktop manager, start X and initialize fluxbox in command line.

user.dz
  • 49,176

1 Answers1

0

You could use

sudo apt-get purge lightdm 

and before you accept the changes make sure it is not also going to remove any applications you want to keep or need to use in the process.

Do the same for gdm or gdm3 and any other dm(s) that may still be installed; I've never done it but it should boot to one of the tty screens if no dm is present.

Use the command,

startx

after you login.

dbus should already be started, however, if it's not, you won't be able to start X without it. To start dbus use:

sudo service dbus start
mchid
  • 44,904
  • 8
  • 102
  • 162