style
This commit is contained in:
parent
690293057c
commit
937a1fd08a
2 changed files with 77 additions and 2 deletions
66
dotfiles/.config/waybar/style.css
Normal file
66
dotfiles/.config/waybar/style.css
Normal file
|
@ -0,0 +1,66 @@
|
||||||
|
* {
|
||||||
|
border: none;
|
||||||
|
border-radius: 0;
|
||||||
|
font-family: Roboto, Helvetica, Arial, sans-serif;
|
||||||
|
font-size: 18px;
|
||||||
|
min-height: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
window#waybar {
|
||||||
|
background: rgba(43, 48, 59, 0.5);
|
||||||
|
border-bottom: 3px solid rgba(100, 114, 125, 0.5);
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
#workspaces button {
|
||||||
|
padding: 0 5px;
|
||||||
|
background: transparent;
|
||||||
|
color: white;
|
||||||
|
border-bottom: 3px solid transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
#workspaces button.focused {
|
||||||
|
background: #64727D;
|
||||||
|
border-bottom: 3px solid white;
|
||||||
|
}
|
||||||
|
|
||||||
|
#mode, #clock, #battery {
|
||||||
|
padding: 0 10px;
|
||||||
|
margin: 0 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#mode {
|
||||||
|
background: #64727D;
|
||||||
|
border-bottom: 3px solid white;
|
||||||
|
}
|
||||||
|
|
||||||
|
#clock {
|
||||||
|
background-color: #64727D;
|
||||||
|
}
|
||||||
|
|
||||||
|
#battery {
|
||||||
|
background-color: #ffffff;
|
||||||
|
color: black;
|
||||||
|
}
|
||||||
|
|
||||||
|
#battery.charging {
|
||||||
|
color: white;
|
||||||
|
background-color: #26A65B;
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes blink {
|
||||||
|
to {
|
||||||
|
background-color: #ffffff;
|
||||||
|
color: black;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#battery.warning:not(.charging) {
|
||||||
|
background: #f53c3c;
|
||||||
|
color: white;
|
||||||
|
animation-name: blink;
|
||||||
|
animation-duration: 0.5s;
|
||||||
|
animation-timing-function: linear;
|
||||||
|
animation-iteration-count: infinite;
|
||||||
|
animation-direction: alternate;
|
||||||
|
}
|
13
setup.sh
13
setup.sh
|
@ -11,12 +11,20 @@ GREETDENVS="/etc/greetd/environments"
|
||||||
SWAYRUN="/usr/local/bin/sway-run.sh"
|
SWAYRUN="/usr/local/bin/sway-run.sh"
|
||||||
WAYLAND_ENABLE="/usr/local/bin/wayland_enablement.sh"
|
WAYLAND_ENABLE="/usr/local/bin/wayland_enablement.sh"
|
||||||
|
|
||||||
|
# Add linux-libre repo
|
||||||
|
wget -O - 'https://jxself.org/gpg.asc' | sudo apt-key add -
|
||||||
|
echo 'deb mirror://linux-libre.fsfla.org/pub/linux-libre/freesh/mirrors.txt freesh main
|
||||||
|
' | sudo tee /etc/apt/sources.list.d/linux-libre.list
|
||||||
|
|
||||||
# Add repo for tlpnuisudo
|
# Add repo for tlpnuisudo
|
||||||
curl 'https://keyserver.ubuntu.com/pks/lookup?op=get&search=0x1cc3d16e460a94ee17fe581cea8cacc073c3db2a' | sudo apt-key add -
|
wget -O - 'https://keyserver.ubuntu.com/pks/lookup?op=get&search=0x1cc3d16e460a94ee17fe581cea8cacc073c3db2a' | sudo apt-key add -
|
||||||
echo 'deb http://ppa.launchpad.net/linuxuprising/apps/ubuntu focal main
|
echo 'deb http://ppa.launchpad.net/linuxuprising/apps/ubuntu focal main
|
||||||
deb-src http://ppa.launchpad.net/linuxuprising/apps/ubuntu focal main
|
deb-src http://ppa.launchpad.net/linuxuprising/apps/ubuntu focal main
|
||||||
' | sudo tee etc/apt/sources.list.d/linuxuprising-apps.list
|
' | sudo tee /etc/apt/sources.list.d/linuxuprising-apps.list
|
||||||
|
|
||||||
|
# Update repos
|
||||||
sudo apt update
|
sudo apt update
|
||||||
|
|
||||||
# Install software from repo
|
# Install software from repo
|
||||||
sudo apt install \
|
sudo apt install \
|
||||||
acpi \
|
acpi \
|
||||||
|
@ -51,6 +59,7 @@ sudo apt install \
|
||||||
libxcb1-dev \
|
libxcb1-dev \
|
||||||
libxkbcommon-dev \
|
libxkbcommon-dev \
|
||||||
light \
|
light \
|
||||||
|
linux-libre \
|
||||||
lxappearance \
|
lxappearance \
|
||||||
meson \
|
meson \
|
||||||
mpv \
|
mpv \
|
||||||
|
|
Loading…
Add table
Reference in a new issue