change some docs

This commit is contained in:
speediegq 2022-10-24 21:52:19 +02:00
parent 5140710763
commit 9bb740e325
4 changed files with 5 additions and 3 deletions

View file

@ -25,5 +25,5 @@ You can edit the status bar simply by editing 'status' and running 'make clean i
You can also configure it by editing '~/.config/speedwm-de/status/config'.
If you want to change status bar, edit options.h and set 'static char status' to your status bar binary (must be in $PATH).
Alternatively, you can also set "speedwm.status: <statusbar>" in .Xresources (See .Xresources and Pywal).
Alternatively, you can also set it in .Xresources (See .Xresources and Pywal).

View file

@ -5,6 +5,7 @@ Colors can be reloaded on-the-fly using the built in wallpaper utility. In order
Note that the 'xrdb' dependency is required for both pywal and .Xresources support.
Below is a list of all .Xresources values you can define. The .Xresources file should be placed in ~ or ~/.config by the user.
Below is a list of all .Xresources values you can define. The .Xresources file should be placed in ~ or ~/.config by the user. However ~/.config/speedwm-de/speedwmrc should be created automatically, which can (and should most of the time) be used instead.
If it is not or you want it somewhere else, you can edit 'autostart.h' and 'make clean install'.

View file

@ -1,6 +1,7 @@
-- Switching run launcher --
Some users may prefer to use a different run launcher than dmenu.
Previously all scripts bundled would only run dmenu from $PATH but you can now switch run launcher very easily.
- Edit options.h and change RUN to your run launcher
- Add "export RUNLAUNCHER=<runlauncher>" to your .<shell>rc

View file

@ -1,7 +1,7 @@
-- Additional note on autostart --
If you wish to add autostart entries without recompiling, consider using $HOME/.config/speedwm-de/autostart.sh. This is a path added to autostart.h and you can fill it with anything you want.
Do note that it will NOT just run once. It will run every time you restart and start speedwm (signum 30 and 31 count as well).
Do note that it will NOT just run once. It will run every time you restart and start speedwm (signals count as well).
To get around this, you may wrap stuff in a function in the script and have some way of checking if it has ran before. If it hasn't, call the function.
An alternative is to use the $HOME/.config/speedwm-de/autostart_once.sh path. This one is autostarted by speedwm_run and is therefore not hardcoded and not affected by speedwm restarting. Just like the previous autostart script, it does not exist so you need to create it.