changes for plasma wayland and firefox css

This commit is contained in:
Chris Cochrun 2022-07-07 06:12:33 -05:00
parent bf0de64317
commit 9bb3bceeda
7 changed files with 12 additions and 14 deletions

View file

@ -474,10 +474,6 @@ Notice how I am including all of my software here. It may be a big file, but hav
hardware.acpilight.enable = lib.mkDefault true; hardware.acpilight.enable = lib.mkDefault true;
services.udev.extraRules = ''
SUBSYSTEM=="pci", ATTR{vendor}=="0x8086", ATTR{device}=="0xa0e0", ATTR{power/control}="on"
'';
networking.hostName = "syl"; # Define your hostname. networking.hostName = "syl"; # Define your hostname.
networking.networkmanager.enable = true; networking.networkmanager.enable = true;
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant. # networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.

View file

@ -102,6 +102,10 @@ the close button is positioned to the far right */
max-height: 10px !important; max-height: 10px !important;
} }
.tab-background[selected]:-moz-lwtheme {
outline: none !important;
}
.tab-loading-burst { .tab-loading-burst {
max-height: 20px !important; max-height: 20px !important;
} }

View file

@ -8,7 +8,7 @@ geometry=90%:90%
hwdec=auto hwdec=auto
rtsp-transport=udp rtsp-transport=udp
speed=1.95 speed=1.95
# gpu-context=wayland gpu-context=wayland
# ytdl-path=yt-dlp # ytdl-path=yt-dlp
ytdl-format=bestvideo[height<=?720][fps<=?30]+bestaudio/best ytdl-format=bestvideo[height<=?720][fps<=?30]+bestaudio/best

View file

@ -4,5 +4,5 @@
# echo 100 - $(mpstat | rg all | cut -d \ -f43) | bc # echo 100 - $(mpstat | rg all | cut -d \ -f43) | bc
cpu="$(mpstat 1 1 | rg Average | awk '{print $3+$4+$5}' | sed 's/\(.*\)/\1%/g')" cpu="$(mpstat 1 1 | rg Average | awk '{print $3+$4+$5}' | sed 's/\(.*\)/\1%/g')"
echo "$cpu | font='VictorMono Nerd Font' color=#ff9f43 size=11" echo "$cpu"
# echo " $cpu | color=#D75F00 font='VictorMono Nerd Font' size=11" # echo " $cpu | color=#D75F00 font='VictorMono Nerd Font' size=11"

View file

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
# Get the percentage of used memory and print it # Get the percentage of used memory and print it
read used total <<< $(free -m | awk '/Mem/{printf $2" "$3}') read used total <<< $(free -m | awk '/Mem/{printf $2" "$3}')
@ -7,5 +7,6 @@ percent=$(bc -l <<< "100 * $total / $used")
mem=$(awk -v u=$used -v t=$total -v p=$percent 'BEGIN {printf "%sMi/%sMi %.1f% ", t, u, p}'| awk '{printf $2}') mem=$(awk -v u=$used -v t=$total -v p=$percent 'BEGIN {printf "%sMi/%sMi %.1f% ", t, u, p}'| awk '{printf $2}')
echo "$mem | color=#9aedfe font='VictorMono Nerd Font' size=11" echo "$mem"
# echo " $mem | color=#9aedfe font='VictorMono Nerd Font' size=11"
# echo " $mem | color=#007687 font='VictorMono Nerd Font' size=11" # echo " $mem | color=#007687 font='VictorMono Nerd Font' size=11"

View file

@ -1,5 +1,6 @@
#!/bin/sh #!/usr/bin/env sh
muunread="$(mu find flag:unread AND NOT flag:trashed AND NOT maildir:\"/outlook/Junk\" AND NOT maildir:\"/office/Junk Email\" AND NOT maildir:\"/outlook/Deleted\" AND NOT maildir:\"/office/Deleted Items\" | wc -l)" muunread="$(mu find flag:unread AND NOT flag:trashed AND NOT maildir:\"/outlook/Junk\" AND NOT maildir:\"/office/Junk Email\" AND NOT maildir:\"/outlook/Deleted\" AND NOT maildir:\"/office/Deleted Items\" | wc -l)"
echo "$muunread | color=#f3f99d font='VictorMono Nerd Font' size=11" echo "$muunread"
# echo " $muunread | color=#f3f99d font='VictorMono Nerd Font' size=11"
# echo " $muunread | color=#AF8700 font='VictorMono Nerd Font' size=11" # echo " $muunread | color=#AF8700 font='VictorMono Nerd Font' size=11"

View file

@ -24,10 +24,6 @@
hardware.acpilight.enable = lib.mkDefault true; hardware.acpilight.enable = lib.mkDefault true;
services.udev.extraRules = ''
SUBSYSTEM=="pci", ATTR{vendor}=="0x8086", ATTR{device}=="0xa0e0", ATTR{power/control}="on"
'';
networking.hostName = "syl"; # Define your hostname. networking.hostName = "syl"; # Define your hostname.
networking.networkmanager.enable = true; networking.networkmanager.enable = true;
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant. # networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.