siduck / dotfiles

dotfiles for my beautiful rices!
889 stars 75 forks source link

what does sx do? #8

Closed peppapig450 closed 2 years ago

peppapig450 commented 2 years ago

I couldnt find documentation for it anywhere, and I am curious what it does because it looks interesting

siduck commented 2 years ago

I couldnt find documentation for it anywhere, and I am curious what it does because it looks interesting

it starts a xorg server. I dont use a display manager so I directly run xorg from cli , Most use startx but sx's more minimal.

(My .xinitrc for example) image

as you can see in the .xinitrc , there are cases of different wms being used. the default one is dwm.

startx (in tty, and this will run dwm)
sx sh ~/.xinitrc (will do the same!)
(To not run the default wm)

startx bsp
sx sh ~/.xinitrc bsp 

I dont want the long commands for sx so i made small aliases for them.

siduck commented 2 years ago

https://github.com/Earnestly/sx

peppapig450 commented 2 years ago

ohhhhh that's how you use it. Thanks!