Fix height on firefox
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -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
|
||||
@@ -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=???
|
||||
|
||||
11
install.sh
11
install.sh
@@ -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 ---
|
||||
|
||||
|
||||
Reference in New Issue
Block a user