This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Update and upgrade packages without user confirmation | |
sudo apt update -y && sudo apt upgrade -y | |
# Install ca-certificates and curl | |
sudo apt-get update -y | |
sudo apt-get install -y ca-certificates curl | |
# Add Docker's official GPG key |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<scheme name="Flexoki IntelliJ v1" version="142" parent_scheme="Darcula"> | |
<metaInfo> | |
<property name="created">2023-10-10T19:36:07</property> | |
<property name="ide">PhpStorm</property> | |
<property name="ideVersion">2023.2.2.0.0</property> | |
<property name="modified">2023-10-10T19:36:23</property> | |
<property name="originalScheme">Flexoki IntelliJ v1</property> | |
</metaInfo> | |
<colors> | |
<option name="ADDED_LINES_COLOR" value="879a39" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.audio-player-loudnesshead { | |
width: var(--font-size-small); | |
height: var(--font-size-small); | |
background: var(--color-5); | |
border-radius: 50%; | |
z-index: 1; | |
position: absolute; | |
left: 50%; | |
transform: translateY(-50%) translateX(-50%) translateY(var(--font-size-small)); |