Compare commits
19 Commits
36a25262d0
...
main
Author | SHA1 | Date | |
---|---|---|---|
144f573fda | |||
aa0f005523 | |||
f50bd38a76 | |||
692a072fad | |||
21785526a8 | |||
0c4f20e85f | |||
11e9509f9a | |||
d38683d277 | |||
a46b257653 | |||
69f24b5363 | |||
62e3563dba | |||
507c8e906c | |||
ca677259b1 | |||
d7b205489d | |||
2165ad6e9a | |||
0f8c8b15e9 | |||
9bf152a7a9 | |||
18c56607e5 | |||
015061ccba |
3
.bashrc
3
.bashrc
@ -13,7 +13,6 @@ alias shutdown='systemctl poweroff'
|
||||
alias v='nvim'
|
||||
alias vi='nvim'
|
||||
alias vim='nvim'
|
||||
alias rw='~/dotfiles/waybar/reload.sh'
|
||||
|
||||
# GIT
|
||||
alias gs="git status"
|
||||
@ -26,8 +25,6 @@ alias gsp="git stash; git pull"
|
||||
alias gcheck="git checkout"
|
||||
|
||||
# SCRIPTS
|
||||
alias gr='python ~/dotfiles/scripts/growthrate.py'
|
||||
|
||||
alias res1='xrandr --output DisplayPort-0 --mode 2560x1440 --rate 120'
|
||||
alias res2='xrandr --output DisplayPort-0 --mode 1920x1080 --rate 120'
|
||||
|
||||
|
36
eww/bar/eww.scss
Normal file
36
eww/bar/eww.scss
Normal file
@ -0,0 +1,36 @@
|
||||
/* @use "~/.cache/wal/colors.scss" as cols; */
|
||||
|
||||
* { all: unset; }
|
||||
|
||||
// Variable Color's
|
||||
$background: #1A1B26;
|
||||
$foreground: #A9B1D6;
|
||||
|
||||
$black: #24283B;
|
||||
$gray: #565F89;
|
||||
$red: #F7768E;
|
||||
$green: #73DACA;
|
||||
$yellow: #E0AF68;
|
||||
$blue: #7AA2F7;
|
||||
$magenta: #BB9AF7;
|
||||
$cyan: #7DCFFF;
|
||||
$white: $foreground;
|
||||
|
||||
.bar{
|
||||
background-color: $background;
|
||||
border-radius: 20px;
|
||||
padding: 5px;
|
||||
// font-size: contain;
|
||||
}
|
||||
|
||||
.icons{
|
||||
margin: .3rem;
|
||||
}
|
||||
|
||||
.launcher{
|
||||
color: $cyan;
|
||||
}
|
||||
|
||||
.tooltip {
|
||||
background-color: white;
|
||||
}
|
71
eww/bar/eww.yuck
Normal file
71
eww/bar/eww.yuck
Normal file
@ -0,0 +1,71 @@
|
||||
(defpoll checkupdates :interval "60s" "scripts/systemupdates --check")
|
||||
(defpoll checkupdatescount :interval "60s" "scripts/systemupdates --count")
|
||||
(defpoll current-brightness :interval "1s" "brightnessctl -m -d intel_backlight | awk -F, '{print substr($4, 0, length($4)-1)}' | tr -d '%'")
|
||||
|
||||
(defwindow bar
|
||||
:monitor 0
|
||||
:stacking "fg"
|
||||
:windowtype "dock"
|
||||
:exclusive true
|
||||
:geometry (geometry
|
||||
:x "0"
|
||||
:y "10"
|
||||
:width "98%"
|
||||
:height "3%"
|
||||
:anchor "top center"
|
||||
)
|
||||
(bar)
|
||||
)
|
||||
|
||||
|
||||
(defwidget bar []
|
||||
(box
|
||||
:class "bar"
|
||||
:orientatoin "h"
|
||||
;; :space-evenly false
|
||||
(box
|
||||
:orientation "h"
|
||||
:halign "start"
|
||||
(launcher)
|
||||
)
|
||||
(box
|
||||
:orientation "h"
|
||||
:halign "end"
|
||||
:hexpand "true"
|
||||
;; :space-evenly "false"
|
||||
(bright)
|
||||
(power)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(defwidget launcher []
|
||||
(box
|
||||
:orientation "h"
|
||||
(button
|
||||
:class "launcher"
|
||||
:tooltip "App Launcher"
|
||||
:onclick "bash ~/dotfiles/scripts/applauncher.sh"
|
||||
""
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(defwidget bright []
|
||||
(box
|
||||
:class "icons"
|
||||
:orientation "h"
|
||||
:space-evenly "false"
|
||||
:tooltip current-brightness
|
||||
""
|
||||
)
|
||||
)
|
||||
|
||||
(defwidget power []
|
||||
(button
|
||||
:class "icons"
|
||||
:tooltip "wlogout"
|
||||
:onclick "bash ~/dotfiles/scripts/wlogout.sh" "⏻"
|
||||
)
|
||||
)
|
||||
|
1
eww/eww.scss
Normal file
1
eww/eww.scss
Normal file
@ -0,0 +1 @@
|
||||
@import "./bar/eww.scss";
|
1
eww/eww.yuck
Normal file
1
eww/eww.yuck
Normal file
@ -0,0 +1 @@
|
||||
(include "./bar/eww.yuck")
|
4
eww/launch.sh
Executable file
4
eww/launch.sh
Executable file
@ -0,0 +1,4 @@
|
||||
#!/bin/bash
|
||||
|
||||
eww daemon
|
||||
eww open bar
|
24
eww/scripts/checksystemupdates
Executable file
24
eww/scripts/checksystemupdates
Executable file
@ -0,0 +1,24 @@
|
||||
#!/bin/sh
|
||||
# Requires pacman-contrib trizen
|
||||
|
||||
# Define threshholds for color indicators
|
||||
threshhold_green=0
|
||||
threshhold_yellow=25
|
||||
threshhold_red=100
|
||||
|
||||
# Calculate available updates pacman and aur (with trizen)
|
||||
if ! updates_arch=$(checkupdates 2> /dev/null | wc -l ); then
|
||||
updates_arch=0
|
||||
fi
|
||||
|
||||
if ! updates_aur=$(trizen -Su --aur --quiet | wc -l); then
|
||||
updates_aur=0
|
||||
fi
|
||||
|
||||
updates=$(("$updates_arch" + "$updates_aur"))
|
||||
|
||||
if [[ $updates -gt 0 ]]; then
|
||||
printf ''
|
||||
else
|
||||
printf ''
|
||||
fi
|
3
eww/scripts/network
Executable file
3
eww/scripts/network
Executable file
@ -0,0 +1,3 @@
|
||||
#!/bin/bash
|
||||
|
||||
kitty ~/dotfiles/scripts/networkmanager.sh
|
40
eww/scripts/systemupdates
Executable file
40
eww/scripts/systemupdates
Executable file
@ -0,0 +1,40 @@
|
||||
#!/bin/bash
|
||||
|
||||
if ! updates_arch=$(checkupdates 2> /dev/null | wc -l ); then
|
||||
updates_arch=0
|
||||
fi
|
||||
|
||||
if ! updates_aur=$(trizen -Su --aur --quiet | wc -l); then
|
||||
updates_aur=0
|
||||
fi
|
||||
|
||||
updates=$(("$updates_arch" + "$updates_aur"))
|
||||
|
||||
function check () {
|
||||
if [[ $updates -gt 0 ]]; then
|
||||
printf ''
|
||||
else
|
||||
printf ''
|
||||
fi
|
||||
}
|
||||
|
||||
function count () {
|
||||
printf '%s Update(s)' "$updates"
|
||||
}
|
||||
|
||||
function install () {
|
||||
echo "Starting install updates"
|
||||
echo ""
|
||||
|
||||
yay
|
||||
|
||||
notify-send "Update complete"
|
||||
}
|
||||
|
||||
if [[ $1 == "--check" ]]; then
|
||||
check
|
||||
elif [[ $1 == "--install" ]]; then
|
||||
install
|
||||
elif [[ $1 == "--count" ]]; then
|
||||
count
|
||||
fi
|
3
eww/scripts/wlogout
Executable file
3
eww/scripts/wlogout
Executable file
@ -0,0 +1,3 @@
|
||||
#!/bin/bash
|
||||
|
||||
wlogout
|
@ -6,5 +6,6 @@ exec-once = ~/dotfiles/scripts/lockscreentime.sh
|
||||
exec-once = ~/dotfiles/scripts/updatewal-swww.sh
|
||||
exec-once = ~/dotfiles/gtk/gtk.sh
|
||||
exec-once = hyprctl setcursor Bibata-Modern-Ice 24
|
||||
exec-once = ~/dotfiles/waybar/launch.sh
|
||||
# exec-once = ~/dotfiles/waybar/launch.sh
|
||||
exec-once = ~/dotfiles/eww/launch.sh
|
||||
exec-once = wl-paste --watch cliphist store
|
||||
|
@ -12,6 +12,7 @@ bind = $mainMod, left, movefocus, l
|
||||
bind = $mainMod, right, movefocus, r
|
||||
bind = $mainMod, up, movefocus, u
|
||||
bind = $mainMod, down, movefocus, d
|
||||
bind = $mainMod, SPACE, exec, ~/dotfiles/scripts/applauncher.sh
|
||||
|
||||
bind = $mainMod, PRINT, exec, ~/dotfiles/scripts/grim.sh
|
||||
bind = $mainMod CTRL, Q, exec, wlogout
|
||||
@ -21,7 +22,7 @@ bind = $mainMod CTRL, RETURN, exec, ~/dotfiles/scripts/applauncher.sh
|
||||
bind = $mainMod SHIFT, B, exec, ~/dotfiles/waybar/launch.sh
|
||||
bind = $mainMod CTRL, F, exec, ~/dotfiles/scripts/filemanager.sh
|
||||
bind = $mainMod CTRL, C, exec, ~/dotfiles/scripts/cliphist.sh
|
||||
bind = $mainMod CTRL, T, exec, ~/dotfiles/waybar/themeswitcher.sh
|
||||
bind = $mainMod CTRL, T, exec, ~/dotfiles/waybar/switchtheme.sh
|
||||
|
||||
bind = $mainMod, 1, workspace, 1
|
||||
bind = $mainMod, 2, workspace, 2
|
||||
|
12
install.sh
12
install.sh
@ -30,6 +30,7 @@ packagesPacman=(
|
||||
"mousepad"
|
||||
"ranger"
|
||||
"thunar"
|
||||
"keepassxc"
|
||||
"ttf-font-awesome"
|
||||
"ttf-fira-sans"
|
||||
"ttf-fira-code"
|
||||
@ -46,6 +47,7 @@ packagesPacman=(
|
||||
"tumbler"
|
||||
"xautolock"
|
||||
"blueman"
|
||||
"brightnessctl"
|
||||
"papirus-icon-theme"
|
||||
"ly"
|
||||
"hyprland"
|
||||
@ -76,7 +78,7 @@ if [ ! -d ~/.config ]; then
|
||||
mkdir ~/.config
|
||||
fi
|
||||
|
||||
# .bashrc
|
||||
# .bashrc
|
||||
_installSymLink .bashrc ~/.bashrc ~/dotfiles/.bashrc ~/.bashrc
|
||||
|
||||
#_installSymLink alacritty ~/.config/alacritty ~/dotfiles/alacritty/ ~/.config
|
||||
@ -88,7 +90,6 @@ _installSymLink rofi ~/.config/rofi ~/dotfiles/rofi/ ~/.config
|
||||
_installSymLink dunst ~/.config/dunst ~/dotfiles/dunst/ ~/.config
|
||||
_installSymLink wal ~/.config/wal ~/dotfiles/wal/ ~/.config
|
||||
_installSymLink thunar ~/.config/Thunar ~/dotfiles/Thunar/ ~/.config
|
||||
wal -i wallpapers/
|
||||
|
||||
# gtk
|
||||
_installSymLink .gtkrc-2.0 ~/.gtkrc-2.0 ~/dotfiles/gtk/.gtkrc-2.0 ~/.gtkrc-2.0
|
||||
@ -102,14 +103,13 @@ _installSymLink swaylock ~/.config/swaylock ~/dotfiles/swaylock/ ~/.config
|
||||
_installSymLink wlogout ~/.config/wlogout ~/dotfiles/wlogout/ ~/.config
|
||||
_installSymLink swappy ~/.config/swappy ~/dotfiles/swappy/ ~/.config
|
||||
|
||||
# Init pywal
|
||||
wal -i ~/dotfiles/wallpapers/default.jpg
|
||||
|
||||
# Copy default wallpaper to .cache for autolock screen
|
||||
cp ~/dotfiles/wallpapers/default.jpg ~/.cache/current_wallpaper.jpg
|
||||
|
||||
cp -r ~/dotfiles/wallpapers ~/wallpaper
|
||||
|
||||
# Init pywal
|
||||
wal -i ~/wallpaper/default.jpg
|
||||
|
||||
# start service
|
||||
sudo systemctl enable networkmanager
|
||||
sudo systemctl enable ly
|
||||
|
@ -1,6 +1,6 @@
|
||||
# vim:fileencoding=utf-8:ft=conf
|
||||
|
||||
font_family Fira Code Nerd Font
|
||||
font_size 12.0
|
||||
background_opacity 0.7
|
||||
window_padding_width 15
|
||||
font_family Fira Code Nerd Font
|
||||
font_size 12.0
|
||||
background_opacity 0.7
|
||||
window_padding_width 15
|
||||
|
@ -22,3 +22,7 @@ set ttyfast " Speed up scrolling in Vim
|
||||
" set spell " enable spell check (may need to download language package)
|
||||
" set noswapfile " disable creating swap file
|
||||
" set backupdir=~/.cache/vim " Directory to store backup files.
|
||||
|
||||
call plug#begin('~/.local/share/nvim/site/plugged')
|
||||
Plug 'elkowar/yuck.vim'
|
||||
call plug#end()
|
||||
|
3
scripts/browser.sh
Executable file
3
scripts/browser.sh
Executable file
@ -0,0 +1,3 @@
|
||||
#/bin/sh
|
||||
|
||||
firefox
|
26
scripts/checksystemupdates.sh
Executable file
26
scripts/checksystemupdates.sh
Executable file
@ -0,0 +1,26 @@
|
||||
#!/bin/sh
|
||||
# Requires pacman-contrib trizen
|
||||
|
||||
# Define threshholds for color indicators
|
||||
threshhold_green=0
|
||||
threshhold_yellow=25
|
||||
threshhold_red=100
|
||||
|
||||
# Calculate available updates pacman and aur (with trizen)
|
||||
if ! updates_arch=$(checkupdates 2> /dev/null | wc -l ); then
|
||||
updates_arch=0
|
||||
fi
|
||||
|
||||
if ! updates_aur=$(trizen -Su --aur --quiet | wc -l); then
|
||||
updates_aur=0
|
||||
fi
|
||||
|
||||
updates=$(("$updates_arch" + "$updates_aur"))
|
||||
|
||||
if [[ $updates -gt 50 ]]; then
|
||||
printf '{"text": "%s", "alt": "require-updates", "tooltip": "%s Updates", "class": "red"}' "$updates" "$updates"
|
||||
elif [[ $updates -gt 0 ]]; then
|
||||
printf '{"text": "$s", "alt": "has-updates", "tooltip": "%s Updates", "class": "yellow"}' "$updates" "$updates"
|
||||
else
|
||||
printf '{"text": "%s", "alt": "updated", "tooltip": "%s Updates", "class": "green"}' "$updates" "$updates"
|
||||
fi
|
3
scripts/email.sh
Executable file
3
scripts/email.sh
Executable file
@ -0,0 +1,3 @@
|
||||
#/bin/sh
|
||||
|
||||
thunderbird
|
@ -1,4 +1,3 @@
|
||||
#/bin/sh
|
||||
|
||||
thunar
|
||||
|
||||
|
@ -1,23 +0,0 @@
|
||||
# DESC: Python script to calculate the growth rate of two numbers
|
||||
|
||||
import rich
|
||||
import pyperclip
|
||||
|
||||
from rich.console import Console
|
||||
from rich.prompt import FloatPrompt
|
||||
|
||||
# Show prompts
|
||||
console = Console()
|
||||
num1 = FloatPrompt.ask("Old value")
|
||||
num2 = FloatPrompt.ask("New value")
|
||||
|
||||
# Calculate the growth rate
|
||||
gr = ((num2-num1)/num1)
|
||||
percentage = "{:.2%}".format(gr)
|
||||
|
||||
# Print result to the console
|
||||
console.print(percentage, style="bold")
|
||||
|
||||
# Copy result into the system clipboard
|
||||
pyperclip.copy(percentage)
|
||||
print("Result has been copied to the clipboard!")
|
3
scripts/networkmanager.sh
Executable file
3
scripts/networkmanager.sh
Executable file
@ -0,0 +1,3 @@
|
||||
#/bin/sh
|
||||
|
||||
nmtui
|
3
scripts/pass.sh
Executable file
3
scripts/pass.sh
Executable file
@ -0,0 +1,3 @@
|
||||
#/bin/sh
|
||||
|
||||
keepassxc
|
8
scripts/systemupdates.sh
Executable file
8
scripts/systemupdates.sh
Executable file
@ -0,0 +1,8 @@
|
||||
#!/bin/bash
|
||||
|
||||
echo "Starting install updates"
|
||||
echo ""
|
||||
|
||||
yay
|
||||
|
||||
notify-send "Update complete"
|
@ -30,5 +30,5 @@ fi
|
||||
if [ "$updates" -gt $threshhold_green ]; then
|
||||
printf '{"text": "%s", "alt": "%s", "tooltip": "%s Updates", "class": "%s"}' "$updates" "$updates" "$updates" "$css_class"
|
||||
else
|
||||
printf '{"text": "0", "alt": "0", "tooltip": "0 Updates", "class": "green"}'
|
||||
printf '{"text": "0", "alt": "0", "tooltip": "0 Updates", "class": "green", ""}'
|
||||
fi
|
||||
|
@ -19,7 +19,7 @@ swww img $wallpaper \
|
||||
--transition-duration=0.7 \
|
||||
--transition-pos "$( hyprctl cursorpos )"
|
||||
|
||||
~/dotfiles/waybar/launch.sh
|
||||
# ~/dotfiles/waybar/launch.sh
|
||||
sleep 1
|
||||
|
||||
# Send notification
|
||||
|
@ -33,7 +33,7 @@ if [ "$selected" ]; then
|
||||
--transition-duration=0.7 \
|
||||
--transition-pos "$( hyprctl cursorpos )"
|
||||
|
||||
~/dotfiles/waybar/launch.sh
|
||||
# ~/dotfiles/waybar/launch.sh
|
||||
sleep 1
|
||||
|
||||
# -----------------------------------------------------
|
||||
|
3
scripts/wlogout.sh
Executable file
3
scripts/wlogout.sh
Executable file
@ -0,0 +1,3 @@
|
||||
#!/bin/bash
|
||||
|
||||
wlogout
|
BIN
wallpapers/keys-l.jpg
Normal file
BIN
wallpapers/keys-l.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 543 KiB |
@ -4,27 +4,21 @@
|
||||
killall waybar
|
||||
|
||||
# Default theme: /THEMEFOLDER;/VARIATION
|
||||
themestyle="/ml4w;/ml4w/light"
|
||||
themestyle="cantina;light"
|
||||
|
||||
# Get current theme information from .cache/.themestyle.sh
|
||||
if [ -f ~/.cache/.themestyle.sh ]; then
|
||||
themestyle=$(cat ~/.cache/.themestyle.sh)
|
||||
# Get current theme information from .cache/waybar.themestyle
|
||||
if [ -f ~/.cache/waybar.themestyle ]; then
|
||||
themestyle=$(cat ~/.cache/waybar.themestyle)
|
||||
else
|
||||
touch ~/.cache/.themestyle.sh
|
||||
echo "$themestyle" > ~/.cache/.themestyle.sh
|
||||
touch ~/.cache/waybar.themestyle
|
||||
echo "$themestyle" > ~/.cache/waybar.themestyle
|
||||
fi
|
||||
|
||||
IFS=';' read -ra arrThemes <<< "$themestyle"
|
||||
echo ${arrThemes[0]}
|
||||
|
||||
if [ ! -f ~/dotfiles/waybar/themes${arrThemes[1]}/style.css ]; then
|
||||
themestyle="/ml4w;/ml4w/light"
|
||||
if [ ! -f ~/dotfiles/waybar/themes/${arrThemes[0]}/${arrThemes[1]}/style.css ]; then
|
||||
themestyle="cantina;light"
|
||||
fi
|
||||
|
||||
# Loading the configuration and style file based on the username
|
||||
if [[ $USER = "raabe" ]]
|
||||
then
|
||||
waybar -c ~/dotfiles/waybar/themes${arrThemes[0]}/myconfig -s ~/dotfiles/waybar/themes${arrThemes[1]}/style.css &
|
||||
else
|
||||
waybar -c ~/dotfiles/waybar/themes${arrThemes[0]}/config -s ~/dotfiles/waybar/themes${arrThemes[1]}/style.css &
|
||||
fi
|
||||
# Loading the configuration and style file based
|
||||
waybar -c ~/dotfiles/waybar/themes/${arrThemes[0]}/config -s ~/dotfiles/waybar/themes/${arrThemes[0]}/${arrThemes[1]}/style.css &
|
||||
|
@ -6,9 +6,9 @@
|
||||
"all-outputs": true,
|
||||
"format": "{}",
|
||||
"format-icons": {
|
||||
"urgent": "",
|
||||
"active": "",
|
||||
"default": ""
|
||||
"urgent": "",
|
||||
"active": "",
|
||||
"default": ""
|
||||
},
|
||||
"persistent_workspaces": {
|
||||
"*": 5
|
||||
@ -57,14 +57,18 @@
|
||||
|
||||
// Updates Count
|
||||
"custom/updates": {
|
||||
"format": " {}",
|
||||
"format": "{icon}",
|
||||
"format-icons": {
|
||||
"require-updates": "",
|
||||
"has-updates": "",
|
||||
"updated": ""},
|
||||
"tooltip-format": "{}",
|
||||
"escape": true,
|
||||
"return-type": "json",
|
||||
"exec": "~/dotfiles/scripts/updates.sh",
|
||||
"exec": "~/dotfiles/scripts/checksystemupdates.sh",
|
||||
"restart-interval": 60,
|
||||
"on-click": "alacritty -e ~/dotfiles/scripts/installupdates.sh",
|
||||
"tooltip": false
|
||||
"on-click": "kitty ~/dotfiles/scripts/installupdates.sh",
|
||||
"tooltip": true
|
||||
},
|
||||
|
||||
// Wallpaper
|
||||
@ -89,6 +93,27 @@
|
||||
"tooltip": false
|
||||
},
|
||||
|
||||
// Browser Launcher
|
||||
"custom/browser": {
|
||||
"format": "",
|
||||
"on-click": "~/dotfiles/scripts/browser.sh",
|
||||
"tooltip": false
|
||||
},
|
||||
|
||||
// EMail Launcher
|
||||
"custom/email": {
|
||||
"format": "",
|
||||
"on-click": "~/dotfiles/scripts/email.sh",
|
||||
"tooltip": false
|
||||
},
|
||||
|
||||
// Pass Launcher
|
||||
"custom/pass": {
|
||||
"format": "",
|
||||
"on-click": "~/dotfiles/scripts/pass.sh",
|
||||
"tooltip": false
|
||||
},
|
||||
|
||||
// Teams Launcher
|
||||
"custom/teams": {
|
||||
"format": "",
|
||||
@ -112,7 +137,7 @@
|
||||
|
||||
// Power Menu
|
||||
"custom/exit": {
|
||||
"format": "",
|
||||
"format": "",
|
||||
"on-click": "wlogout",
|
||||
"tooltip": false
|
||||
},
|
||||
@ -136,8 +161,9 @@
|
||||
|
||||
// Clock
|
||||
"clock": {
|
||||
"format": "{:%H:%M}",
|
||||
// "timezone": "Europe/Berlin",
|
||||
"tooltip-format": "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>",
|
||||
"tooltip-format": "<big>{:%d %B %Y}</big>\n<tt><small>{calendar}</small></tt>",
|
||||
"format-alt": "{:%Y-%m-%d}"
|
||||
},
|
||||
|
||||
@ -163,15 +189,16 @@
|
||||
|
||||
// Network
|
||||
"network": {
|
||||
"format": "{ifname}",
|
||||
"format-wifi": " {signalStrength}%",
|
||||
"format-ethernet": " {ipaddr}",
|
||||
"format": "{}",
|
||||
"format-wifi": "",
|
||||
"format-ethernet": "",
|
||||
"format-disconnected": "", //An empty format will hide the module.
|
||||
"tooltip-format": " {ifname} via {gwaddri}",
|
||||
"tooltip-format-wifi": " {essid} ({signalStrength}%)",
|
||||
"tooltip-format-ethernet": " {ifname} ({ipaddr}/{cidr})",
|
||||
"tooltip-format-disconnected": "Disconnected",
|
||||
"max-length": 50
|
||||
"max-length": 50,
|
||||
"on-click": "kitty --start-as=maximized ~/dotfiles/scripts/networkmanager.sh"
|
||||
},
|
||||
|
||||
// Battery
|
||||
@ -181,19 +208,19 @@
|
||||
"warning": 30,
|
||||
"critical": 15
|
||||
},
|
||||
"format": "{icon} {capacity}%",
|
||||
"format-charging": " {capacity}%",
|
||||
"format-plugged": " {capacity}%",
|
||||
"format-alt": "{icon} {time}",
|
||||
"format": "{icon}",
|
||||
"format-charging": "",
|
||||
"format-plugged": "",
|
||||
"format-alt": "{icon}",
|
||||
// "format-good": "", // An empty format will hide the module
|
||||
// "format-full": "",
|
||||
"format-icons": [" ", " ", " ", " ", " "]
|
||||
"format-icons": ["", "", "", ""]
|
||||
},
|
||||
|
||||
// Pulseaudio
|
||||
"pulseaudio": {
|
||||
// "scroll-step": 1, // %, can be a float
|
||||
"format": "{icon} {volume}%",
|
||||
"format": "{icon}",
|
||||
"format-bluetooth": "{volume}% {icon} {format_source}",
|
||||
"format-bluetooth-muted": " {icon} {format_source}",
|
||||
"format-muted": " {format_source}",
|
||||
@ -208,6 +235,7 @@
|
||||
"car": "",
|
||||
"default": ["", " ", " "]
|
||||
},
|
||||
"tooltip-format": "{volume}%",
|
||||
"on-click": "pavucontrol"
|
||||
},
|
||||
|
||||
@ -222,8 +250,10 @@
|
||||
//Backlight
|
||||
"backlight": {
|
||||
"device": "intel_backlight",
|
||||
"format": "{percent}% {icon}",
|
||||
"format-icons": ["", ""]
|
||||
"format": "{icon}",
|
||||
"format-icons": ["", ""],
|
||||
"tooltip-format": "{percent}%"
|
||||
|
||||
},
|
||||
|
||||
// Other
|
||||
|
@ -15,9 +15,9 @@ do
|
||||
if [ $(find $value -maxdepth 1 -type d | wc -l) = 1 ]; then
|
||||
result=$(echo $value | sed "s#$HOME/dotfiles/waybar/themes/#/#g")
|
||||
IFS='/' read -ra arrThemes <<< "$result"
|
||||
listThemes[${#listThemes[@]}]="/${arrThemes[1]};$result"
|
||||
if [ -f $themes_path$result/config.sh ]; then
|
||||
source $themes_path$result/config.sh
|
||||
listThemes[${#listThemes[@]}]="${arrThemes[1]};${arrThemes[2]}"
|
||||
if [ -f $themes_path/${arrThemes[1]}/${arrThemes[2]}/config.sh ]; then
|
||||
source $themes_path/${arrThemes[1]}/${arrThemes[2]}/config.sh
|
||||
listNames+="$theme_name\n"
|
||||
else
|
||||
listNames+="/${arrThemes[1]};$result\n"
|
||||
@ -30,8 +30,8 @@ done
|
||||
listNames=${listNames::-2}
|
||||
choice=$(echo -e "$listNames" | rofi -dmenu -config ~/dotfiles/rofi/config-wallpaper.rasi -no-show-icons -width 30 -p "Themes" -format i)
|
||||
|
||||
# Set new theme by writing the theme information to ~/.cache/.themestyle.sh
|
||||
# Set new theme by writing the theme information to ~/.cache/waybar.themestyle
|
||||
if [ "$choice" ]; then
|
||||
echo "${listThemes[$choice+1]}" > ~/.cache/.themestyle.sh
|
||||
echo "${listThemes[$choice+1]}" > ~/.cache/waybar.themestyle
|
||||
~/dotfiles/waybar/launch.sh
|
||||
fi
|
46
waybar/themes/cantina/config
Normal file
46
waybar/themes/cantina/config
Normal file
@ -0,0 +1,46 @@
|
||||
{
|
||||
"layer": "top",
|
||||
"height": 16,
|
||||
"margin-top": 5,
|
||||
"margin-bottom": 0,
|
||||
"margin-left": 0,
|
||||
"margin-right": 0,
|
||||
"spacing": 0,
|
||||
|
||||
"include": ["~/dotfiles/waybar/modules.json"],
|
||||
|
||||
"modules-left": [
|
||||
"custom/appmenu",
|
||||
// "custom/wallpaper",
|
||||
// "custom/waybarthemes",
|
||||
"wlr/taskbar"
|
||||
// "group/quicklinks",
|
||||
// "hyprland/window"
|
||||
],
|
||||
|
||||
"modules-center": {},
|
||||
|
||||
"modules-right": [
|
||||
"custom/updates",
|
||||
"custom/cliphist",
|
||||
"backlight",
|
||||
"pulseaudio",
|
||||
"bluetooth",
|
||||
"battery",
|
||||
// "group/hardware",
|
||||
"network",
|
||||
"tray",
|
||||
"clock",
|
||||
"custom/exit"
|
||||
],
|
||||
|
||||
// Group Hardware
|
||||
"group/hardware": {
|
||||
"orientation": "horizontal",
|
||||
"modules": [
|
||||
"disk",
|
||||
"cpu",
|
||||
"memory"
|
||||
]
|
||||
}
|
||||
}
|
2
waybar/themes/cantina/dark/config.sh
Normal file
2
waybar/themes/cantina/dark/config.sh
Normal file
@ -0,0 +1,2 @@
|
||||
#!/bin/bash
|
||||
theme_name="CANTINA Dark"
|
2
waybar/themes/cantina/light/config.sh
Normal file
2
waybar/themes/cantina/light/config.sh
Normal file
@ -0,0 +1,2 @@
|
||||
#!/bin/bash
|
||||
theme_name="CANTINA Light"
|
@ -13,4 +13,4 @@
|
||||
@define-color textcolor3 #FFFFFF;
|
||||
@define-color iconcolor #FFFFFF;
|
||||
|
||||
@import '../style.css';
|
||||
@import '../style.css';
|
127
waybar/themes/cantina/style.css
Normal file
127
waybar/themes/cantina/style.css
Normal file
@ -0,0 +1,127 @@
|
||||
/* -----------------------------------------------------
|
||||
* Import Pywal colors
|
||||
* ----------------------------------------------------- */
|
||||
|
||||
* {
|
||||
font-family: "Fira Sans Semibold", FontAwesome, Roboto, Helvetica, Arial, sans-serif;
|
||||
font-size: 16px;
|
||||
border: none;
|
||||
border-radius: 0px;
|
||||
min-height: 0;
|
||||
}
|
||||
|
||||
window#waybar {
|
||||
background-color: transparent;
|
||||
color: black;
|
||||
transition-property: background-color;
|
||||
transition-duration: .5s;
|
||||
}
|
||||
|
||||
#workspaces {
|
||||
background: @workspacesbackground1;
|
||||
margin: 2px 1px 3px 1px;
|
||||
padding: 0px 1px;
|
||||
border-radius: 15px;
|
||||
border: 0px;
|
||||
font-weight: bold;
|
||||
font-style: normal;
|
||||
opacity: 0.8;
|
||||
color: @textcolor1;
|
||||
}
|
||||
|
||||
#workspaces button {
|
||||
padding: 0px 5px;
|
||||
margin: 4px 3px;
|
||||
border-radius: 15px;
|
||||
border: 0px;
|
||||
color: @textcolor1;
|
||||
background-color: @workspacesbackground2;
|
||||
transition: all 0.3s ease-in-out;
|
||||
opacity: 0.4;
|
||||
}
|
||||
|
||||
#workspaces button.active {
|
||||
color: @textcolor1;
|
||||
background: @workspacesbackground2;
|
||||
border-radius: 15px;
|
||||
min-width: 40px;
|
||||
transition: all 0.3s ease-in-out;
|
||||
opacity:1.0;
|
||||
}
|
||||
|
||||
#workspaces button:hover {
|
||||
color: @textcolor1;
|
||||
background: @workspacesbackground2;
|
||||
border-radius: 15px;
|
||||
opacity:0.7;
|
||||
}
|
||||
|
||||
#window,
|
||||
#workspace {
|
||||
margin: 0px 4px;
|
||||
}
|
||||
|
||||
tooltip {
|
||||
border-radius: 10px;
|
||||
background-color: @backgroundlight;
|
||||
opacity:0.8;
|
||||
padding:10px;
|
||||
margin:0px;
|
||||
}
|
||||
|
||||
tooltip label {
|
||||
color: @textcolor2;
|
||||
}
|
||||
|
||||
window#waybar.empty #window {
|
||||
background-color:transparent;
|
||||
}
|
||||
|
||||
.modules-left > widget:first-child > #workspaces {
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
.modules-right > widget:last-child > #workspaces {
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
#custom-appmenu,
|
||||
#taskbar,
|
||||
#clock,
|
||||
#custom-updates,
|
||||
#network,
|
||||
#battery,
|
||||
#pulseaudio,
|
||||
#backlight,
|
||||
#custom-cliphist,
|
||||
#bluetooth.on,
|
||||
#bluetooth.connected,
|
||||
#custom-exit{
|
||||
padding: 0px 10px;
|
||||
color: @iconcolor;
|
||||
}
|
||||
|
||||
#custom-updates.yellow {
|
||||
color: yellow;
|
||||
}
|
||||
|
||||
#custom-updates.red {
|
||||
color: red;
|
||||
}
|
||||
|
||||
#tray {
|
||||
background-color: #2980b9;
|
||||
}
|
||||
|
||||
#tray > .passive {
|
||||
-gtk-icon-effect: dim;
|
||||
}
|
||||
|
||||
#tray > .needs-attention {
|
||||
-gtk-icon-effect: highlight;
|
||||
background-color: #eb4d4b;
|
||||
}
|
||||
|
||||
label:focus {
|
||||
background-color: #000000;
|
||||
}
|
@ -1,167 +0,0 @@
|
||||
{
|
||||
// "layer": "top", // Waybar at top layer
|
||||
// "position": "bottom", // Waybar position (top|bottom|left|right)
|
||||
"height": 30, // Waybar height (to be removed for auto height)
|
||||
// "width": 1280, // Waybar width
|
||||
"spacing": 4, // Gaps between modules (4px)
|
||||
// Choose the order of the modules
|
||||
"modules-left": ["wlr/workspaces"],
|
||||
"modules-center": ["hyprland/window"],
|
||||
"modules-right": ["mpd", "idle_inhibitor", "pulseaudio", "network", "cpu", "memory", "temperature", "backlight", "keyboard-state", "sway/language", "battery", "battery#bat2", "clock", "tray"],
|
||||
// Modules configuration
|
||||
// "sway/workspaces": {
|
||||
// "disable-scroll": true,
|
||||
// "all-outputs": true,
|
||||
// "warp-on-scroll": false,
|
||||
// "format": "{name}: {icon}",
|
||||
// "format-icons": {
|
||||
// "1": "",
|
||||
// "2": "",
|
||||
// "3": "",
|
||||
// "4": "",
|
||||
// "5": "",
|
||||
// "urgent": "",
|
||||
// "focused": "",
|
||||
// "default": ""
|
||||
// }
|
||||
// },
|
||||
"keyboard-state": {
|
||||
"numlock": true,
|
||||
"capslock": true,
|
||||
"format": "{name} {icon}",
|
||||
"format-icons": {
|
||||
"locked": "",
|
||||
"unlocked": ""
|
||||
}
|
||||
},
|
||||
"sway/mode": {
|
||||
"format": "<span style=\"italic\">{}</span>"
|
||||
},
|
||||
"sway/scratchpad": {
|
||||
"format": "{icon} {count}",
|
||||
"show-empty": false,
|
||||
"format-icons": ["", ""],
|
||||
"tooltip": true,
|
||||
"tooltip-format": "{app}: {title}"
|
||||
},
|
||||
"mpd": {
|
||||
"format": "{stateIcon} {consumeIcon}{randomIcon}{repeatIcon}{singleIcon}{artist} - {album} - {title} ({elapsedTime:%M:%S}/{totalTime:%M:%S}) ⸨{songPosition}|{queueLength}⸩ {volume}% ",
|
||||
"format-disconnected": "Disconnected ",
|
||||
"format-stopped": "{consumeIcon}{randomIcon}{repeatIcon}{singleIcon}Stopped ",
|
||||
"unknown-tag": "N/A",
|
||||
"interval": 2,
|
||||
"consume-icons": {
|
||||
"on": " "
|
||||
},
|
||||
"random-icons": {
|
||||
"off": "<span color=\"#f53c3c\"></span> ",
|
||||
"on": " "
|
||||
},
|
||||
"repeat-icons": {
|
||||
"on": " "
|
||||
},
|
||||
"single-icons": {
|
||||
"on": "1 "
|
||||
},
|
||||
"state-icons": {
|
||||
"paused": "",
|
||||
"playing": ""
|
||||
},
|
||||
"tooltip-format": "MPD (connected)",
|
||||
"tooltip-format-disconnected": "MPD (disconnected)"
|
||||
},
|
||||
"idle_inhibitor": {
|
||||
"format": "{icon}",
|
||||
"format-icons": {
|
||||
"activated": "",
|
||||
"deactivated": ""
|
||||
}
|
||||
},
|
||||
"tray": {
|
||||
// "icon-size": 21,
|
||||
"spacing": 10
|
||||
},
|
||||
"clock": {
|
||||
// "timezone": "America/New_York",
|
||||
"tooltip-format": "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>",
|
||||
"format-alt": "{:%Y-%m-%d}"
|
||||
},
|
||||
"cpu": {
|
||||
"format": "{usage}% ",
|
||||
"tooltip": false
|
||||
},
|
||||
"memory": {
|
||||
"format": "{}% "
|
||||
},
|
||||
"temperature": {
|
||||
// "thermal-zone": 2,
|
||||
// "hwmon-path": "/sys/class/hwmon/hwmon2/temp1_input",
|
||||
"critical-threshold": 80,
|
||||
// "format-critical": "{temperatureC}°C {icon}",
|
||||
"format": "{temperatureC}°C {icon}",
|
||||
"format-icons": ["", "", ""]
|
||||
},
|
||||
"backlight": {
|
||||
// "device": "acpi_video1",
|
||||
"format": "{percent}% {icon}",
|
||||
"format-icons": ["", "", "", "", "", "", "", "", ""]
|
||||
},
|
||||
"battery": {
|
||||
"states": {
|
||||
// "good": 95,
|
||||
"warning": 30,
|
||||
"critical": 15
|
||||
},
|
||||
"format": "{capacity}% {icon}",
|
||||
"format-charging": "{capacity}% ",
|
||||
"format-plugged": "{capacity}% ",
|
||||
"format-alt": "{time} {icon}",
|
||||
// "format-good": "", // An empty format will hide the module
|
||||
// "format-full": "",
|
||||
"format-icons": ["", "", "", "", ""]
|
||||
},
|
||||
"battery#bat2": {
|
||||
"bat": "BAT2"
|
||||
},
|
||||
"network": {
|
||||
// "interface": "wlp2*", // (Optional) To force the use of this interface
|
||||
"format-wifi": "{essid} ({signalStrength}%) ",
|
||||
"format-ethernet": "{ipaddr}/{cidr} ",
|
||||
"tooltip-format": "{ifname} via {gwaddr} ",
|
||||
"format-linked": "{ifname} (No IP) ",
|
||||
"format-disconnected": "Disconnected ⚠",
|
||||
"format-alt": "{ifname}: {ipaddr}/{cidr}"
|
||||
},
|
||||
"pulseaudio": {
|
||||
// "scroll-step": 1, // %, can be a float
|
||||
"format": "{volume}% {icon} {format_source}",
|
||||
"format-bluetooth": "{volume}% {icon} {format_source}",
|
||||
"format-bluetooth-muted": " {icon} {format_source}",
|
||||
"format-muted": " {format_source}",
|
||||
"format-source": "{volume}% ",
|
||||
"format-source-muted": "",
|
||||
"format-icons": {
|
||||
"headphone": "",
|
||||
"hands-free": "",
|
||||
"headset": "",
|
||||
"phone": "",
|
||||
"portable": "",
|
||||
"car": "",
|
||||
"default": ["", "", ""]
|
||||
},
|
||||
"on-click": "pavucontrol"
|
||||
},
|
||||
"custom/media": {
|
||||
"format": "{icon} {}",
|
||||
"return-type": "json",
|
||||
"max-length": 40,
|
||||
"format-icons": {
|
||||
"spotify": "",
|
||||
"default": "🎜"
|
||||
},
|
||||
"escape": true,
|
||||
"exec": "$HOME/.config/waybar/mediaplayer.py 2> /dev/null" // Script in resources folder
|
||||
// "exec": "$HOME/.config/waybar/mediaplayer.py --player spotify 2> /dev/null" // Filter player based on name
|
||||
}
|
||||
}
|
||||
|
@ -1,2 +0,0 @@
|
||||
#!/bin/bash
|
||||
theme_name="Default"
|
@ -1,167 +0,0 @@
|
||||
{
|
||||
// "layer": "top", // Waybar at top layer
|
||||
// "position": "bottom", // Waybar position (top|bottom|left|right)
|
||||
"height": 30, // Waybar height (to be removed for auto height)
|
||||
// "width": 1280, // Waybar width
|
||||
"spacing": 4, // Gaps between modules (4px)
|
||||
// Choose the order of the modules
|
||||
"modules-left": ["hyprland/workspaces"],
|
||||
"modules-center": ["hyprland/window"],
|
||||
"modules-right": ["mpd", "idle_inhibitor", "pulseaudio", "network", "cpu", "memory", "temperature", "backlight", "keyboard-state", "sway/language", "battery", "battery#bat2", "clock", "tray"],
|
||||
// Modules configuration
|
||||
// "sway/workspaces": {
|
||||
// "disable-scroll": true,
|
||||
// "all-outputs": true,
|
||||
// "warp-on-scroll": false,
|
||||
// "format": "{name}: {icon}",
|
||||
// "format-icons": {
|
||||
// "1": "",
|
||||
// "2": "",
|
||||
// "3": "",
|
||||
// "4": "",
|
||||
// "5": "",
|
||||
// "urgent": "",
|
||||
// "focused": "",
|
||||
// "default": ""
|
||||
// }
|
||||
// },
|
||||
"keyboard-state": {
|
||||
"numlock": true,
|
||||
"capslock": true,
|
||||
"format": "{name} {icon}",
|
||||
"format-icons": {
|
||||
"locked": "",
|
||||
"unlocked": ""
|
||||
}
|
||||
},
|
||||
"sway/mode": {
|
||||
"format": "<span style=\"italic\">{}</span>"
|
||||
},
|
||||
"sway/scratchpad": {
|
||||
"format": "{icon} {count}",
|
||||
"show-empty": false,
|
||||
"format-icons": ["", ""],
|
||||
"tooltip": true,
|
||||
"tooltip-format": "{app}: {title}"
|
||||
},
|
||||
"mpd": {
|
||||
"format": "{stateIcon} {consumeIcon}{randomIcon}{repeatIcon}{singleIcon}{artist} - {album} - {title} ({elapsedTime:%M:%S}/{totalTime:%M:%S}) ⸨{songPosition}|{queueLength}⸩ {volume}% ",
|
||||
"format-disconnected": "Disconnected ",
|
||||
"format-stopped": "{consumeIcon}{randomIcon}{repeatIcon}{singleIcon}Stopped ",
|
||||
"unknown-tag": "N/A",
|
||||
"interval": 2,
|
||||
"consume-icons": {
|
||||
"on": " "
|
||||
},
|
||||
"random-icons": {
|
||||
"off": "<span color=\"#f53c3c\"></span> ",
|
||||
"on": " "
|
||||
},
|
||||
"repeat-icons": {
|
||||
"on": " "
|
||||
},
|
||||
"single-icons": {
|
||||
"on": "1 "
|
||||
},
|
||||
"state-icons": {
|
||||
"paused": "",
|
||||
"playing": ""
|
||||
},
|
||||
"tooltip-format": "MPD (connected)",
|
||||
"tooltip-format-disconnected": "MPD (disconnected)"
|
||||
},
|
||||
"idle_inhibitor": {
|
||||
"format": "{icon}",
|
||||
"format-icons": {
|
||||
"activated": "",
|
||||
"deactivated": ""
|
||||
}
|
||||
},
|
||||
"tray": {
|
||||
// "icon-size": 21,
|
||||
"spacing": 10
|
||||
},
|
||||
"clock": {
|
||||
// "timezone": "America/New_York",
|
||||
"tooltip-format": "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>",
|
||||
"format-alt": "{:%Y-%m-%d}"
|
||||
},
|
||||
"cpu": {
|
||||
"format": "{usage}% ",
|
||||
"tooltip": false
|
||||
},
|
||||
"memory": {
|
||||
"format": "{}% "
|
||||
},
|
||||
"temperature": {
|
||||
// "thermal-zone": 2,
|
||||
// "hwmon-path": "/sys/class/hwmon/hwmon2/temp1_input",
|
||||
"critical-threshold": 80,
|
||||
// "format-critical": "{temperatureC}°C {icon}",
|
||||
"format": "{temperatureC}°C {icon}",
|
||||
"format-icons": ["", "", ""]
|
||||
},
|
||||
"backlight": {
|
||||
// "device": "acpi_video1",
|
||||
"format": "{percent}% {icon}",
|
||||
"format-icons": ["", "", "", "", "", "", "", "", ""]
|
||||
},
|
||||
"battery": {
|
||||
"states": {
|
||||
// "good": 95,
|
||||
"warning": 30,
|
||||
"critical": 15
|
||||
},
|
||||
"format": "{capacity}% {icon}",
|
||||
"format-charging": "{capacity}% ",
|
||||
"format-plugged": "{capacity}% ",
|
||||
"format-alt": "{time} {icon}",
|
||||
// "format-good": "", // An empty format will hide the module
|
||||
// "format-full": "",
|
||||
"format-icons": ["", "", "", "", ""]
|
||||
},
|
||||
"battery#bat2": {
|
||||
"bat": "BAT2"
|
||||
},
|
||||
"network": {
|
||||
// "interface": "wlp2*", // (Optional) To force the use of this interface
|
||||
"format-wifi": "{essid} ({signalStrength}%) ",
|
||||
"format-ethernet": "{ipaddr}/{cidr} ",
|
||||
"tooltip-format": "{ifname} via {gwaddr} ",
|
||||
"format-linked": "{ifname} (No IP) ",
|
||||
"format-disconnected": "Disconnected ⚠",
|
||||
"format-alt": "{ifname}: {ipaddr}/{cidr}"
|
||||
},
|
||||
"pulseaudio": {
|
||||
// "scroll-step": 1, // %, can be a float
|
||||
"format": "{volume}% {icon} {format_source}",
|
||||
"format-bluetooth": "{volume}% {icon} {format_source}",
|
||||
"format-bluetooth-muted": " {icon} {format_source}",
|
||||
"format-muted": " {format_source}",
|
||||
"format-source": "{volume}% ",
|
||||
"format-source-muted": "",
|
||||
"format-icons": {
|
||||
"headphone": "",
|
||||
"hands-free": "",
|
||||
"headset": "",
|
||||
"phone": "",
|
||||
"portable": "",
|
||||
"car": "",
|
||||
"default": ["", "", ""]
|
||||
},
|
||||
"on-click": "pavucontrol"
|
||||
},
|
||||
"custom/media": {
|
||||
"format": "{icon} {}",
|
||||
"return-type": "json",
|
||||
"max-length": 40,
|
||||
"format-icons": {
|
||||
"spotify": "",
|
||||
"default": "🎜"
|
||||
},
|
||||
"escape": true,
|
||||
"exec": "$HOME/.config/waybar/mediaplayer.py 2> /dev/null" // Script in resources folder
|
||||
// "exec": "$HOME/.config/waybar/mediaplayer.py --player spotify 2> /dev/null" // Filter player based on name
|
||||
}
|
||||
}
|
||||
|
@ -1,280 +0,0 @@
|
||||
* {
|
||||
/* `otf-font-awesome` is required to be installed for icons */
|
||||
font-family: FontAwesome, Roboto, Helvetica, Arial, sans-serif;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
window#waybar {
|
||||
background-color: rgba(43, 48, 59, 0.5);
|
||||
border-bottom: 3px solid rgba(100, 114, 125, 0.5);
|
||||
color: #ffffff;
|
||||
transition-property: background-color;
|
||||
transition-duration: .5s;
|
||||
}
|
||||
|
||||
window#waybar.hidden {
|
||||
opacity: 0.2;
|
||||
}
|
||||
|
||||
/*
|
||||
window#waybar.empty {
|
||||
background-color: transparent;
|
||||
}
|
||||
window#waybar.solo {
|
||||
background-color: #FFFFFF;
|
||||
}
|
||||
*/
|
||||
|
||||
window#waybar.termite {
|
||||
background-color: #3F3F3F;
|
||||
}
|
||||
|
||||
window#waybar.chromium {
|
||||
background-color: #000000;
|
||||
border: none;
|
||||
}
|
||||
|
||||
button {
|
||||
/* Use box-shadow instead of border so the text isn't offset */
|
||||
box-shadow: inset 0 -3px transparent;
|
||||
/* Avoid rounded borders under each button name */
|
||||
border: none;
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
/* https://github.com/Alexays/Waybar/wiki/FAQ#the-workspace-buttons-have-a-strange-hover-effect */
|
||||
button:hover {
|
||||
background: inherit;
|
||||
box-shadow: inset 0 -3px #ffffff;
|
||||
}
|
||||
|
||||
#workspaces button {
|
||||
padding: 0 5px;
|
||||
background-color: transparent;
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
#workspaces button:hover {
|
||||
background: rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
|
||||
#workspaces button.focused {
|
||||
background-color: #64727D;
|
||||
box-shadow: inset 0 -3px #ffffff;
|
||||
}
|
||||
|
||||
#workspaces button.urgent {
|
||||
background-color: #eb4d4b;
|
||||
}
|
||||
|
||||
#mode {
|
||||
background-color: #64727D;
|
||||
border-bottom: 3px solid #ffffff;
|
||||
}
|
||||
|
||||
#clock,
|
||||
#battery,
|
||||
#cpu,
|
||||
#memory,
|
||||
#disk,
|
||||
#temperature,
|
||||
#backlight,
|
||||
#network,
|
||||
#pulseaudio,
|
||||
#wireplumber,
|
||||
#custom-media,
|
||||
#tray,
|
||||
#mode,
|
||||
#idle_inhibitor,
|
||||
#scratchpad,
|
||||
#mpd {
|
||||
padding: 0 10px;
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
#window,
|
||||
#workspaces {
|
||||
margin: 0 4px;
|
||||
}
|
||||
|
||||
/* If workspaces is the leftmost module, omit left margin */
|
||||
.modules-left > widget:first-child > #workspaces {
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
/* If workspaces is the rightmost module, omit right margin */
|
||||
.modules-right > widget:last-child > #workspaces {
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
#clock {
|
||||
background-color: #64727D;
|
||||
}
|
||||
|
||||
#battery {
|
||||
background-color: #ffffff;
|
||||
color: #000000;
|
||||
}
|
||||
|
||||
#battery.charging, #battery.plugged {
|
||||
color: #ffffff;
|
||||
background-color: #26A65B;
|
||||
}
|
||||
|
||||
@keyframes blink {
|
||||
to {
|
||||
background-color: #ffffff;
|
||||
color: #000000;
|
||||
}
|
||||
}
|
||||
|
||||
#battery.critical:not(.charging) {
|
||||
background-color: #f53c3c;
|
||||
color: #ffffff;
|
||||
animation-name: blink;
|
||||
animation-duration: 0.5s;
|
||||
animation-timing-function: linear;
|
||||
animation-iteration-count: infinite;
|
||||
animation-direction: alternate;
|
||||
}
|
||||
|
||||
label:focus {
|
||||
background-color: #000000;
|
||||
}
|
||||
|
||||
#cpu {
|
||||
background-color: #2ecc71;
|
||||
color: #000000;
|
||||
}
|
||||
|
||||
#memory {
|
||||
background-color: #9b59b6;
|
||||
}
|
||||
|
||||
#disk {
|
||||
background-color: #964B00;
|
||||
}
|
||||
|
||||
#backlight {
|
||||
background-color: #90b1b1;
|
||||
}
|
||||
|
||||
#network {
|
||||
background-color: #2980b9;
|
||||
}
|
||||
|
||||
#network.disconnected {
|
||||
background-color: #f53c3c;
|
||||
}
|
||||
|
||||
#pulseaudio {
|
||||
background-color: #f1c40f;
|
||||
color: #000000;
|
||||
}
|
||||
|
||||
#pulseaudio.muted {
|
||||
background-color: #90b1b1;
|
||||
color: #2a5c45;
|
||||
}
|
||||
|
||||
#wireplumber {
|
||||
background-color: #fff0f5;
|
||||
color: #000000;
|
||||
}
|
||||
|
||||
#wireplumber.muted {
|
||||
background-color: #f53c3c;
|
||||
}
|
||||
|
||||
#custom-media {
|
||||
background-color: #66cc99;
|
||||
color: #2a5c45;
|
||||
min-width: 100px;
|
||||
}
|
||||
|
||||
#custom-media.custom-spotify {
|
||||
background-color: #66cc99;
|
||||
}
|
||||
|
||||
#custom-media.custom-vlc {
|
||||
background-color: #ffa000;
|
||||
}
|
||||
|
||||
#temperature {
|
||||
background-color: #f0932b;
|
||||
}
|
||||
|
||||
#temperature.critical {
|
||||
background-color: #eb4d4b;
|
||||
}
|
||||
|
||||
#tray {
|
||||
background-color: #2980b9;
|
||||
}
|
||||
|
||||
#tray > .passive {
|
||||
-gtk-icon-effect: dim;
|
||||
}
|
||||
|
||||
#tray > .needs-attention {
|
||||
-gtk-icon-effect: highlight;
|
||||
background-color: #eb4d4b;
|
||||
}
|
||||
|
||||
#idle_inhibitor {
|
||||
background-color: #2d3436;
|
||||
}
|
||||
|
||||
#idle_inhibitor.activated {
|
||||
background-color: #ecf0f1;
|
||||
color: #2d3436;
|
||||
}
|
||||
|
||||
#mpd {
|
||||
background-color: #66cc99;
|
||||
color: #2a5c45;
|
||||
}
|
||||
|
||||
#mpd.disconnected {
|
||||
background-color: #f53c3c;
|
||||
}
|
||||
|
||||
#mpd.stopped {
|
||||
background-color: #90b1b1;
|
||||
}
|
||||
|
||||
#mpd.paused {
|
||||
background-color: #51a37a;
|
||||
}
|
||||
|
||||
#language {
|
||||
background: #00b093;
|
||||
color: #740864;
|
||||
padding: 0 5px;
|
||||
margin: 0 5px;
|
||||
min-width: 16px;
|
||||
}
|
||||
|
||||
#keyboard-state {
|
||||
background: #97e1ad;
|
||||
color: #000000;
|
||||
padding: 0 0px;
|
||||
margin: 0 5px;
|
||||
min-width: 16px;
|
||||
}
|
||||
|
||||
#keyboard-state > label {
|
||||
padding: 0 5px;
|
||||
}
|
||||
|
||||
#keyboard-state > label.locked {
|
||||
background: rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
|
||||
#scratchpad {
|
||||
background: rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
|
||||
#scratchpad.empty {
|
||||
background-color: transparent;
|
||||
}
|
168
waybar/themes/linuxmobile/config
Normal file
168
waybar/themes/linuxmobile/config
Normal file
@ -0,0 +1,168 @@
|
||||
{
|
||||
"position": "top",
|
||||
"layer": "top",
|
||||
"height": 16,
|
||||
"margin-top": 0,
|
||||
"margin-bottom": 0,
|
||||
"margin-left": 0,
|
||||
"margin-right": 0,
|
||||
"modules-left": ["custom/launcher", "hyprland/workspaces", "custom/playerctl", "custom/playerlabel"],
|
||||
"modules-center": ["cpu", "memory", "disk"],
|
||||
"modules-right": ["tray", "custom/randwall", "network", "pulseaudio", "clock"],
|
||||
// Modules configuration
|
||||
"clock": {
|
||||
"format": " {:%H:%M}",
|
||||
"tooltip": "true",
|
||||
"tooltip-format": "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>",
|
||||
"format-alt": " {:%d/%m}"
|
||||
},
|
||||
|
||||
|
||||
"hyprland/workspaces": {
|
||||
"active-only": false,
|
||||
"all-outputs": true,
|
||||
"disable-scroll": false,
|
||||
"on-scroll-up": "hyprctl dispatch workspace -1",
|
||||
"on-scroll-down": "hyprctl dispatch workspace +1",
|
||||
"format": "{icon}",
|
||||
"on-click": "activate",
|
||||
"format-icons": {
|
||||
// "1": "一",
|
||||
// "2": "二",
|
||||
// "3": "三",
|
||||
// "4": "四",
|
||||
// "5": "五",
|
||||
"urgent": "",
|
||||
"active": "",
|
||||
"default": "",
|
||||
"sort-by-number": true
|
||||
},
|
||||
},
|
||||
|
||||
// "custom/playerctl": {
|
||||
// "format": "{icon}",
|
||||
// "return-type": "json",
|
||||
// "max-length": 64,
|
||||
// "exec": "playerctl -a metadata --format '{\"text\": \"{{artist}} - {{markup_escape(title)}}\", \"tooltip\": \"{{playerName}} : {{markup_escape(title)}}\", \"alt\": \"{{status}}\", \"class\": \"{{status}}\"}' -F",
|
||||
// "on-click-middle": "playerctl play-pause",
|
||||
// "on-click": "playerctl previous",
|
||||
// "on-click-right": "playerctl next",
|
||||
// "format-icons": {
|
||||
// "Playing": "<span foreground='#E5B9C6'> </span>",
|
||||
// "Paused": "<span foreground='#928374'> </span>"
|
||||
// },
|
||||
// },
|
||||
|
||||
// "custom/playerlabel": {
|
||||
// "format": "<span>{}</span>",
|
||||
// "return-type": "json",
|
||||
// "max-length": 48,
|
||||
// "exec": "playerctl -a metadata --format '{\"text\": \"{{artist}} - {{markup_escape(title)}}\", \"tooltip\": \"{{playerName}} : {{markup_escape(title)}}\", \"alt\": \"{{status}}\", \"class\": \"{{status}}\"}' -F",
|
||||
// "on-click-middle": "playerctl play-pause",
|
||||
// "on-click": "playerctl previous",
|
||||
// "on-click-right": "playerctl next",
|
||||
// "format-icons": {
|
||||
// "Playing": "<span foreground='#E5B9C6'> </span>",
|
||||
// "Paused": "<span foreground='#928374'> </span>"
|
||||
// },
|
||||
// },
|
||||
|
||||
"battery": {
|
||||
"states": {
|
||||
"good": 95,
|
||||
"warning": 30,
|
||||
"critical": 15
|
||||
},
|
||||
"format":"{icon} {capacity}%",
|
||||
"format-charging": "{capacity}% ",
|
||||
"format-plugged": "{capacity}% ",
|
||||
"format-alt": "{icon} {time}",
|
||||
// "format-good": "", // An empty format will hide the module
|
||||
// "format-full": "",
|
||||
"format-icons": ["", "", "", "", ""]
|
||||
},
|
||||
|
||||
"memory": {
|
||||
"format": " {}%",
|
||||
"format-alt": " {used}/{total} GiB",
|
||||
"interval": 5
|
||||
},
|
||||
|
||||
"cpu": {
|
||||
"format": " {usage}%",
|
||||
"format-alt": " {avg_frequency} GHz",
|
||||
"interval": 5
|
||||
},
|
||||
|
||||
"disk": {
|
||||
"format": " {}%",
|
||||
"format-alt": " {used}/{total} GiB",
|
||||
"interval": 5,
|
||||
"path": "/"
|
||||
},
|
||||
|
||||
"network": {
|
||||
"format-wifi": "",
|
||||
"format-ethernet": " {ifname}: Aesthetic",
|
||||
"format-linked": " {ifname} (No IP)",
|
||||
"format-disconnected": "",
|
||||
"format-alt": " {ifname}: {ipaddr}/{cidr}",
|
||||
"tooltip-format": "{essid}",
|
||||
"on-click-right": "nm-connection-editor"
|
||||
},
|
||||
|
||||
"tray": {
|
||||
"icon-size": 16,
|
||||
"spacing": 5
|
||||
},
|
||||
|
||||
"backlight": {
|
||||
// "device": "acpi_video1",
|
||||
"format": "{icon} {percent}%",
|
||||
"format-icons": ["", "", "", "", "", "", "", "", ""],
|
||||
// "on-scroll-up":,
|
||||
// "on-scroll-down":,
|
||||
},
|
||||
|
||||
"pulseaudio": {
|
||||
"format": "{icon} {volume}%",
|
||||
"format-muted": "",
|
||||
"format-icons": {
|
||||
"default": ["", "", ""]
|
||||
},
|
||||
"on-click": "bash ~/.scripts/volume mute",
|
||||
"on-scroll-up": "bash ~/.scripts/volume up",
|
||||
"on-scroll-down": "bash ~/.scripts/volume down",
|
||||
"scroll-step": 5,
|
||||
"on-click-right": "pavucontrol"
|
||||
},
|
||||
// "custom/randwall": {
|
||||
// "format": "",
|
||||
// "on-click": "bash $HOME/.config/hypr/randwall.sh",
|
||||
// "on-click-right": "bash $HOME/.config/hypr/wall.sh"
|
||||
// },
|
||||
"custom/launcher": {
|
||||
"format": "",
|
||||
"on-click": "bash $HOME/.config/rofi/launcher.sh",
|
||||
// "on-click": "wofi --show drun -I -a -n -W 500 -H 376 -s ~/.config/wofi/themes/gruvbox.css",
|
||||
"on-click-right": "bash $HOME/.config/rofi/run.sh"
|
||||
// "on-click-right": "wofi --show run -I -a -n -W 500 -H 376 -s ~/.config/wofi/themes/gruvbox.css"
|
||||
},
|
||||
|
||||
// "custom/wf-recorder": {
|
||||
// "format": "{}",
|
||||
// "interval": "once",
|
||||
// "exec": "echo ''",
|
||||
// "tooltip": "false",
|
||||
// "exec-if": "pgrep 'wf-recorder'",
|
||||
// "on-click": "exec ./scripts/wlrecord.sh",
|
||||
// "signal": 8
|
||||
// },
|
||||
|
||||
// "custom/hyprpicker": {
|
||||
// "format": "",
|
||||
// "on-click": "hyprpicker -a -f hex",
|
||||
// "on-click-right": "hyprpicker -a -f rgb"
|
||||
// },
|
||||
}
|
||||
}
|
2
waybar/themes/linuxmobile/default/config.sh
Normal file
2
waybar/themes/linuxmobile/default/config.sh
Normal file
@ -0,0 +1,2 @@
|
||||
#!/bin/bash
|
||||
theme_name="LINUXMOBILE Default"
|
@ -13,4 +13,4 @@
|
||||
@define-color textcolor3 #FFFFFF;
|
||||
@define-color iconcolor @color8;
|
||||
|
||||
@import '../../ml4w/style.css';
|
||||
@import '../style.css';
|
246
waybar/themes/linuxmobile/style.css
Normal file
246
waybar/themes/linuxmobile/style.css
Normal file
@ -0,0 +1,246 @@
|
||||
* {
|
||||
border: none;
|
||||
border-radius: 0px;
|
||||
/*font-family: VictorMono, Iosevka Nerd Font, Noto Sans CJK;*/
|
||||
font-family: Iosevka, FontAwesome, Noto Sans CJK;
|
||||
font-size: 14px;
|
||||
font-style: normal;
|
||||
min-height: 0;
|
||||
}
|
||||
|
||||
window#waybar {
|
||||
background: rgba(30, 30, 46, 0.5);
|
||||
border-bottom: 1px solid #282828;
|
||||
color: #f4d9e1
|
||||
}
|
||||
|
||||
#workspaces {
|
||||
background: #282828;
|
||||
margin: 5px 5px 5px 5px;
|
||||
padding: 0px 5px 0px 5px;
|
||||
border-radius: 16px;
|
||||
border: solid 0px #f4d9e1;
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
#workspaces button {
|
||||
padding: 0px 5px;
|
||||
border-radius: 16px;
|
||||
color: #928374;
|
||||
}
|
||||
|
||||
#workspaces button.active {
|
||||
color: #f4d9e1;
|
||||
background-color: transparent;
|
||||
border-radius: 16px;
|
||||
}
|
||||
|
||||
#workspaces button:hover {
|
||||
background-color: #E6B9C6;
|
||||
color: black;
|
||||
border-radius: 16px;
|
||||
}
|
||||
|
||||
#custom-date, #clock, #battery, #pulseaudio, #network, #custom-randwall, #custom-launcher {
|
||||
background: transparent;
|
||||
padding: 5px 5px 5px 5px;
|
||||
margin: 5px 5px 5px 5px;
|
||||
border-radius: 8px;
|
||||
border: solid 0px #f4d9e1;
|
||||
}
|
||||
|
||||
#custom-date {
|
||||
color: #D3869B;
|
||||
}
|
||||
|
||||
#custom-power {
|
||||
color: #24283b;
|
||||
background-color: #db4b4b;
|
||||
border-radius: 5px;
|
||||
margin-right: 10px;
|
||||
margin-top: 5px;
|
||||
margin-bottom: 5px;
|
||||
margin-left: 0px;
|
||||
padding: 5px 10px;
|
||||
}
|
||||
|
||||
#tray {
|
||||
background: #282828;
|
||||
margin: 5px 5px 5px 5px;
|
||||
border-radius: 16px;
|
||||
padding: 0px 5px;
|
||||
/*border-right: solid 1px #282738;*/
|
||||
}
|
||||
|
||||
#clock {
|
||||
color: #E6B9C6;
|
||||
background-color: #282828;
|
||||
border-radius: 0px 0px 0px 24px;
|
||||
padding-left: 13px;
|
||||
padding-right: 15px;
|
||||
margin-right: 0px;
|
||||
margin-left: 10px;
|
||||
margin-top: 0px;
|
||||
margin-bottom: 0px;
|
||||
font-weight: bold;
|
||||
/*border-left: solid 1px #282738;*/
|
||||
}
|
||||
|
||||
|
||||
#battery {
|
||||
color: #9ece6a;
|
||||
}
|
||||
|
||||
#battery.charging {
|
||||
color: #9ece6a;
|
||||
}
|
||||
|
||||
#battery.warning:not(.charging) {
|
||||
background-color: #f7768e;
|
||||
color: #24283b;
|
||||
border-radius: 5px 5px 5px 5px;
|
||||
}
|
||||
|
||||
#backlight {
|
||||
background-color: #24283b;
|
||||
color: #db4b4b;
|
||||
border-radius: 0px 0px 0px 0px;
|
||||
margin: 5px;
|
||||
margin-left: 0px;
|
||||
margin-right: 0px;
|
||||
padding: 0px 0px;
|
||||
}
|
||||
|
||||
#network {
|
||||
color: #f4d9e1;
|
||||
border-radius: 8px;
|
||||
margin-right: 5px;
|
||||
}
|
||||
|
||||
#pulseaudio {
|
||||
color: #f4d9e1;
|
||||
border-radius: 8px;
|
||||
margin-left: 0px;
|
||||
}
|
||||
|
||||
#pulseaudio.muted {
|
||||
background: transparent;
|
||||
color: #928374;
|
||||
border-radius: 8px;
|
||||
margin-left: 0px;
|
||||
}
|
||||
|
||||
#custom-randwall {
|
||||
color: #f4d9e1;
|
||||
border-radius: 8px;
|
||||
margin-right: 0px;
|
||||
}
|
||||
|
||||
#custom-launcher {
|
||||
color: #e5809e;
|
||||
background-color: #282828;
|
||||
border-radius: 0px 24px 0px 0px;
|
||||
margin: 0px 0px 0px 0px;
|
||||
padding: 0 20px 0 13px;
|
||||
/*border-right: solid 1px #282738;*/
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
#custom-launcher button:hover {
|
||||
background-color: #FB4934;
|
||||
color: transparent;
|
||||
border-radius: 8px;
|
||||
margin-right: -5px;
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
#custom-playerctl {
|
||||
background: #282828;
|
||||
padding-left: 15px;
|
||||
padding-right: 14px;
|
||||
border-radius: 16px;
|
||||
/*border-left: solid 1px #282738;*/
|
||||
/*border-right: solid 1px #282738;*/
|
||||
margin-top: 5px;
|
||||
margin-bottom: 5px;
|
||||
margin-left: 0px;
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
#custom-playerlabel {
|
||||
background: transparent;
|
||||
padding-left: 10px;
|
||||
padding-right: 15px;
|
||||
border-radius: 16px;
|
||||
/*border-left: solid 1px #282738;*/
|
||||
/*border-right: solid 1px #282738;*/
|
||||
margin-top: 5px;
|
||||
margin-bottom: 5px;
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
#window {
|
||||
background: #282828;
|
||||
padding-left: 15px;
|
||||
padding-right: 15px;
|
||||
border-radius: 16px;
|
||||
/*border-left: solid 1px #282738;*/
|
||||
/*border-right: solid 1px #282738;*/
|
||||
margin-top: 5px;
|
||||
margin-bottom: 5px;
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
#custom-wf-recorder {
|
||||
padding: 0 20px;
|
||||
color: #e5809e;
|
||||
background-color: #1E1E2E;
|
||||
}
|
||||
|
||||
#cpu {
|
||||
background-color: #282828;
|
||||
/*color: #FABD2D;*/
|
||||
border-radius: 16px;
|
||||
margin: 5px;
|
||||
margin-left: 5px;
|
||||
margin-right: 5px;
|
||||
padding: 0px 10px 0px 10px;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
#memory {
|
||||
background-color: #282828;
|
||||
/*color: #83A598;*/
|
||||
border-radius: 16px;
|
||||
margin: 5px;
|
||||
margin-left: 5px;
|
||||
margin-right: 5px;
|
||||
padding: 0px 10px 0px 10px;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
#disk {
|
||||
background-color: #282828;
|
||||
/*color: #8EC07C;*/
|
||||
border-radius: 16px;
|
||||
margin: 5px;
|
||||
margin-left: 5px;
|
||||
margin-right: 5px;
|
||||
padding: 0px 10px 0px 10px;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
#custom-hyprpicker {
|
||||
background-color: #282828;
|
||||
/*color: #8EC07C;*/
|
||||
border-radius: 16px;
|
||||
margin: 5px;
|
||||
margin-left: 5px;
|
||||
margin-right: 5px;
|
||||
padding: 0px 11px 0px 9px;
|
||||
font-weight: bold;
|
||||
}
|
@ -1,2 +0,0 @@
|
||||
#!/bin/bash
|
||||
theme_name="ML4W Colored Bottom"
|
@ -1,16 +0,0 @@
|
||||
/* -----------------------------------------------------
|
||||
* Import Pywal colors
|
||||
* ----------------------------------------------------- */
|
||||
@import '../../../../../.cache/wal/colors-waybar.css';
|
||||
|
||||
@define-color backgroundlight @color5;
|
||||
@define-color backgrounddark @color11;
|
||||
@define-color workspacesbackground1 @color5;
|
||||
@define-color workspacesbackground2 @color11;
|
||||
@define-color bordercolor @color11;
|
||||
@define-color textcolor1 #FFFFFF;
|
||||
@define-color textcolor2 #FFFFFF;
|
||||
@define-color textcolor3 #FFFFFF;
|
||||
@define-color iconcolor #FFFFFF;
|
||||
|
||||
@import '../../ml4w/style.css';
|
@ -1,69 +0,0 @@
|
||||
{
|
||||
// General Settings
|
||||
|
||||
// Position TOP
|
||||
// "layer": "top",
|
||||
// "margin-top": 14,
|
||||
// "margin-bottom": 0,
|
||||
|
||||
// Position BOTTOM
|
||||
"position": "bottom",
|
||||
"margin-top": 0,
|
||||
"margin-bottom": 14,
|
||||
|
||||
"layer": "top",
|
||||
"height": 16,
|
||||
"margin-left": 0,
|
||||
"margin-right": 0,
|
||||
"spacing": 0,
|
||||
|
||||
// Load Modules
|
||||
"include": ["~/dotfiles/waybar/modules.json"],
|
||||
|
||||
// Modules Left
|
||||
"modules-left": [
|
||||
"custom/appmenu",
|
||||
"custom/wallpaper",
|
||||
"custom/waybarthemes",
|
||||
"wlr/taskbar",
|
||||
"group/quicklinks",
|
||||
"hyprland/window"
|
||||
],
|
||||
|
||||
// Modules Center
|
||||
"modules-center": [
|
||||
"hyprland/workspaces"
|
||||
],
|
||||
|
||||
// Modules Right
|
||||
"modules-right": [
|
||||
"custom/updates",
|
||||
"pulseaudio",
|
||||
"bluetooth",
|
||||
"battery",
|
||||
"group/hardware",
|
||||
"custom/cliphist",
|
||||
"network",
|
||||
"custom/exit",
|
||||
"clock"
|
||||
],
|
||||
|
||||
// Group Quicklinks
|
||||
"group/quicklinks": {
|
||||
"orientation": "horizontal",
|
||||
"modules": [
|
||||
"custom/filemanager",
|
||||
"custom/brave",
|
||||
]
|
||||
},
|
||||
|
||||
// Group Hardware
|
||||
"group/hardware": {
|
||||
"orientation": "horizontal",
|
||||
"modules": [
|
||||
"disk",
|
||||
"cpu",
|
||||
"memory"
|
||||
]
|
||||
}
|
||||
}
|
@ -1,2 +0,0 @@
|
||||
#!/bin/bash
|
||||
theme_name="ML4W Dark Bottom"
|
@ -1,2 +0,0 @@
|
||||
#!/bin/bash
|
||||
theme_name="ML4W Light Bottom"
|
@ -1,16 +0,0 @@
|
||||
/* -----------------------------------------------------
|
||||
* Import Pywal colors
|
||||
* ----------------------------------------------------- */
|
||||
@import '../../../../../.cache/wal/colors-waybar.css';
|
||||
|
||||
@define-color backgroundlight #FFFFFF;
|
||||
@define-color backgrounddark @color11;
|
||||
@define-color workspacesbackground1 #FFFFFF;
|
||||
@define-color workspacesbackground2 @color11;
|
||||
@define-color bordercolor #FFFFFF;
|
||||
@define-color textcolor1 #FFFFFF;
|
||||
@define-color textcolor2 @color11;
|
||||
@define-color textcolor3 #FFFFFF;
|
||||
@define-color iconcolor #FFFFFF;
|
||||
|
||||
@import '../../ml4w/style.css';
|
@ -1,2 +0,0 @@
|
||||
#!/bin/bash
|
||||
theme_name="ML4W Mixed Bottom"
|
@ -1,16 +0,0 @@
|
||||
/* -----------------------------------------------------
|
||||
* Import Pywal colors
|
||||
* ----------------------------------------------------- */
|
||||
@import '../../../../../.cache/wal/colors-waybar.css';
|
||||
|
||||
@define-color backgroundlight @color8;
|
||||
@define-color backgrounddark #FFFFFF;
|
||||
@define-color workspacesbackground1 @color8;
|
||||
@define-color workspacesbackground2 #FFFFFF;
|
||||
@define-color bordercolor @color8;
|
||||
@define-color textcolor1 @color8;
|
||||
@define-color textcolor2 #FFFFFF;
|
||||
@define-color textcolor3 #FFFFFF;
|
||||
@define-color iconcolor #FFFFFF;
|
||||
|
||||
@import '../../ml4w/style.css';
|
@ -1,70 +0,0 @@
|
||||
{
|
||||
// Position TOP
|
||||
// "position": "top",
|
||||
// "margin-top": 14,
|
||||
//"margin-bottom": 0,
|
||||
|
||||
// Position BOTTOM
|
||||
"position": "bottom",
|
||||
"margin-bottom": 14,
|
||||
"margin-top": 0,
|
||||
|
||||
// General Settings
|
||||
"layer": "top",
|
||||
"height": 16,
|
||||
"margin-left": 0,
|
||||
"margin-right": 0,
|
||||
"spacing": 0,
|
||||
|
||||
// Load Modules
|
||||
"include": ["~/dotfiles/waybar/modules.json"],
|
||||
|
||||
// Modules Left
|
||||
"modules-left": [
|
||||
"custom/appmenu",
|
||||
"custom/wallpaper",
|
||||
"custom/waybarthemes",
|
||||
"wlr/taskbar",
|
||||
"group/quicklinks",
|
||||
"hyprland/window"
|
||||
],
|
||||
|
||||
// Modules Center
|
||||
"modules-center": [
|
||||
"hyprland/workspaces"
|
||||
],
|
||||
|
||||
// Modules Right
|
||||
"modules-right": [
|
||||
"custom/youtube",
|
||||
"custom/updates",
|
||||
"pulseaudio",
|
||||
"bluetooth",
|
||||
"battery",
|
||||
"group/hardware",
|
||||
"custom/cliphist",
|
||||
"network",
|
||||
"custom/exit",
|
||||
"clock"
|
||||
],
|
||||
|
||||
// Group Quicklinks
|
||||
"group/quicklinks": {
|
||||
"orientation": "horizontal",
|
||||
"modules": [
|
||||
"custom/filemanager",
|
||||
"custom/chatgpt",
|
||||
"custom/windowsvm"
|
||||
]
|
||||
},
|
||||
|
||||
// Group Hardware
|
||||
"group/hardware": {
|
||||
"orientation": "horizontal",
|
||||
"modules": [
|
||||
"disk",
|
||||
"cpu",
|
||||
"memory"
|
||||
]
|
||||
}
|
||||
}
|
@ -1,2 +0,0 @@
|
||||
#!/bin/bash
|
||||
theme_name="ML4W Colored"
|
@ -1,16 +0,0 @@
|
||||
/* -----------------------------------------------------
|
||||
* Import Pywal colors
|
||||
* ----------------------------------------------------- */
|
||||
@import '../../../../../.cache/wal/colors-waybar.css';
|
||||
|
||||
@define-color backgroundlight @color5;
|
||||
@define-color backgrounddark @color11;
|
||||
@define-color workspacesbackground1 @color5;
|
||||
@define-color workspacesbackground2 @color11;
|
||||
@define-color bordercolor @color11;
|
||||
@define-color textcolor1 #FFFFFF;
|
||||
@define-color textcolor2 #FFFFFF;
|
||||
@define-color textcolor3 #FFFFFF;
|
||||
@define-color iconcolor #FFFFFF;
|
||||
|
||||
@import '../style.css';
|
@ -1,70 +0,0 @@
|
||||
{
|
||||
// General Settings
|
||||
|
||||
// Position TOP
|
||||
"layer": "top",
|
||||
"margin-top": 14,
|
||||
"margin-bottom": 0,
|
||||
|
||||
// Position BOTTOM
|
||||
// "position": "bottom",
|
||||
// "margin-top": 0,
|
||||
// "margin-bottom": 14,
|
||||
|
||||
"layer": "top",
|
||||
"height": 16,
|
||||
"margin-left": 0,
|
||||
"margin-right": 0,
|
||||
"spacing": 0,
|
||||
|
||||
// Load Modules
|
||||
"include": ["~/dotfiles/waybar/modules.json"],
|
||||
|
||||
// Modules Left
|
||||
"modules-left": [
|
||||
"custom/appmenu",
|
||||
"custom/wallpaper",
|
||||
"custom/waybarthemes",
|
||||
"wlr/taskbar",
|
||||
"group/quicklinks",
|
||||
"hyprland/window"
|
||||
],
|
||||
|
||||
// Modules Center
|
||||
"modules-center": [
|
||||
"hyprland/workspaces"
|
||||
],
|
||||
|
||||
// Modules Right
|
||||
"modules-right": [
|
||||
"custom/updates",
|
||||
"backlight",
|
||||
"pulseaudio",
|
||||
"bluetooth",
|
||||
"battery",
|
||||
"group/hardware",
|
||||
"custom/cliphist",
|
||||
"network",
|
||||
"custom/exit",
|
||||
"clock"
|
||||
],
|
||||
|
||||
// Group Quicklinks
|
||||
"group/quicklinks": {
|
||||
"orientation": "horizontal",
|
||||
"modules": [
|
||||
"custom/filemanager",
|
||||
"custom/brave",
|
||||
]
|
||||
},
|
||||
|
||||
// Group Hardware
|
||||
"group/hardware": {
|
||||
"orientation": "horizontal",
|
||||
"modules": [
|
||||
"disk",
|
||||
"cpu",
|
||||
"memory"
|
||||
]
|
||||
}
|
||||
}
|
@ -1,2 +0,0 @@
|
||||
#!/bin/bash
|
||||
theme_name="ML4W Dark"
|
@ -1,2 +0,0 @@
|
||||
#!/bin/bash
|
||||
theme_name="ML4W Light"
|
@ -1,2 +0,0 @@
|
||||
#!/bin/bash
|
||||
theme_name="ML4W Mixed"
|
@ -1,16 +0,0 @@
|
||||
/* -----------------------------------------------------
|
||||
* Import Pywal colors
|
||||
* ----------------------------------------------------- */
|
||||
@import '../../../../../.cache/wal/colors-waybar.css';
|
||||
|
||||
@define-color backgroundlight @color8;
|
||||
@define-color backgrounddark #FFFFFF;
|
||||
@define-color workspacesbackground1 @color8;
|
||||
@define-color workspacesbackground2 #FFFFFF;
|
||||
@define-color bordercolor @color8;
|
||||
@define-color textcolor1 @color8;
|
||||
@define-color textcolor2 #FFFFFF;
|
||||
@define-color textcolor3 #FFFFFF;
|
||||
@define-color iconcolor #FFFFFF;
|
||||
|
||||
@import '../style.css';
|
@ -1,70 +0,0 @@
|
||||
{
|
||||
// Position TOP
|
||||
"position": "top",
|
||||
"margin-top": 14,
|
||||
"margin-bottom": 0,
|
||||
|
||||
// Position BOTTOM
|
||||
// "position": "bottom",
|
||||
// "margin-bottom": 14,
|
||||
// "margin-top": 0,
|
||||
|
||||
// General Settings
|
||||
"layer": "top",
|
||||
"height": 16,
|
||||
"margin-left": 0,
|
||||
"margin-right": 0,
|
||||
"spacing": 0,
|
||||
|
||||
// Load Modules
|
||||
"include": ["~/dotfiles/waybar/modules.json"],
|
||||
|
||||
// Modules Left
|
||||
"modules-left": [
|
||||
"custom/appmenu",
|
||||
"custom/wallpaper",
|
||||
"custom/waybarthemes",
|
||||
"wlr/taskbar",
|
||||
"group/quicklinks",
|
||||
"hyprland/window"
|
||||
],
|
||||
|
||||
// Modules Center
|
||||
"modules-center": [
|
||||
"hyprland/workspaces"
|
||||
],
|
||||
|
||||
// Modules Right
|
||||
"modules-right": [
|
||||
"custom/youtube",
|
||||
"custom/updates",
|
||||
"pulseaudio",
|
||||
"bluetooth",
|
||||
"battery",
|
||||
"group/hardware",
|
||||
"custom/cliphist",
|
||||
"network",
|
||||
"custom/exit",
|
||||
"clock"
|
||||
],
|
||||
|
||||
// Group Quicklinks
|
||||
"group/quicklinks": {
|
||||
"orientation": "horizontal",
|
||||
"modules": [
|
||||
"custom/filemanager",
|
||||
"custom/chatgpt",
|
||||
"custom/windowsvm"
|
||||
]
|
||||
},
|
||||
|
||||
// Group Hardware
|
||||
"group/hardware": {
|
||||
"orientation": "horizontal",
|
||||
"modules": [
|
||||
"disk",
|
||||
"cpu",
|
||||
"memory"
|
||||
]
|
||||
}
|
||||
}
|
@ -1,403 +0,0 @@
|
||||
/* -----------------------------------------------------
|
||||
* Import Pywal colors
|
||||
* ----------------------------------------------------- */
|
||||
/* @import 'style-light.css'; */
|
||||
|
||||
/* -----------------------------------------------------
|
||||
* General
|
||||
* ----------------------------------------------------- */
|
||||
|
||||
* {
|
||||
font-family: "Fira Sans Semibold", FontAwesome, Roboto, Helvetica, Arial, sans-serif;
|
||||
border: none;
|
||||
border-radius: 0px;
|
||||
}
|
||||
|
||||
window#waybar {
|
||||
background-color: rgba(0,0,0,0.8);
|
||||
border-bottom: 0px solid #ffffff;
|
||||
/* color: #FFFFFF; */
|
||||
background: transparent;
|
||||
transition-property: background-color;
|
||||
transition-duration: .5s;
|
||||
}
|
||||
|
||||
/* -----------------------------------------------------
|
||||
* Workspaces
|
||||
* ----------------------------------------------------- */
|
||||
|
||||
#workspaces {
|
||||
background: @workspacesbackground1;
|
||||
margin: 2px 1px 3px 1px;
|
||||
padding: 0px 1px;
|
||||
border-radius: 15px;
|
||||
border: 0px;
|
||||
font-weight: bold;
|
||||
font-style: normal;
|
||||
opacity: 0.8;
|
||||
font-size: 16px;
|
||||
color: @textcolor1;
|
||||
}
|
||||
|
||||
#workspaces button {
|
||||
padding: 0px 5px;
|
||||
margin: 4px 3px;
|
||||
border-radius: 15px;
|
||||
border: 0px;
|
||||
color: @textcolor1;
|
||||
background-color: @workspacesbackground2;
|
||||
transition: all 0.3s ease-in-out;
|
||||
opacity: 0.4;
|
||||
}
|
||||
|
||||
#workspaces button.active {
|
||||
color: @textcolor1;
|
||||
background: @workspacesbackground2;
|
||||
border-radius: 15px;
|
||||
min-width: 40px;
|
||||
transition: all 0.3s ease-in-out;
|
||||
opacity:1.0;
|
||||
}
|
||||
|
||||
#workspaces button:hover {
|
||||
color: @textcolor1;
|
||||
background: @workspacesbackground2;
|
||||
border-radius: 15px;
|
||||
opacity:0.7;
|
||||
}
|
||||
|
||||
/* -----------------------------------------------------
|
||||
* Tooltips
|
||||
* ----------------------------------------------------- */
|
||||
|
||||
tooltip {
|
||||
border-radius: 10px;
|
||||
background-color: @backgroundlight;
|
||||
opacity:0.8;
|
||||
padding:20px;
|
||||
margin:0px;
|
||||
}
|
||||
|
||||
tooltip label {
|
||||
color: @textcolor2;
|
||||
}
|
||||
|
||||
/* -----------------------------------------------------
|
||||
* Window
|
||||
* ----------------------------------------------------- */
|
||||
|
||||
#window {
|
||||
background: @backgroundlight;
|
||||
margin: 5px 15px 5px 0px;
|
||||
padding: 2px 10px 0px 10px;
|
||||
border-radius: 12px;
|
||||
color:@textcolor2;
|
||||
font-size:16px;
|
||||
font-weight:normal;
|
||||
opacity:0.8;
|
||||
}
|
||||
|
||||
window#waybar.empty #window {
|
||||
background-color:transparent;
|
||||
}
|
||||
|
||||
/* -----------------------------------------------------
|
||||
* Taskbar
|
||||
* ----------------------------------------------------- */
|
||||
|
||||
#taskbar {
|
||||
/* background: @color11; */
|
||||
background: @backgroundlight;
|
||||
margin: 3px 15px 3px 0px;
|
||||
padding:0px;
|
||||
/*padding: 2px 3px 1px 3px;*/
|
||||
border-radius: 15px;
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
opacity:0.8;
|
||||
border: 3px solid @backgroundlight;
|
||||
}
|
||||
|
||||
#taskbar button {
|
||||
margin:0;
|
||||
border-radius: 15px;
|
||||
padding: 0px 5px 0px 5px;
|
||||
}
|
||||
|
||||
/* -----------------------------------------------------
|
||||
* Modules
|
||||
* ----------------------------------------------------- */
|
||||
|
||||
.modules-left > widget:first-child > #workspaces {
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
.modules-right > widget:last-child > #workspaces {
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
/* -----------------------------------------------------
|
||||
* Custom Quicklinks
|
||||
* ----------------------------------------------------- */
|
||||
|
||||
#custom-brave, #custom-outlook, #custom-filemanager, #custom-teams, #custom-chatgpt, #custom-calculator, #custom-windowsvm, #custom-cliphist, #custom-wallpaper, #custom-waybarthemes {
|
||||
margin-right: 20px;
|
||||
font-size: 20px;
|
||||
font-weight: bold;
|
||||
opacity: 0.8;
|
||||
color: @iconcolor;
|
||||
}
|
||||
|
||||
#custom-wallpaper {
|
||||
margin-right:23px;
|
||||
}
|
||||
|
||||
/* -----------------------------------------------------
|
||||
* Custom Modules
|
||||
* ----------------------------------------------------- */
|
||||
|
||||
#custom-appmenu {
|
||||
background-color: @backgrounddark;
|
||||
font-size: 16px;
|
||||
color: @textcolor1;
|
||||
border-radius: 15px;
|
||||
padding: 0px 10px 0px 10px;
|
||||
margin: 3px 15px 3px 14px;
|
||||
opacity:0.8;
|
||||
border:3px solid @bordercolor;
|
||||
}
|
||||
|
||||
/* -----------------------------------------------------
|
||||
* Custom Exit
|
||||
* ----------------------------------------------------- */
|
||||
|
||||
#custom-exit {
|
||||
margin: 0px 20px 0px 0px;
|
||||
padding:0px;
|
||||
font-size:20px;
|
||||
color: @iconcolor;
|
||||
}
|
||||
|
||||
/* -----------------------------------------------------
|
||||
* Custom Updates
|
||||
* ----------------------------------------------------- */
|
||||
|
||||
#custom-updates {
|
||||
background-color: @backgroundlight;
|
||||
font-size: 16px;
|
||||
color: @textcolor2;
|
||||
border-radius: 15px;
|
||||
padding: 2px 10px 0px 10px;
|
||||
margin: 5px 15px 5px 0px;
|
||||
opacity:0.8;
|
||||
}
|
||||
|
||||
#custom-updates.green {
|
||||
background-color: @backgroundlight;
|
||||
}
|
||||
|
||||
#custom-updates.yellow {
|
||||
background-color: #ff9a3c;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
|
||||
#custom-updates.red {
|
||||
background-color: #dc2f2f;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
|
||||
/* -----------------------------------------------------
|
||||
* Custom Youtube
|
||||
* ----------------------------------------------------- */
|
||||
|
||||
#custom-youtube {
|
||||
background-color: @backgroundlight;
|
||||
font-size: 16px;
|
||||
color: @textcolor2;
|
||||
border-radius: 15px;
|
||||
padding: 2px 10px 0px 10px;
|
||||
margin: 5px 15px 5px 0px;
|
||||
opacity:0.8;
|
||||
}
|
||||
|
||||
/* -----------------------------------------------------
|
||||
* Hardware Group
|
||||
* ----------------------------------------------------- */
|
||||
|
||||
#disk,#memory,#cpu {
|
||||
margin:0px;
|
||||
padding:0px;
|
||||
font-size:16px;
|
||||
color:@iconcolor;
|
||||
}
|
||||
|
||||
#memory {
|
||||
margin-right:10px;
|
||||
}
|
||||
|
||||
/* -----------------------------------------------------
|
||||
* Clock
|
||||
* ----------------------------------------------------- */
|
||||
|
||||
#clock {
|
||||
background-color: @backgrounddark;
|
||||
font-size: 16px;
|
||||
color: @textcolor1;
|
||||
border-radius: 15px;
|
||||
padding: 1px 10px 0px 10px;
|
||||
margin: 3px 15px 3px 0px;
|
||||
opacity:0.8;
|
||||
border:3px solid @bordercolor;
|
||||
}
|
||||
|
||||
/* -----------------------------------------------------
|
||||
* Backlight
|
||||
* ----------------------------------------------------- */
|
||||
|
||||
#backlight {
|
||||
background-color: @backgroundlight;
|
||||
font-size: 16px;
|
||||
color: @textcolor2;
|
||||
border-radius: 15px;
|
||||
padding: 2px 10px 0px 10px;
|
||||
margin: 5px 15px 5px 0px;
|
||||
opacity:0.8;
|
||||
}
|
||||
|
||||
/* -----------------------------------------------------
|
||||
* Pulseaudio
|
||||
* ----------------------------------------------------- */
|
||||
|
||||
#pulseaudio {
|
||||
background-color: @backgroundlight;
|
||||
font-size: 16px;
|
||||
color: @textcolor2;
|
||||
border-radius: 15px;
|
||||
padding: 2px 10px 0px 10px;
|
||||
margin: 5px 15px 5px 0px;
|
||||
opacity:0.8;
|
||||
}
|
||||
|
||||
#pulseaudio.muted {
|
||||
background-color: @backgrounddark;
|
||||
color: @textcolor1;
|
||||
}
|
||||
|
||||
/* -----------------------------------------------------
|
||||
* Network
|
||||
* ----------------------------------------------------- */
|
||||
|
||||
#network {
|
||||
background-color: @backgroundlight;
|
||||
font-size: 16px;
|
||||
color: @textcolor2;
|
||||
border-radius: 15px;
|
||||
padding: 2px 10px 0px 10px;
|
||||
margin: 5px 15px 5px 0px;
|
||||
opacity:0.8;
|
||||
}
|
||||
|
||||
#network.ethernet {
|
||||
background-color: @backgroundlight;
|
||||
color: @textcolor2;
|
||||
}
|
||||
|
||||
#network.wifi {
|
||||
background-color: @backgroundlight;
|
||||
color: @textcolor2;
|
||||
}
|
||||
|
||||
/* -----------------------------------------------------
|
||||
* Bluetooth
|
||||
* ----------------------------------------------------- */
|
||||
|
||||
#bluetooth.on, #bluetooth.connected {
|
||||
background-color: @backgroundlight;
|
||||
font-size: 16px;
|
||||
color: @textcolor2;
|
||||
border-radius: 15px;
|
||||
padding: 2px 10px 0px 10px;
|
||||
margin: 5px 15px 5px 0px;
|
||||
opacity:0.8;
|
||||
}
|
||||
|
||||
#bluetooth.off {
|
||||
background-color: transparent;
|
||||
padding: 0px;
|
||||
margin: 0px;
|
||||
}
|
||||
|
||||
/* -----------------------------------------------------
|
||||
* Battery
|
||||
* ----------------------------------------------------- */
|
||||
|
||||
#battery {
|
||||
background-color: @backgroundlight;
|
||||
font-size: 16px;
|
||||
color: @textcolor2;
|
||||
border-radius: 15px;
|
||||
padding: 2px 15px 0px 10px;
|
||||
margin: 5px 15px 5px 0px;
|
||||
opacity:0.8;
|
||||
}
|
||||
|
||||
#battery.charging, #battery.plugged {
|
||||
color: @textcolor2;
|
||||
background-color: @backgroundlight;
|
||||
}
|
||||
|
||||
@keyframes blink {
|
||||
to {
|
||||
background-color: @backgroundlight;
|
||||
color: @textcolor2;
|
||||
}
|
||||
}
|
||||
|
||||
#battery.critical:not(.charging) {
|
||||
background-color: #f53c3c;
|
||||
color: @textcolor3;
|
||||
animation-name: blink;
|
||||
animation-duration: 0.5s;
|
||||
animation-timing-function: linear;
|
||||
animation-iteration-count: infinite;
|
||||
animation-direction: alternate;
|
||||
}
|
||||
|
||||
/* -----------------------------------------------------
|
||||
* Tray
|
||||
* ----------------------------------------------------- */
|
||||
|
||||
#tray {
|
||||
background-color: #2980b9;
|
||||
}
|
||||
|
||||
#tray > .passive {
|
||||
-gtk-icon-effect: dim;
|
||||
}
|
||||
|
||||
#tray > .needs-attention {
|
||||
-gtk-icon-effect: highlight;
|
||||
background-color: #eb4d4b;
|
||||
}
|
||||
|
||||
/* -----------------------------------------------------
|
||||
* Other
|
||||
* ----------------------------------------------------- */
|
||||
|
||||
label:focus {
|
||||
background-color: #000000;
|
||||
}
|
||||
|
||||
#backlight {
|
||||
/* background-color: #90b1b1; */
|
||||
background-color: @backgroundlight;
|
||||
}
|
||||
|
||||
#network {
|
||||
background-color: #2980b9;
|
||||
}
|
||||
|
||||
#network.disconnected {
|
||||
background-color: #f53c3c;
|
||||
}
|
||||
|
Reference in New Issue
Block a user