Fix height on firefox

This commit is contained in:
2024-06-20 13:25:42 +01:00
parent 6252071258
commit d9a6b7e86c
4 changed files with 13 additions and 16 deletions

View File

@@ -1,9 +1,9 @@
body {
html, body {
font-family: "JetBrainsMono NF", system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
color: #ebdbb2;
text-align: center;
background: #282828;
height: 100vh;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;

View File

@@ -1,13 +0,0 @@
echo
#echo "Ctrl + C to stop scanning."
echo
hcitool scan # to get the MAC address of your device
bluetoothctl agent on
#bluetoothctl scan on | grep -E "NEW"
#bluetoothctl scan off &> /dev/null
echo
read -p "Mac address: " MAC_ADDRESS
bluetoothctl pair $MAC_ADDRESS
echo
read -p "Press ENTER after pairing."
bluetoothctl connect $MAC_ADDRESS

View File

@@ -3,6 +3,7 @@ feh --bg-scale "/home/trude/dotfiles/bg2.png" &
xrdb ~/.Xresources
dunst &
/usr/lib/policykit-1-gnome/polkit-gnome-authentication-agent-1 &
blueman-applet &
export XDG_SESSION_TYPE=???
export XDG_SESSION_DESKTOP=???

View File

@@ -15,7 +15,8 @@ dialog --erase-on-exit \
"2" "Install Dotfiles" "on"\
"3" "Install GitHub CLI" "off"\
"4" "Install AI Tools" "off"\
"5" "Install MultiMC" "off" 2> main.tmp
"5" "Install MultiMC" "off"\
"6" "Enable bluetooth support" "off" 2> main.tmp
main_menu=$( cat main.tmp )
rm main.tmp
mkdir logs
@@ -118,6 +119,14 @@ for selection in $main_menu; do
} | dialog --backtitle "$BACKTITLE" --programbox "Install Minecraft (MultiMC)" 30 90
fi
if [ "$selection" = "6" ]; then
# --- ENABLE BLUETOOTH ---
{
sudo apt-get install -y blueman
} | dialog --backtitle "$BACKTITLE" --programbox "Enable Bluetooth support (blueman)" 30 90
fi
if [ "$selection" = "2" ]; then
# --- INSTALL DOTFILES ---