notify-send with crontab

 Under Manjaro (Arch), I had to do this: Figure out the value of DBUS_SESSION_BUS_ADDRESS:Terminal:echo $DBUS_SESSION_BUS_ADDRESSresult: unix:path=/run/user/1000/busTerminal:crontab -ein crontabTerminal:sudo -u YOUR_USER DISPLAY=:0 DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/1001/bus notify-send "Notification Title" "Notification body" ...

arch/manjaro switch intel/nvidia

 DisclaimerPLEASE IF YOU DON'T HAVE ANY EXPERIENCE WITH COMMAND CONSOLE DON'T TRY THIS, YOUR LINUX SYSTEM MIGHT STOP WORKINGinstall packageTerminal: sudo pamac build envycontrolswitch to inte graphics card Terminal: sudo envycontrol -s integratedTerminal:sudo rebootcheck working with integrated graphics if your computer doesn't show the login, try next step when force show console modeswitch to nvidiaTerminal:sudo envycontrol -s hybrid --rtd...

arch/manjaro how get old version package

install packageTerminal:sudo pacman -S downgradesearch version the package that you wantTerminal:sudo downgrade obs-studio --maxdepth 20 --ala-only--maxdepth 20: 20 result max --ala-only: only online package, exclude local packagesExample when you will run the commandafter you select the version for your package, the comand show you, this optionadd firefox to IgnorePkg? [y/n]If you answer "y", the package will no long be upgraded...

disable adjust mic volumen manjaro pulse audio

 Terminal:sudo vim /usr/share/pulseaudio/alsa-mixer/paths/analog-input-internal-mic.confTerminal:sudo vim /usr/share/pulseaudio/alsa-mixer/paths/analog-input-internal-mic.confUnder "[Element Internal Mic Boost]" set "volume" to "zero".Under "[Element Int Mic Boost]" set "volume" to "zero".Under "[Element Mic Boost]" set "volume" to "zero".example file: analog-input-internal-mic.confSource: https://askubuntu.com/a/736655 ...

how create composer package

 for this tutorial you need: docker even if you want use composer direct in your native system is valid, add a tutorial to install docker just in case.Tutorial docker: https://docs.docker.com/engine/install/github account https://github.com/packagist account https://packagist.org/create a folder, you must think the name package, because this is name the folderTerminal:mkdir -p query-log && cd query-logcreate a package composerTerminal:sudo docker run --rm --interactive --tty --volume...