Posts

Posts uit juni, 2020 tonen

How to Make Your MP3 Songs Louder

Adjusting MP3 Volume with Audacity Step 1 Open Audacity. Use the menu "File" > "Open" and select the desired file that you want to adjust. Step 2 Select "Effect" > "Amplify." Step 3 Adjust the decibel level to the desired level. Use the "Preview" option to test the new volume. Step 4 Save the file.

How to Make Songs the Same Volume in Audacity

If your digital music collection contains songs recorded or mastered at different volume levels, listening to music on your computer can involve constantly adjusting the volume control. You can use Audacity to make all the songs in your collection play back at the same volume. The process of equalizing volume levels is known as normalization; Audacity includes a built-in "Normalize" effect you can apply to all the songs in your music library. Step 1 Launch Audacity. Open the "File" menu and select "Import." Click "Audio" to open a file browser window. Step 2 Navigate to the directory containing the songs you want to make the same volume. Press and hold the "Ctrl" key, then click each of the songs. Click the "Open" button once you've selected all the songs you desire. Step 3 Press "Ctrl+A" simultaneously to select all the songs once you've imported them. Step 4 Click &

Disable GRUB delay

Afbeelding
When you boot into your Solus system, most likely you see this GRUB screen. You have either to wait 5 seconds or to press enter in order to proceed with the booting process. Unless you dual-boot your Solus with other systems, I think it is worth disabling this delay. To disable it, you need to edit the file /etc/default/grub : sudo nano /etc/default/grub And change the delay value to 0 seconds, by setting GRUB_TIMEOUT=0 : Then update GRUB: sudo update-grub After the reboot, you won’t see the GRUB menu anymore and you will boot your Solus Linux right away.

Solus 3rd Party Repository

These applications cannot be included in the primary repository due to licensing issues. Browsers Google Chrome sudo eopkg bi --ignore-safety https://raw.githubusercontent.com/getsolus/3rd-party/master/network/web/browser/google-chrome-stable/pspec.xml sudo eopkg it google-chrome-*.eopkg;sudo rm google-chrome-*.eopkg Google Chrome (Beta) sudo eopkg bi --ignore-safety https://raw.githubusercontent.com/getsolus/3rd-party/master/network/web/browser/google-chrome-beta/pspec.xml sudo eopkg it google-chrome-*.eopkg;sudo rm google-chrome-*.eopkg Google Chrome (Dev/Unstable) sudo eopkg bi --ignore-safety https://raw.githubusercontent.com/getsolus/3rd-party/master/network/web/browser/google-chrome-unstable/pspec.xml sudo eopkg it google-chrome-*.eopkg;sudo rm google-chrome-*.eopkg Communication Franz sudo eopkg bi --ignore-safety https://raw.githubusercontent.com/getsolus/3rd-party/master/network/im/franz/pspec.xml sudo eopkg it franz*.eopkg;sudo rm franz*.eopkg Google Talk Browser Plugin

change the application icon (the nine dots) to the Solus icon (the sailboat)

First you need the Sardi icon pkg installed, search for it in the Software Center. Then you will find the Solus (sailboat) in usr/share/icons/Sardi/scalable/places start-here-symbolic-solus.svg Next open Budgie Desktop Settings - Panel - Budgie Menu -Menu Icon - now point to the above address and save and done.

Checking your Boot Up Time on Solus

Afbeelding
To check your boot up time on Solus, open a terminal and execute the following command: systemd-analyze Here's an example on my machine

History and Software Rollback

Solus provides a history and rollback feature via its package manager, eopkg. This feature allows you to see when your repository was last updated, actions such as installation, removal, and upgrading of software. History You can see the history from eopkg by using: sudo eopkg history Rollback To rollback your system, first use the above history command to check what the transaction / operation number was. Then, we use the following command: sudo eopkg history -t number The number, in this case, is the operation before the one you want to change. So if the number was 100 , then you would use 99 .