Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d3277bd7fc | ||
|
|
c2d2d45546 | ||
|
|
b9025fbfb1 | ||
|
|
7a4d9f7b21 | ||
|
|
249e71d187 | ||
|
|
380b43ea30 | ||
|
|
ee983e39db | ||
|
|
18bed6fbdf | ||
|
|
77cd4cf980 | ||
|
|
f095151882 | ||
|
|
bc227bed49 | ||
|
|
475fbc55cc | ||
|
|
1c96f24b09 | ||
|
|
71caefa11a | ||
|
|
4b9812dc7f | ||
|
|
20ce47fa20 | ||
|
|
1763d37ee4 | ||
|
|
b113e1f81d | ||
|
|
289308a542 | ||
|
|
8c2be8fed6 | ||
|
|
beb717a961 | ||
|
|
2e985927af | ||
|
|
8265c9fdea | ||
|
|
c1873060de |
@@ -109,7 +109,7 @@ alias setkb='setxkbmap de;echo "Keyboard set back to de."'
|
|||||||
alias res1='xrandr --output DisplayPort-0 --mode 2560x1440 --rate 120'
|
alias res1='xrandr --output DisplayPort-0 --mode 2560x1440 --rate 120'
|
||||||
alias res2='xrandr --output DisplayPort-0 --mode 1920x1080 --rate 120'
|
alias res2='xrandr --output DisplayPort-0 --mode 1920x1080 --rate 120'
|
||||||
|
|
||||||
export PATH="/usr/lib/ccache/bin/:$PATH"
|
export PATH="$HOME/.local/bin/:/usr/lib/ccache/bin/:$PATH"
|
||||||
|
|
||||||
# -----------------------------------------------------
|
# -----------------------------------------------------
|
||||||
# DEVELOPMENT
|
# DEVELOPMENT
|
||||||
|
|||||||
@@ -1,7 +0,0 @@
|
|||||||
# ------------------------------------------------------
|
|
||||||
# Modify existing files before restore starts
|
|
||||||
# ------------------------------------------------------
|
|
||||||
|
|
||||||
if [ -d ~/dotfiles ] ;then
|
|
||||||
echo ":: Modify existing files"
|
|
||||||
fi
|
|
||||||
@@ -19,7 +19,6 @@ if gum confirm "Do you want to run a short system check?" ;then
|
|||||||
_commandExists "wlogout" "wlogout"
|
_commandExists "wlogout" "wlogout"
|
||||||
_commandExists "eww" "eww"
|
_commandExists "eww" "eww"
|
||||||
_commandExists "magick" "imagemagick"
|
_commandExists "magick" "imagemagick"
|
||||||
_commandExists "waypaper" "waypaper"
|
|
||||||
|
|
||||||
elif [ $? -eq 130 ]; then
|
elif [ $? -eq 130 ]; then
|
||||||
exit 130
|
exit 130
|
||||||
|
|||||||
@@ -63,15 +63,10 @@ if [ -z "${dmsel}" ] ;then
|
|||||||
fi
|
fi
|
||||||
if [ "$dmsel" == "Install sddm and theme" ] ;then
|
if [ "$dmsel" == "Install sddm and theme" ] ;then
|
||||||
|
|
||||||
if [ -d /usr/share/sddm/themes/sugar-candy/ ] ;then
|
|
||||||
sudo rm -rf /usr/share/sddm/themes/sugar-candy/
|
|
||||||
echo ":: Sugar Candy folder removed"
|
|
||||||
fi
|
|
||||||
|
|
||||||
disman=0
|
disman=0
|
||||||
# Try to force the installation of sddm
|
# Try to force the installation of sddm
|
||||||
echo ":: Install sddm"
|
echo ":: Install sddm"
|
||||||
yay -S --noconfirm sddm sddm-sugar-candy-git --ask 4
|
yay -S --noconfirm sddm --ask 4
|
||||||
|
|
||||||
# Enable sddm
|
# Enable sddm
|
||||||
if [ -f /etc/systemd/system/display-manager.service ]; then
|
if [ -f /etc/systemd/system/display-manager.service ]; then
|
||||||
@@ -79,24 +74,41 @@ if [ "$dmsel" == "Install sddm and theme" ] ;then
|
|||||||
fi
|
fi
|
||||||
sudo systemctl enable sddm.service
|
sudo systemctl enable sddm.service
|
||||||
|
|
||||||
|
# Create sddm.conf.d folder
|
||||||
if [ ! -d /etc/sddm.conf.d/ ]; then
|
if [ ! -d /etc/sddm.conf.d/ ]; then
|
||||||
sudo mkdir /etc/sddm.conf.d
|
sudo mkdir /etc/sddm.conf.d
|
||||||
echo "Folder /etc/sddm.conf.d created."
|
echo ":: Folder /etc/sddm.conf.d created."
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Copy sddm.conf
|
||||||
sudo cp sddm/sddm.conf /etc/sddm.conf.d/
|
sudo cp sddm/sddm.conf /etc/sddm.conf.d/
|
||||||
echo "File /etc/sddm.conf.d/sddm.conf updated."
|
echo ":: File /etc/sddm.conf.d/sddm.conf updated."
|
||||||
|
|
||||||
|
# Download and install sugar candy theme if not exists
|
||||||
|
if [ ! -d /usr/share/sddm/themes/sugar-candy ]; then
|
||||||
|
if [ -f ~/Downloads/sddm-sugar-candy-master.zip ] ;then
|
||||||
|
rm ~/Downloads/sddm-sugar-candy-master.zip
|
||||||
|
fi
|
||||||
|
wget -P ~/Downloads/ https://framagit.org/MarianArlt/sddm-sugar-candy/-/archive/master/sddm-sugar-candy-master.zip
|
||||||
|
if [ -f ~/Downloads/sddm-sugar-candy-master.zip ] ;then
|
||||||
|
unzip -o -q ~/Downloads/sddm-sugar-candy-master.zip -d ~/Downloads/
|
||||||
|
if [ ! -d /usr/share/sddm/themes/sugar-candy ] ;then
|
||||||
|
sudo mkdir -p /usr/share/sddm/themes/sugar-candy
|
||||||
|
fi
|
||||||
|
sudo cp -r ~/Downloads/sddm-sugar-candy-master/* /usr/share/sddm/themes/sugar-candy
|
||||||
|
echo ":: SDDM Sugar Candy Theme installed"
|
||||||
|
else
|
||||||
|
echo "ERROR: Sugar Candy Download not found"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Install background wallpaper for sddm
|
||||||
if [ -f /usr/share/sddm/themes/sugar-candy/theme.conf ]; then
|
if [ -f /usr/share/sddm/themes/sugar-candy/theme.conf ]; then
|
||||||
|
|
||||||
# Cache file for holding the current wallpaper
|
|
||||||
sudo cp wallpapers/default.jpg /usr/share/sddm/themes/sugar-candy/Backgrounds/current_wallpaper.jpg
|
sudo cp wallpapers/default.jpg /usr/share/sddm/themes/sugar-candy/Backgrounds/current_wallpaper.jpg
|
||||||
echo "Default wallpaper copied into /usr/share/sddm/themes/sugar-candy/Backgrounds/"
|
echo ":: Default wallpaper copied into /usr/share/sddm/themes/sugar-candy/Backgrounds/"
|
||||||
|
|
||||||
sudo cp sddm/theme.conf /usr/share/sddm/themes/sugar-candy/
|
sudo cp sddm/theme.conf /usr/share/sddm/themes/sugar-candy/
|
||||||
sudo sed -i 's/CURRENTWALLPAPER/'"current_wallpaper.jpg"'/' /usr/share/sddm/themes/sugar-candy/theme.conf
|
sudo sed -i 's/CURRENTWALLPAPER/'"current_wallpaper.jpg"'/' /usr/share/sddm/themes/sugar-candy/theme.conf
|
||||||
echo "File theme.conf updated in /usr/share/sddm/themes/sugar-candy/"
|
echo ":: File theme.conf updated in /usr/share/sddm/themes/sugar-candy/"
|
||||||
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
elif [ "$dmsel" == "Deactivate current display manager" ] ;then
|
elif [ "$dmsel" == "Deactivate current display manager" ] ;then
|
||||||
|
|||||||
@@ -0,0 +1,24 @@
|
|||||||
|
# ------------------------------------------------------
|
||||||
|
# Select fcitx5 or not
|
||||||
|
# ------------------------------------------------------
|
||||||
|
echo -e "${GREEN}"
|
||||||
|
figlet "fcitx5"
|
||||||
|
echo -e "${NONE}"
|
||||||
|
|
||||||
|
if gum confirm "Do you want to install fcitx5 and chinese input method?" ;then
|
||||||
|
packagesPacman=(
|
||||||
|
"fcitx5"
|
||||||
|
"fcitx5-chinese-addons"
|
||||||
|
"fcitx5-configtool"
|
||||||
|
"fcitx5-gtk"
|
||||||
|
"fcitx5-qt"
|
||||||
|
);
|
||||||
|
packagesYay=(
|
||||||
|
"fcitx5-skin-seasons"
|
||||||
|
);
|
||||||
|
source .install/install-packages.sh
|
||||||
|
echo -e "\n# -----------------------------------------------------" >> ~/dotfiles-versions/${version}/hypr/hyprland.conf
|
||||||
|
echo "# fcitx5 support" >> ~/dotfiles-versions/${version}/hypr/hyprland.conf
|
||||||
|
echo "# -----------------------------------------------------" >> ~/dotfiles-versions/${version}/hypr/hyprland.conf
|
||||||
|
echo "source = ~/dotfiles/hypr/conf/fcitx5.conf" >> ~/dotfiles-versions/${version}/hypr/hyprland.conf
|
||||||
|
fi
|
||||||
@@ -43,8 +43,5 @@ fi
|
|||||||
if [ -d ~/dotfiles-versions/$version/fastfetch ]; then
|
if [ -d ~/dotfiles-versions/$version/fastfetch ]; then
|
||||||
_installSymLink fastfetch ~/.config/fastfetch ~/dotfiles/fastfetch/ ~/.config
|
_installSymLink fastfetch ~/.config/fastfetch ~/dotfiles/fastfetch/ ~/.config
|
||||||
fi
|
fi
|
||||||
if [ -d ~/dotfiles-versions/$version/waypaper ]; then
|
|
||||||
_installSymLink waypaper ~/.config/waypaper ~/dotfiles/waypaper/ ~/.config
|
|
||||||
fi
|
|
||||||
echo ":: Symbolic links created."
|
echo ":: Symbolic links created."
|
||||||
echo
|
echo
|
||||||
@@ -16,5 +16,4 @@ packagesYay=(
|
|||||||
"nwg-look"
|
"nwg-look"
|
||||||
"eww"
|
"eww"
|
||||||
"hyprshade"
|
"hyprshade"
|
||||||
"waypaper"
|
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ echo
|
|||||||
|
|
||||||
# Check for required packages
|
# Check for required packages
|
||||||
echo "Checking that required packages for the installation are installed..."
|
echo "Checking that required packages for the installation are installed..."
|
||||||
_installPackagesPacman "rsync" "gum" "figlet" "python" "git";
|
_installPackagesPacman "rsync" "gum" "figlet" "python";
|
||||||
|
|
||||||
# Double check rsync
|
# Double check rsync
|
||||||
if ! command -v rsync &> /dev/null; then
|
if ! command -v rsync &> /dev/null; then
|
||||||
|
|||||||
@@ -24,7 +24,7 @@ input {
|
|||||||
# for laptop
|
# for laptop
|
||||||
# natural_scroll = yes
|
# natural_scroll = yes
|
||||||
# middle_button_emulation = true
|
# middle_button_emulation = true
|
||||||
# clickfinger_behavior = false
|
# clickfinger_behavior = 1
|
||||||
}
|
}
|
||||||
sensitivity = 0 # -1.0 - 1.0, 0 means no modification.
|
sensitivity = 0 # -1.0 - 1.0, 0 means no modification.
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -24,7 +24,7 @@ input {
|
|||||||
# for laptop
|
# for laptop
|
||||||
natural_scroll = true
|
natural_scroll = true
|
||||||
middle_button_emulation = true
|
middle_button_emulation = true
|
||||||
clickfinger_behavior = false
|
clickfinger_behavior = true
|
||||||
disable_while_typing = true
|
disable_while_typing = true
|
||||||
}
|
}
|
||||||
sensitivity = 0 # -1.0 - 1.0, 0 means no modification.
|
sensitivity = 0 # -1.0 - 1.0, 0 means no modification.
|
||||||
|
|||||||
@@ -1 +1,4 @@
|
|||||||
* { border-width: 3px; }
|
* {
|
||||||
|
border-width: 2px;
|
||||||
|
border-radius: 15px;
|
||||||
|
}
|
||||||
|
|||||||
@@ -1,26 +0,0 @@
|
|||||||
{
|
|
||||||
"custom/quicklink1": {
|
|
||||||
"format": "",
|
|
||||||
"on-click": "~/dotfiles/.settings/browser.sh",
|
|
||||||
"tooltip-format": "Open browser"
|
|
||||||
},
|
|
||||||
/*
|
|
||||||
"custom/quicklink1": {
|
|
||||||
"format": "",
|
|
||||||
"on-click": "firefox",
|
|
||||||
"tooltip-format": "Open Firefox"
|
|
||||||
},
|
|
||||||
*/
|
|
||||||
"custom/quicklink2": {
|
|
||||||
"format": "",
|
|
||||||
"on-click": "~/dotfiles/.settings/filemanager.sh",
|
|
||||||
"tooltip-format": "Open filemanager"
|
|
||||||
},
|
|
||||||
"group/quicklinks": {
|
|
||||||
"orientation": "horizontal",
|
|
||||||
"modules": [
|
|
||||||
"custom/quicklink1",
|
|
||||||
"custom/quicklink2"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1 +1 @@
|
|||||||
2.9.2
|
2.9.1.2
|
||||||
@@ -1 +1 @@
|
|||||||
2920
|
2912
|
||||||
@@ -1,18 +1,5 @@
|
|||||||
Version 2.9.2
|
|
||||||
https://gitlab.com/stephan-raabe/dotfiles/-/releases/2.9.2
|
|
||||||
--------------------------------------------------------
|
|
||||||
- Works with Hyprland 0.41.2
|
|
||||||
- Introducing waypaper as new wallpaper selector
|
|
||||||
- Wallpaper cache for generated wallpaper variants. Will speed up the change between wallpapers if cached files exists. https://gitlab.com/stephan-raabe/dotfiles/-/wikis/Home/Wallpapers#wallpaper-cache
|
|
||||||
- You can define custom quicklinks in waybar: https://gitlab.com/stephan-raabe/dotfiles/-/wikis/Home/Waybar#define-your-quicklinks
|
|
||||||
- New SVG icons in waybar for ML4W and ChatGPT
|
|
||||||
- Default waybar theme changed to ml4w-blur/white
|
|
||||||
- Alacritty: selected text will be copied to the primary clipboard
|
|
||||||
- General/standard Hyprland environment configuration moved to ml4w.conf (will be re-used in kvm.conf and nvidia.conf)
|
|
||||||
- The time format in hyprlock is now aligned with the waybar clock time format that is defined in the ML4W Settings App
|
|
||||||
|
|
||||||
Version 2.9.1.2
|
Version 2.9.1.2
|
||||||
https://gitlab.com/stephan-raabe/dotfiles/-/releases/2.9.1.2
|
https://gitlab.com/stephan-raabe/dotfiles/-/releases/2.9.1.1
|
||||||
--------------------------------------------------------
|
--------------------------------------------------------
|
||||||
- Workspaces module in waybar updated to enable scroll to change the workspace https://gitlab.com/stephan-raabe/dotfiles/-/merge_requests/114
|
- Workspaces module in waybar updated to enable scroll to change the workspace https://gitlab.com/stephan-raabe/dotfiles/-/merge_requests/114
|
||||||
- More functions deactivated in Game Mode (SUPER+ALT+G)
|
- More functions deactivated in Game Mode (SUPER+ALT+G)
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
# ML4W Dotfiles 2.9.2
|
# ML4W Dotfiles 2.9.1.2
|
||||||
|
|
||||||
An advanced configuration of Hyprland for Arch Linux based distributions. This package includes an installation script to install and setup the required components.
|
An advanced configuration of Hyprland for Arch Linux based distributions. This package includes an installation script to install and setup the required components.
|
||||||
|
|
||||||
[]()
|
[](screenshots/screenshot2.png)
|
||||||
|
|
||||||
The ML4W Dotfiles are available as
|
The ML4W Dotfiles are available as
|
||||||
|
|
||||||
@@ -37,7 +37,11 @@ You can also visit the [ML4W Discord Server](https://discord.gg/c4fJK7Za3g) to s
|
|||||||
|
|
||||||
## Screenshots
|
## Screenshots
|
||||||
|
|
||||||
[]()
|
[](screenshots/screenshot1.png)
|
||||||
|
|
||||||
|
[](screenshots/screenshot3.png)
|
||||||
|
|
||||||
|
[](screenshots/screenshot5.png)
|
||||||
|
|
||||||
## Wallpaper repository
|
## Wallpaper repository
|
||||||
|
|
||||||
|
|||||||
@@ -11,6 +11,3 @@ opacity = 0.7
|
|||||||
[window.padding]
|
[window.padding]
|
||||||
x = 15
|
x = 15
|
||||||
y = 15
|
y = 15
|
||||||
|
|
||||||
[selection]
|
|
||||||
save_to_clipboard = true
|
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
source = ~/dotfiles/hypr/conf/animations/default.conf
|
source = ~/dotfiles/hypr/conf/animations/animation-moving.conf
|
||||||
|
|||||||
@@ -20,18 +20,15 @@ exec-once = hypridle
|
|||||||
# Load cliphist history
|
# Load cliphist history
|
||||||
exec-once = wl-paste --watch cliphist store
|
exec-once = wl-paste --watch cliphist store
|
||||||
|
|
||||||
|
# Initialize Wallpaper Engine
|
||||||
|
exec-once = ~/dotfiles/hypr/scripts/init-wallpaper-engine.sh
|
||||||
|
|
||||||
# Autostart ML4W App
|
# Autostart ML4W App
|
||||||
exec-once = ~/dotfiles/hypr/scripts/ml4w-welcome-autostart.sh
|
exec-once = ~/dotfiles/hypr/scripts/ml4w-welcome-autostart.sh
|
||||||
|
|
||||||
# Start ewww daemon
|
# Start ewww daemon
|
||||||
exec-once = ~/dotfiles/hypr/scripts/eww.sh
|
exec-once = ~/dotfiles/hypr/scripts/eww.sh
|
||||||
|
|
||||||
# Initialize waypaper
|
|
||||||
exec-once = waypaper --restore
|
|
||||||
|
|
||||||
# Launch Waybar
|
|
||||||
exec-once = ~/dotfiles/waybar/launch.sh
|
|
||||||
|
|
||||||
# Start autostart cleanup
|
# Start autostart cleanup
|
||||||
exec-once = ~/dotfiles/hypr/scripts/cleanup.sh
|
exec-once = ~/dotfiles/hypr/scripts/cleanup.sh
|
||||||
|
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
source = ~/dotfiles/hypr/conf/decorations/default.conf
|
source = ~/dotfiles/hypr/conf/decorations/custom.conf
|
||||||
|
|||||||
@@ -0,0 +1,25 @@
|
|||||||
|
# -----------------------------------------------------
|
||||||
|
# General window decoration
|
||||||
|
# name: "Default"
|
||||||
|
# -----------------------------------------------------
|
||||||
|
|
||||||
|
decoration {
|
||||||
|
rounding = 10
|
||||||
|
blur {
|
||||||
|
enabled = true
|
||||||
|
size = 10
|
||||||
|
passes = 3
|
||||||
|
new_optimizations = on
|
||||||
|
ignore_opacity = true
|
||||||
|
xray = false
|
||||||
|
blurls = waybar
|
||||||
|
}
|
||||||
|
active_opacity = 1.0
|
||||||
|
inactive_opacity = 0.8
|
||||||
|
fullscreen_opacity = 1.0
|
||||||
|
|
||||||
|
drop_shadow = true
|
||||||
|
shadow_range = 30
|
||||||
|
shadow_render_power = 3
|
||||||
|
col.shadow = 0x66000000
|
||||||
|
}
|
||||||
@@ -2,4 +2,11 @@
|
|||||||
# Environment Variables
|
# Environment Variables
|
||||||
# name: "Default"
|
# name: "Default"
|
||||||
# -----------------------------------------------------
|
# -----------------------------------------------------
|
||||||
# Set in ml4w.conf
|
|
||||||
|
env = XDG_SESSION_TYPE,wayland
|
||||||
|
env = XDG_SESSION_DESKTOP,Hyprland
|
||||||
|
env = QT_QPA_PLATFORM,wayland
|
||||||
|
env = QT_WAYLAND_DISABLE_WINDOWDECORATION,1
|
||||||
|
env = QT_AUTO_SCREEN_SCALE_FACTOR,1
|
||||||
|
env = MOZ_ENABLE_WAYLAND,1
|
||||||
|
env = GDK_SCALE,1
|
||||||
|
|||||||
@@ -2,5 +2,13 @@
|
|||||||
# Environment Variables
|
# Environment Variables
|
||||||
# name: "KVM"
|
# name: "KVM"
|
||||||
# -----------------------------------------------------
|
# -----------------------------------------------------
|
||||||
|
|
||||||
|
env = XDG_SESSION_TYPE,wayland
|
||||||
|
env = XDG_SESSION_DESKTOP,Hyprland
|
||||||
|
env = QT_QPA_PLATFORM,wayland
|
||||||
|
env = QT_WAYLAND_DISABLE_WINDOWDECORATION,1
|
||||||
|
env = QT_AUTO_SCREEN_SCALE_FACTOR,1
|
||||||
|
env = MOZ_ENABLE_WAYLAND,1
|
||||||
|
env = GDK_SCALE,1
|
||||||
env = WLR_RENDERER_ALLOW_SOFTWARE, 1
|
env = WLR_RENDERER_ALLOW_SOFTWARE, 1
|
||||||
env = WLR_NO_HARDWARE_CURSORS, 1
|
env = WLR_NO_HARDWARE_CURSORS, 1
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
exec-once = fcitx5-remote -r
|
||||||
|
exec-once = fcitx5 -d --replace
|
||||||
|
exec-once = fcitx5-remote -r
|
||||||
|
|
||||||
|
bind=$mainMod CTRL, E, exec, pkill fcitx5 -9;sleep 1;fcitx5 -d --replace; sleep 1;fcitx5-remote -r
|
||||||
@@ -1 +1 @@
|
|||||||
source = ~/dotfiles/hypr/conf/keybindings/default.conf
|
source = ~/dotfiles/hypr/conf/keybindings/custom.conf
|
||||||
|
|||||||
@@ -0,0 +1,94 @@
|
|||||||
|
# -----------------------------------------------------
|
||||||
|
# Key bindings
|
||||||
|
# name: "Default"
|
||||||
|
# -----------------------------------------------------
|
||||||
|
|
||||||
|
# SUPER KEY
|
||||||
|
$mainMod = SUPER
|
||||||
|
|
||||||
|
# Applications
|
||||||
|
bind = $mainMod, RETURN, exec, ~/dotfiles/.settings/terminal.sh
|
||||||
|
bind = $mainMod, B, exec, ~/dotfiles/.settings/browser.sh
|
||||||
|
bind = $mainMod, period, exec, emote
|
||||||
|
|
||||||
|
# Windows
|
||||||
|
bind = $mainMod, Q, killactive
|
||||||
|
bind = $mainMod, F, fullscreen
|
||||||
|
bind = $mainMod, E, exec, ~/dotfiles/.settings/filemanager.sh
|
||||||
|
bind = $mainMod, T, togglefloating
|
||||||
|
bind = $mainMod SHIFT, T, exec, ~/dotfiles/hypr/scripts/toggleallfloat.sh
|
||||||
|
bind = $mainMod, J, togglesplit
|
||||||
|
bind = $mainMod, left, movefocus, l
|
||||||
|
bind = $mainMod, right, movefocus, r
|
||||||
|
bind = $mainMod, up, movefocus, u
|
||||||
|
bind = $mainMod, down, movefocus, d
|
||||||
|
bindm = $mainMod, mouse:272, movewindow
|
||||||
|
bindm = $mainMod, mouse:273, resizewindow
|
||||||
|
bind = $mainMod SHIFT, right, resizeactive, 100 0
|
||||||
|
bind = $mainMod SHIFT, left, resizeactive, -100 0
|
||||||
|
bind = $mainMod SHIFT, up, resizeactive, 0 -100
|
||||||
|
bind = $mainMod SHIFT, down, resizeactive, 0 100
|
||||||
|
bind = $mainMod, G, togglegroup
|
||||||
|
|
||||||
|
# Actions
|
||||||
|
bind = $mainMod, PRINT, exec, ~/dotfiles/hypr/scripts/screenshot.sh
|
||||||
|
bind = $mainMod CTRL, Q, exec, wlogout
|
||||||
|
bind = $mainMod SHIFT, W, exec, ~/dotfiles/hypr/scripts/wallpaper.sh
|
||||||
|
bind = $mainMod CTRL, W, exec, ~/dotfiles/hypr/scripts/wallpaper.sh select
|
||||||
|
bind = $mainMod CTRL, RETURN, exec, rofi -show drun -replace -i
|
||||||
|
bind = $mainMod CTRL, H, exec, ~/dotfiles/hypr/scripts/keybindings.sh
|
||||||
|
bind = $mainMod SHIFT, B, exec, ~/dotfiles/waybar/launch.sh
|
||||||
|
bind = $mainMod SHIFT, R, exec, ~/dotfiles/hypr/scripts/loadconfig.sh
|
||||||
|
bind = $mainMod CTRL, F, exec, ~/dotfiles/scripts/filemanager.sh
|
||||||
|
bind = $mainMod CTRL, C, exec, ~/dotfiles/scripts/cliphist.sh
|
||||||
|
bind = $mainMod, V, exec, ~/dotfiles/scripts/cliphist.sh
|
||||||
|
bind = $mainMod CTRL, T, exec, ~/dotfiles/waybar/themeswitcher.sh
|
||||||
|
bind = $mainMod CTRL, S, exec, ~/dotfiles/apps/ML4W_Dotfiles_Settings-x86_64.AppImage
|
||||||
|
|
||||||
|
# Workspaces
|
||||||
|
bind = $mainMod, 1, workspace, 1
|
||||||
|
bind = $mainMod, 2, workspace, 2
|
||||||
|
bind = $mainMod, 3, workspace, 3
|
||||||
|
bind = $mainMod, 4, workspace, 4
|
||||||
|
bind = $mainMod, 5, workspace, 5
|
||||||
|
bind = $mainMod, 6, workspace, 6
|
||||||
|
bind = $mainMod, 7, workspace, 7
|
||||||
|
bind = $mainMod, 8, workspace, 8
|
||||||
|
bind = $mainMod, 9, workspace, 9
|
||||||
|
bind = $mainMod, 0, workspace, 10
|
||||||
|
bind = $mainMod SHIFT, 1, movetoworkspace, 1
|
||||||
|
bind = $mainMod SHIFT, 2, movetoworkspace, 2
|
||||||
|
bind = $mainMod SHIFT, 3, movetoworkspace, 3
|
||||||
|
bind = $mainMod SHIFT, 4, movetoworkspace, 4
|
||||||
|
bind = $mainMod SHIFT, 5, movetoworkspace, 5
|
||||||
|
bind = $mainMod SHIFT, 6, movetoworkspace, 6
|
||||||
|
bind = $mainMod SHIFT, 7, movetoworkspace, 7
|
||||||
|
bind = $mainMod SHIFT, 8, movetoworkspace, 8
|
||||||
|
bind = $mainMod SHIFT, 9, movetoworkspace, 9
|
||||||
|
bind = $mainMod SHIFT, 0, movetoworkspace, 10
|
||||||
|
bind = $mainMod, mouse_down, workspace, e+1
|
||||||
|
bind = $mainMod, mouse_up, workspace, e-1
|
||||||
|
bind = $mainMod CTRL, down, workspace, empty
|
||||||
|
bind = $mainMod CTRL, left, workspace, e-1
|
||||||
|
bind = $mainMod CTRL, right, workspace, e+1
|
||||||
|
|
||||||
|
# Fn keys
|
||||||
|
bind = , XF86MonBrightnessUp, exec, brightnessctl -q s +10%
|
||||||
|
bind = , XF86MonBrightnessDown, exec, brightnessctl -q s 10%-
|
||||||
|
bind = , XF86AudioRaiseVolume, exec, pactl set-sink-volume @DEFAULT_SINK@ +5% && notify-send -t 400 "Volume: $(pactl get-sink-volume @DEFAULT_SINK@ | awk '/front-left/ {print $5}')"
|
||||||
|
bind = , XF86AudioLowerVolume, exec, pactl set-sink-volume @DEFAULT_SINK@ -5% && notify-send -t 400 "Volume: $(pactl get-sink-volume @DEFAULT_SINK@ | awk '/front-left/ {print $5}')"
|
||||||
|
bind = , XF86AudioMute, exec, wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle
|
||||||
|
bind = , XF86AudioPlay, exec, playerctl play-pause
|
||||||
|
bind = , XF86AudioPause, exec, playerctl pause
|
||||||
|
bind = , XF86AudioNext, exec, playerctl next
|
||||||
|
bind = , XF86AudioPrev, exec, playerctl previous
|
||||||
|
bind = , XF86AudioMicMute, exec, pactl set-source-mute @DEFAULT_SOURCE@ toggle
|
||||||
|
bind = , XF86Calculator, exec, qalculate-gtk
|
||||||
|
bind = , XF86Lock, exec, hyprlock
|
||||||
|
bind = , XF86Tools, exec, alacritty --class dotfiles-floating -e ~/dotfiles/hypr/settings/settings.sh
|
||||||
|
|
||||||
|
# Passthrough SUPER KEY to Virtual Machine
|
||||||
|
bind = $mainMod, P, submap, passthru
|
||||||
|
submap = passthru
|
||||||
|
bind = SUPER, Escape, submap, reset
|
||||||
|
submap = reset
|
||||||
@@ -33,8 +33,8 @@ bind = $mainMod, G, togglegroup # Toggle window group
|
|||||||
bind = $mainMod SHIFT, A, exec, ~/dotfiles/hypr/scripts/toggle-animations.sh # Toggle animations
|
bind = $mainMod SHIFT, A, exec, ~/dotfiles/hypr/scripts/toggle-animations.sh # Toggle animations
|
||||||
bind = $mainMod, PRINT, exec, ~/dotfiles/hypr/scripts/screenshot.sh # Take a screenshot
|
bind = $mainMod, PRINT, exec, ~/dotfiles/hypr/scripts/screenshot.sh # Take a screenshot
|
||||||
bind = $mainMod CTRL, Q, exec, wlogout # Start wlogout
|
bind = $mainMod CTRL, Q, exec, wlogout # Start wlogout
|
||||||
bind = $mainMod SHIFT, W, exec, waypaper --random # Change the wallpaper
|
bind = $mainMod SHIFT, W, exec, ~/dotfiles/hypr/scripts/wallpaper.sh # Change the wallpaper
|
||||||
bind = $mainMod CTRL, W, exec, waypaper # Open wallpaper selector
|
bind = $mainMod CTRL, W, exec, ~/dotfiles/hypr/scripts/wallpaper.sh select # Open wallpaper selector
|
||||||
bind = $mainMod CTRL, RETURN, exec, rofi -show drun -replace -i # Open application launcher
|
bind = $mainMod CTRL, RETURN, exec, rofi -show drun -replace -i # Open application launcher
|
||||||
bind = $mainMod CTRL, H, exec, ~/dotfiles/hypr/scripts/keybindings.sh # Show keybindings
|
bind = $mainMod CTRL, H, exec, ~/dotfiles/hypr/scripts/keybindings.sh # Show keybindings
|
||||||
bind = $mainMod SHIFT, B, exec, ~/dotfiles/waybar/launch.sh # Reload waybar
|
bind = $mainMod SHIFT, B, exec, ~/dotfiles/waybar/launch.sh # Reload waybar
|
||||||
|
|||||||
@@ -8,8 +8,7 @@ dwindle {
|
|||||||
}
|
}
|
||||||
|
|
||||||
master {
|
master {
|
||||||
# new_is_master = true
|
new_is_master = true
|
||||||
# new_status = master
|
|
||||||
}
|
}
|
||||||
|
|
||||||
gestures {
|
gestures {
|
||||||
|
|||||||
@@ -8,8 +8,7 @@ dwindle {
|
|||||||
}
|
}
|
||||||
|
|
||||||
master {
|
master {
|
||||||
# new_is_master = true
|
new_is_master = true
|
||||||
# new_status = master
|
|
||||||
}
|
}
|
||||||
|
|
||||||
gestures {
|
gestures {
|
||||||
|
|||||||
@@ -2,22 +2,10 @@
|
|||||||
# ML4W configurations
|
# ML4W configurations
|
||||||
# -----------------------------------------------------
|
# -----------------------------------------------------
|
||||||
|
|
||||||
# Pavucontrol floating
|
windowrulev2 = float,class:(.*chat.openai.com.*)
|
||||||
windowrulev2 = float,class:(.*org.pulseaudio.pavucontrol.*)
|
windowrulev2 = size 500 50%,class:(.*chat.openai.com.*)
|
||||||
windowrulev2 = size 700 600,class:(.*org.pulseaudio.pavucontrol.*)
|
windowrulev2 = move 20 70,class:(.*chat.openai.com.*)
|
||||||
windowrulev2 = center,class:(.*org.pulseaudio.pavucontrol.*)
|
|
||||||
|
|
||||||
# OpenAI ChatGPT floating
|
|
||||||
windowrulev2 = float,title:(.*chat.openai.com.*)
|
|
||||||
windowrulev2 = size 500 50%,title:(.*chat.openai.com.*)
|
|
||||||
windowrulev2 = move 20 70,title:(.*chat.openai.com.*)
|
|
||||||
|
|
||||||
# ML4W Welcome App floating
|
|
||||||
windowrulev2 = float,class:(.*waypaper.*)
|
|
||||||
windowrulev2 = size 800 700,class:(.*waypaper.*)
|
|
||||||
windowrulev2 = center,class:(.*waypaper.*)
|
|
||||||
|
|
||||||
# ML4W Welcome App floating
|
|
||||||
windowrulev2 = float,class:(com.ml4w.welcome)
|
windowrulev2 = float,class:(com.ml4w.welcome)
|
||||||
windowrulev2 = size 700 600,class:(com.ml4w.welcome)
|
windowrulev2 = size 700 600,class:(com.ml4w.welcome)
|
||||||
windowrulev2 = center,class:(com.ml4w.welcome)
|
windowrulev2 = center,class:(com.ml4w.welcome)
|
||||||
@@ -26,7 +14,6 @@ windowrulev2 = float,class:(ml4w-welcome.py)
|
|||||||
windowrulev2 = size 400 500,class:(ml4w-welcome.py)
|
windowrulev2 = size 400 500,class:(ml4w-welcome.py)
|
||||||
windowrulev2 = center,class:(ml4w-welcome.py)
|
windowrulev2 = center,class:(ml4w-welcome.py)
|
||||||
|
|
||||||
# ML4W Settings App floating
|
|
||||||
windowrulev2 = float,class:(com.ml4w.dotfilessettings)
|
windowrulev2 = float,class:(com.ml4w.dotfilessettings)
|
||||||
windowrulev2 = size 700 600,class:(com.ml4w.dotfilessettings)
|
windowrulev2 = size 700 600,class:(com.ml4w.dotfilessettings)
|
||||||
windowrulev2 = move 10% 20%,class:(com.ml4w.dotfilessettings)
|
windowrulev2 = move 10% 20%,class:(com.ml4w.dotfilessettings)
|
||||||
@@ -35,7 +22,6 @@ windowrulev2 = float,class:(ml4w-dotfiles-settings.py)
|
|||||||
windowrulev2 = size 400 500,class:(ml4w-dotfiles-settings.py)
|
windowrulev2 = size 400 500,class:(ml4w-dotfiles-settings.py)
|
||||||
windowrulev2 = move 10% 20%,class:(ml4w-dotfiles-settings.py)
|
windowrulev2 = move 10% 20%,class:(ml4w-dotfiles-settings.py)
|
||||||
|
|
||||||
# ML4W Hyprland App floating
|
|
||||||
windowrulev2 = float,class:(com.ml4w.hyprland.settings)
|
windowrulev2 = float,class:(com.ml4w.hyprland.settings)
|
||||||
windowrulev2 = size 700 600,class:(com.ml4w.hyprland.settings)
|
windowrulev2 = size 700 600,class:(com.ml4w.hyprland.settings)
|
||||||
windowrulev2 = center,class:(com.ml4w.hyprland.settings)
|
windowrulev2 = center,class:(com.ml4w.hyprland.settings)
|
||||||
@@ -44,31 +30,10 @@ windowrulev2 = float,class:(ml4w-hyprland-settings.py)
|
|||||||
windowrulev2 = size 700 600,class:(ml4w-hyprland-settings.py)
|
windowrulev2 = size 700 600,class:(ml4w-hyprland-settings.py)
|
||||||
windowrulev2 = center,class:(ml4w-hyprland-settings.py)
|
windowrulev2 = center,class:(ml4w-hyprland-settings.py)
|
||||||
|
|
||||||
# General floating
|
|
||||||
windowrulev2 = float,class:(dotfiles-floating)
|
windowrulev2 = float,class:(dotfiles-floating)
|
||||||
windowrulev2 = size 1000 800,class:(dotfiles-floating)
|
windowrulev2 = size 1000 800,class:(dotfiles-floating)
|
||||||
windowrulev2 = center,class:(dotfiles-floating)
|
windowrulev2 = center,class:(dotfiles-floating)
|
||||||
|
|
||||||
# XDG Desktop Portal
|
|
||||||
env = XDG_CURRENT_DESKTOP,Hyprland
|
|
||||||
env = XDG_SESSION_TYPE,wayland
|
|
||||||
env = XDG_SESSION_DESKTOP,Hyprland
|
|
||||||
|
|
||||||
# QT
|
|
||||||
env = QT_QPA_PLATFORM,wayland;xcb
|
|
||||||
env = QT_QPA_PLATFORMTHEME,qt6ct
|
|
||||||
env = QT_WAYLAND_DISABLE_WINDOWDECORATION,1
|
|
||||||
env = QT_AUTO_SCREEN_SCALE_FACTOR,1
|
|
||||||
|
|
||||||
# GTK
|
|
||||||
env = GDK_SCALE,1
|
|
||||||
|
|
||||||
# Mozilla
|
|
||||||
env = MOZ_ENABLE_WAYLAND,1
|
|
||||||
|
|
||||||
# Set the cursor size for xcursor
|
|
||||||
env = XCURSOR_SIZE,24
|
|
||||||
|
|
||||||
# Disable appimage launcher by default
|
|
||||||
env = APPIMAGELAUNCHER_DISABLE,1
|
env = APPIMAGELAUNCHER_DISABLE,1
|
||||||
|
env = XCURSOR_SIZE,24
|
||||||
|
env = XDG_CURRENT_DESKTOP,Hyprland
|
||||||
|
|||||||
@@ -0,0 +1,7 @@
|
|||||||
|
# -----------------------------------------------------
|
||||||
|
# Monitor Setup
|
||||||
|
# name: "Default"
|
||||||
|
# -----------------------------------------------------
|
||||||
|
|
||||||
|
monitor=DP-1,preferred,0x0,2
|
||||||
|
monitor=HDMI-A-1,3840x2160,1920x-180,2,transform,1
|
||||||
@@ -1 +1 @@
|
|||||||
source = ~/dotfiles/hypr/conf/windowrules/default.conf
|
source = ~/dotfiles/hypr/conf/windowrules/custom.conf
|
||||||
|
|||||||
@@ -0,0 +1,18 @@
|
|||||||
|
# -----------------------------------------------------
|
||||||
|
# Window rules
|
||||||
|
# -----------------------------------------------------
|
||||||
|
|
||||||
|
windowrule = tile,^(Microsoft-edge)$
|
||||||
|
windowrule = tile,^(Brave-browser)$
|
||||||
|
windowrule = tile,^(Chromium)$
|
||||||
|
windowrule = float,^(pavucontrol)$
|
||||||
|
windowrule = float,^(blueman-manager)$
|
||||||
|
windowrule = float,^(nm-connection-editor)$
|
||||||
|
windowrule = float,^(qalculate-gtk)$
|
||||||
|
windowrule = float,^(showmethekey-gtk)$
|
||||||
|
windowrule = pin,^(showmethekey-gtk)$
|
||||||
|
layerrule = blur, gtk-layer-shell
|
||||||
|
layerrule = blur, logout_dialog
|
||||||
|
|
||||||
|
windowrule = float,title=^(Mathematica)$
|
||||||
|
windowrule = opacity 0.75, ^(Code)$
|
||||||
@@ -10,5 +10,4 @@ general {
|
|||||||
col.active_border = rgba(ffffffff)
|
col.active_border = rgba(ffffffff)
|
||||||
col.inactive_border = $color11
|
col.inactive_border = $color11
|
||||||
layout = dwindle
|
layout = dwindle
|
||||||
resize_on_border = true
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,5 +10,4 @@ general {
|
|||||||
col.active_border = $color11
|
col.active_border = $color11
|
||||||
col.inactive_border = rgba(ffffffff)
|
col.inactive_border = rgba(ffffffff)
|
||||||
layout = dwindle
|
layout = dwindle
|
||||||
resize_on_border = true
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,5 +10,4 @@ general {
|
|||||||
col.active_border = rgba(ffffffff)
|
col.active_border = rgba(ffffffff)
|
||||||
col.inactive_border = $color11
|
col.inactive_border = $color11
|
||||||
layout = dwindle
|
layout = dwindle
|
||||||
resize_on_border = true
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,5 +10,4 @@ general {
|
|||||||
col.active_border = $color11
|
col.active_border = $color11
|
||||||
col.inactive_border = rgba(ffffffff)
|
col.inactive_border = rgba(ffffffff)
|
||||||
layout = dwindle
|
layout = dwindle
|
||||||
resize_on_border = true
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,5 +10,4 @@ general {
|
|||||||
col.active_border = rgba(ffffffff)
|
col.active_border = rgba(ffffffff)
|
||||||
col.inactive_border = $color11
|
col.inactive_border = $color11
|
||||||
layout = dwindle
|
layout = dwindle
|
||||||
resize_on_border = true
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,5 +10,4 @@ general {
|
|||||||
col.active_border = $color11
|
col.active_border = $color11
|
||||||
col.inactive_border = rgba(ffffffff)
|
col.inactive_border = rgba(ffffffff)
|
||||||
layout = dwindle
|
layout = dwindle
|
||||||
resize_on_border = true
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,5 +10,4 @@ general {
|
|||||||
col.active_border = rgba(ffffffff)
|
col.active_border = rgba(ffffffff)
|
||||||
col.inactive_border = $color11
|
col.inactive_border = $color11
|
||||||
layout = dwindle
|
layout = dwindle
|
||||||
resize_on_border = true
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,5 +10,4 @@ general {
|
|||||||
col.active_border = $color11
|
col.active_border = $color11
|
||||||
col.inactive_border = rgba(ffffffff)
|
col.inactive_border = rgba(ffffffff)
|
||||||
layout = dwindle
|
layout = dwindle
|
||||||
resize_on_border = true
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,9 +6,8 @@
|
|||||||
general {
|
general {
|
||||||
gaps_in = 10
|
gaps_in = 10
|
||||||
gaps_out = 14
|
gaps_out = 14
|
||||||
border_size = 3
|
border_size = 2
|
||||||
col.active_border = $color11
|
col.active_border = $color11
|
||||||
col.inactive_border = rgba(ffffffff)
|
col.inactive_border = rgba(ffffffff)
|
||||||
layout = dwindle
|
layout = dwindle
|
||||||
resize_on_border = true
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,5 +10,4 @@ general {
|
|||||||
col.active_border = $color11
|
col.active_border = $color11
|
||||||
col.inactive_border = rgba(ffffffff)
|
col.inactive_border = rgba(ffffffff)
|
||||||
layout = dwindle
|
layout = dwindle
|
||||||
resize_on_border = true
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,5 +10,4 @@ general {
|
|||||||
col.active_border = $color11
|
col.active_border = $color11
|
||||||
col.inactive_border = rgba(ffffffff)
|
col.inactive_border = rgba(ffffffff)
|
||||||
layout = dwindle
|
layout = dwindle
|
||||||
resize_on_border = true
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -43,7 +43,6 @@ input-field {
|
|||||||
|
|
||||||
label {
|
label {
|
||||||
monitor =
|
monitor =
|
||||||
#clock
|
|
||||||
text = cmd[update:1000] echo "$TIME"
|
text = cmd[update:1000] echo "$TIME"
|
||||||
color = rgba(200, 200, 200, 1.0)
|
color = rgba(200, 200, 200, 1.0)
|
||||||
font_size = 55
|
font_size = 55
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
preload = $HOME/wallpaper/default.jpg
|
preload = $HOME/wallpaper/hyprland.jpg
|
||||||
wallpaper = ,$HOME/wallpaper/default.jpg
|
wallpaper = ,$HOME/wallpaper/hyprland.jpg
|
||||||
splash = false
|
splash = false
|
||||||
@@ -46,7 +46,6 @@ _commandExists "swww" "swww"
|
|||||||
_commandExists "eww" "eww"
|
_commandExists "eww" "eww"
|
||||||
_commandExists "magick" "imagemagick"
|
_commandExists "magick" "imagemagick"
|
||||||
_commandExists "figlet" "figlet"
|
_commandExists "figlet" "figlet"
|
||||||
_commandExists "waypaper" "waypaper"
|
|
||||||
|
|
||||||
echo
|
echo
|
||||||
echo "Press return to exit"
|
echo "Press return to exit"
|
||||||
|
|||||||
@@ -1,5 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
generated_versions="$HOME/.cache/ml4w-wallpaper-generated"
|
|
||||||
rm $HOME/.cache/ml4w-wallpaper-generated/*
|
|
||||||
echo ":: Wallpaper cache cleared"
|
|
||||||
notify-send "Wallpaper cache cleared"
|
|
||||||
@@ -9,135 +9,181 @@
|
|||||||
# by Stephan Raabe (2024)
|
# by Stephan Raabe (2024)
|
||||||
# -----------------------------------------------------
|
# -----------------------------------------------------
|
||||||
|
|
||||||
# -----------------------------------------------------
|
# Cache file for holding the current wallpaper
|
||||||
# Get selected wallpaper
|
wallpaper_folder="$HOME/wallpaper"
|
||||||
# -----------------------------------------------------
|
if [ -f ~/dotfiles/.settings/wallpaper-folder.sh ] ;then
|
||||||
echo ":: Using wallpaper $1"
|
source ~/dotfiles/.settings/wallpaper-folder.sh
|
||||||
wallpaper=$1
|
|
||||||
|
|
||||||
# -----------------------------------------------------
|
|
||||||
# Check to use wallpaper cache
|
|
||||||
# -----------------------------------------------------
|
|
||||||
use_cache=0
|
|
||||||
if [ -f $HOME/dotfiles/.settings/wallpaper_cache ] ;then
|
|
||||||
use_cache=1
|
|
||||||
fi
|
fi
|
||||||
|
used_wallpaper="$HOME/.cache/used_wallpaper"
|
||||||
if [ "$use_cache" == "1" ] ;then
|
|
||||||
echo ":: Using Wallpaper Cache"
|
|
||||||
else
|
|
||||||
echo ":: Wallpaper Cache disabled"
|
|
||||||
fi
|
|
||||||
|
|
||||||
# -----------------------------------------------------
|
|
||||||
# File and folder names
|
|
||||||
# -----------------------------------------------------
|
|
||||||
force_generate=0
|
|
||||||
generated_versions="$HOME/.cache/ml4w-wallpaper-generated"
|
|
||||||
cache_file="$HOME/.cache/current_wallpaper"
|
cache_file="$HOME/.cache/current_wallpaper"
|
||||||
blurred_wallpaper="$HOME/.cache/blurred_wallpaper.png"
|
blurred="$HOME/.cache/blurred_wallpaper.png"
|
||||||
square_wallpaper="$HOME/.cache/square_wallpaper.png"
|
square="$HOME/.cache/square_wallpaper.png"
|
||||||
rasi_file="$HOME/.cache/current_wallpaper.rasi"
|
rasi_file="$HOME/.cache/current_wallpaper.rasi"
|
||||||
blur_file="$HOME/dotfiles/.settings/blur.sh"
|
blur_file="$HOME/dotfiles/.settings/blur.sh"
|
||||||
|
|
||||||
blur="50x30"
|
blur="50x30"
|
||||||
blur=$(cat $blur_file)
|
blur=$(cat $blur_file)
|
||||||
|
|
||||||
|
# Create cache file if not exists
|
||||||
|
if [ ! -f $cache_file ] ;then
|
||||||
|
touch $cache_file
|
||||||
|
echo "$wallpaper_folder/default.jpg" > "$cache_file"
|
||||||
|
fi
|
||||||
|
|
||||||
# Create rasi file if not exists
|
# Create rasi file if not exists
|
||||||
if [ ! -f $rasi_file ] ;then
|
if [ ! -f $rasi_file ] ;then
|
||||||
touch $rasi_file
|
touch $rasi_file
|
||||||
echo "* { current-image: url(\"$wallpaper_folder/default.jpg\", height); }" > "$rasi_file"
|
echo "* { current-image: url(\"$wallpaper_folder/default.jpg\", height); }" > "$rasi_file"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Create folder with generated versions of wallpaper if not exists
|
current_wallpaper=$(cat "$cache_file")
|
||||||
if [ ! -d $generated_versions ] ;then
|
|
||||||
mkdir $generated_versions
|
case $1 in
|
||||||
fi
|
|
||||||
|
# Load wallpaper from .cache of last session
|
||||||
|
"init")
|
||||||
|
sleep 1
|
||||||
|
if [ -f $cache_file ]; then
|
||||||
|
wal -q -i $current_wallpaper
|
||||||
|
else
|
||||||
|
wal -q -i $wallpaper_folder/
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
|
||||||
|
# Select wallpaper with rofi
|
||||||
|
"select")
|
||||||
|
sleep 0.2
|
||||||
|
selected=$( find "$wallpaper_folder" -type f \( -iname "*.jpg" -o -iname "*.jpeg" -o -iname "*.png" \) -exec basename {} \; | sort -R | while read rfile
|
||||||
|
do
|
||||||
|
echo -en "$rfile\x00icon\x1f$wallpaper_folder/${rfile}\n"
|
||||||
|
done | rofi -dmenu -i -replace -config ~/dotfiles/rofi/config-wallpaper.rasi)
|
||||||
|
if [ ! "$selected" ]; then
|
||||||
|
echo "No wallpaper selected"
|
||||||
|
exit
|
||||||
|
fi
|
||||||
|
wal -q -i $wallpaper_folder/$selected
|
||||||
|
;;
|
||||||
|
|
||||||
|
# Randomly select wallpaper
|
||||||
|
*)
|
||||||
|
wal -q -i $wallpaper_folder/
|
||||||
|
;;
|
||||||
|
|
||||||
|
esac
|
||||||
|
|
||||||
# -----------------------------------------------------
|
# -----------------------------------------------------
|
||||||
# Current wallpaper
|
# Load current pywal color scheme
|
||||||
# -----------------------------------------------------
|
# -----------------------------------------------------
|
||||||
current_wallpaper=$wallpaper
|
|
||||||
current_wallpaper_filename=$(basename $current_wallpaper)
|
|
||||||
echo ":: Current Wallpaper: $current_wallpaper"
|
|
||||||
echo ":: Current Wallpaper Filename: $current_wallpaper_filename"
|
|
||||||
newwall=$current_wallpaper_filename
|
|
||||||
|
|
||||||
# -----------------------------------------------------
|
|
||||||
# Execute pywal
|
|
||||||
# -----------------------------------------------------
|
|
||||||
echo ":: Execute wallpaper"
|
|
||||||
wal -q -i $wallpaper
|
|
||||||
source "$HOME/.cache/wal/colors.sh"
|
source "$HOME/.cache/wal/colors.sh"
|
||||||
|
|
||||||
# -----------------------------------------------------
|
# -----------------------------------------------------
|
||||||
# Wallpaper Effects
|
# get wallpaper image name
|
||||||
# -----------------------------------------------------
|
# -----------------------------------------------------
|
||||||
|
newwall=$(echo $wallpaper | sed "s|$wallpaper_folder/||g")
|
||||||
|
|
||||||
|
# -----------------------------------------------------
|
||||||
|
# Reload waybar with new colors
|
||||||
|
# -----------------------------------------------------
|
||||||
|
~/dotfiles/waybar/launch.sh
|
||||||
|
|
||||||
|
# -----------------------------------------------------
|
||||||
|
# Set the new wallpaper
|
||||||
|
# -----------------------------------------------------
|
||||||
|
transition_type="wipe"
|
||||||
|
# transition_type="outer"
|
||||||
|
# transition_type="random"
|
||||||
|
|
||||||
|
cp $wallpaper $HOME/.cache/
|
||||||
|
mv $HOME/.cache/$newwall $used_wallpaper
|
||||||
|
|
||||||
|
# Load Wallpaper Effect
|
||||||
if [ -f $HOME/dotfiles/.settings/wallpaper-effect.sh ] ;then
|
if [ -f $HOME/dotfiles/.settings/wallpaper-effect.sh ] ;then
|
||||||
effect=$(cat $HOME/dotfiles/.settings/wallpaper-effect.sh)
|
effect=$(cat $HOME/dotfiles/.settings/wallpaper-effect.sh)
|
||||||
if [ ! "$effect" == "off" ] ;then
|
if [ ! "$effect" == "off" ] ;then
|
||||||
used_wallpaper=$generated_versions/$effect-$newwall
|
if [ "$1" == "init" ] ;then
|
||||||
if [ -f $generated_versions/$effect-$newwall ] && [ "$force_generate" == "0" ] && [ "$use_cache" == "1" ] ;then
|
echo ":: Init"
|
||||||
echo ":: Use cached wallpaper $effect-$newwall"
|
|
||||||
else
|
else
|
||||||
echo ":: Generate new cached wallpaper $effect-$newwall with effect $effect"
|
dunstify "Using wallpaper effect $effect..." "with image $newwall" -h int:value:10 -h string:x-dunst-stack-tag:wallpaper
|
||||||
if [ "$1" == "init" ] ;then
|
|
||||||
echo ":: Init"
|
|
||||||
else
|
|
||||||
dunstify "Using wallpaper effect $effect..." "with image $newwall" -h int:value:10 -h string:x-dunst-stack-tag:wallpaper
|
|
||||||
fi
|
|
||||||
source $HOME/dotfiles/hypr/effects/wallpaper/$effect
|
|
||||||
fi
|
fi
|
||||||
echo ":: Loading wallpaper $generated_versions/$effect-$newwall with effect $effect"
|
source $HOME/dotfiles/hypr/effects/wallpaper/$effect
|
||||||
killall -e hyprpaper &
|
|
||||||
sleep 1;
|
|
||||||
wal_tpl=$(cat $HOME/dotfiles/.settings/hyprpaper.tpl)
|
|
||||||
echo $wal_tpl
|
|
||||||
output=${wal_tpl//WALLPAPER/$used_wallpaper}
|
|
||||||
echo "$output" > $HOME/dotfiles/hypr/hyprpaper.conf
|
|
||||||
hyprpaper & > /dev/null 2>&1
|
|
||||||
else
|
|
||||||
echo ":: Wallpaper effect is set to off"
|
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
wallpaper_engine=$(cat $HOME/dotfiles/.settings/wallpaper-engine.sh)
|
||||||
|
if [ "$wallpaper_engine" == "swww" ] ;then
|
||||||
|
# swww
|
||||||
|
echo ":: Using swww"
|
||||||
|
swww img $used_wallpaper \
|
||||||
|
--transition-bezier .43,1.19,1,.4 \
|
||||||
|
--transition-fps=60 \
|
||||||
|
--transition-type=$transition_type \
|
||||||
|
--transition-duration=0.7 \
|
||||||
|
--transition-pos "$( hyprctl cursorpos )"
|
||||||
|
elif [ "$wallpaper_engine" == "hyprpaper" ] ;then
|
||||||
|
# hyprpaper
|
||||||
|
echo ":: Using hyprpaper"
|
||||||
|
killall hyprpaper
|
||||||
|
wal_tpl=$(cat $HOME/dotfiles/.settings/hyprpaper.tpl)
|
||||||
|
output=${wal_tpl//WALLPAPER/$used_wallpaper}
|
||||||
|
echo "$output" > $HOME/dotfiles/hypr/hyprpaper.conf
|
||||||
|
hyprpaper &
|
||||||
|
else
|
||||||
|
echo ":: Wallpaper Engine disabled"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ "$1" == "init" ] ;then
|
||||||
|
echo ":: Init"
|
||||||
|
else
|
||||||
|
sleep 1
|
||||||
|
dunstify "Changing wallpaper ..." "with image $newwall" -h int:value:25 -h string:x-dunst-stack-tag:wallpaper
|
||||||
|
|
||||||
|
# -----------------------------------------------------
|
||||||
|
# Reload Hyprctl.sh
|
||||||
|
# -----------------------------------------------------
|
||||||
|
$HOME/.config/ml4w-hyprland-settings/hyprctl.sh &
|
||||||
|
fi
|
||||||
|
|
||||||
# -----------------------------------------------------
|
# -----------------------------------------------------
|
||||||
# Created blurred wallpaper
|
# Created blurred wallpaper
|
||||||
# -----------------------------------------------------
|
# -----------------------------------------------------
|
||||||
if [ -f $generated_versions/blur-$blur-$newwall.png ] && [ "$force_generate" == "0" ] && [ "$use_cache" == "1" ] ;then
|
if [ "$1" == "init" ] ;then
|
||||||
echo ":: Use cached wallpaper blur-$blur-$newwall.png"
|
echo ":: Init"
|
||||||
else
|
else
|
||||||
echo ":: Generate new cached wallpaper blur-$blur-$newwall with blur $blur"
|
dunstify "Creating blurred version ..." "with image $newwall" -h int:value:50 -h string:x-dunst-stack-tag:wallpaper
|
||||||
if [ "$1" == "init" ] ;then
|
fi
|
||||||
echo ":: Init"
|
|
||||||
else
|
magick $used_wallpaper -resize 75% $blurred
|
||||||
dunstify "Creating blurred version ..." "with image $newwall" -h int:value:50 -h string:x-dunst-stack-tag:wallpaper
|
echo ":: Resized to 75%"
|
||||||
fi
|
if [ ! "$blur" == "0x0" ] ;then
|
||||||
magick $wallpaper -resize 75% $blurred_wallpaper
|
magick $blurred -blur $blur $blurred
|
||||||
echo ":: Resized to 75%"
|
echo ":: Blurred"
|
||||||
if [ ! "$blur" == "0x0" ] ;then
|
|
||||||
magick $blurred_wallpaper -blur $blur $blurred_wallpaper
|
|
||||||
cp $blurred_wallpaper $generated_versions/blur-$blur-$newwall.png
|
|
||||||
echo ":: Blurred"
|
|
||||||
fi
|
|
||||||
cp $generated_versions/blur-$blur-$newwall.png $blurred_wallpaper
|
|
||||||
fi
|
fi
|
||||||
cp $generated_versions/blur-$blur-$newwall.png $blurred_wallpaper
|
|
||||||
|
|
||||||
# -----------------------------------------------------
|
# -----------------------------------------------------
|
||||||
# Created square wallpaper
|
# Created quare wallpaper
|
||||||
# -----------------------------------------------------
|
# -----------------------------------------------------
|
||||||
if [ -f $generated_versions/square-$newwall.png ] && [ "$force_generate" == "0" ] && [ "$use_cache" == "1" ] ;then
|
if [ "$1" == "init" ] ;then
|
||||||
echo ":: Use cached wallpaper square-$newwall.png"
|
echo ":: Init"
|
||||||
else
|
else
|
||||||
echo ":: Generate new cached wallpaper square-$newwall"
|
dunstify "Creating square version ..." "with image $newwall" -h int:value:75 -h string:x-dunst-stack-tag:wallpaper
|
||||||
if [ "$1" == "init" ] ;then
|
|
||||||
echo ":: Init"
|
|
||||||
else
|
|
||||||
dunstify "Creating square version ..." "with image $newwall" -h int:value:75 -h string:x-dunst-stack-tag:wallpaper
|
|
||||||
fi
|
|
||||||
magick $wallpaper -gravity Center -extent 1:1 $square_wallpaper
|
|
||||||
cp $square_wallpaper $generated_versions/square-$newwall.png
|
|
||||||
fi
|
fi
|
||||||
cp $generated_versions/square-$newwall.png $square_wallpaper
|
magick $wallpaper -gravity Center -extent 1:1 $square
|
||||||
|
echo ":: Square version created"
|
||||||
|
|
||||||
|
# -----------------------------------------------------
|
||||||
|
# Write selected wallpaper into .cache files
|
||||||
|
# -----------------------------------------------------
|
||||||
|
echo "$wallpaper" > "$cache_file"
|
||||||
|
echo "* { current-image: url(\"$blurred\", height); }" > "$rasi_file"
|
||||||
|
|
||||||
|
# -----------------------------------------------------
|
||||||
|
# Send notification
|
||||||
|
# -----------------------------------------------------
|
||||||
|
|
||||||
|
if [ "$1" == "init" ] ;then
|
||||||
|
echo ":: Init"
|
||||||
|
else
|
||||||
|
dunstify "Wallpaper procedure complete!" "with image $newwall" -h int:value:100 -h string:x-dunst-stack-tag:wallpaper
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "DONE!"
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ killall -e xdg-desktop-portal-kde
|
|||||||
killall -e xdg-desktop-portal-lxqt
|
killall -e xdg-desktop-portal-lxqt
|
||||||
killall -e xdg-desktop-portal-wlr
|
killall -e xdg-desktop-portal-wlr
|
||||||
killall -e xdg-desktop-portal-gtk
|
killall -e xdg-desktop-portal-gtk
|
||||||
killall -e xdg-desktop-portal
|
killall xdg-desktop-portal
|
||||||
sleep 1
|
sleep 1
|
||||||
|
|
||||||
# start xdg-desktop-portal-hyprland
|
# start xdg-desktop-portal-hyprland
|
||||||
|
|||||||
@@ -34,7 +34,7 @@ else
|
|||||||
fi
|
fi
|
||||||
echo ""
|
echo ""
|
||||||
source .install/required.sh
|
source .install/required.sh
|
||||||
source .install/confirm_start.sh
|
source .install/confirm-start.sh
|
||||||
source .install/paralleldownloads.sh
|
source .install/paralleldownloads.sh
|
||||||
source .install/yay.sh
|
source .install/yay.sh
|
||||||
source .install/updatesystem.sh
|
source .install/updatesystem.sh
|
||||||
@@ -44,45 +44,38 @@ source .install/installer.sh
|
|||||||
source .install/remove.sh
|
source .install/remove.sh
|
||||||
source .install/general.sh
|
source .install/general.sh
|
||||||
source .install/packages/general-packages.sh
|
source .install/packages/general-packages.sh
|
||||||
source .install/install_packages.sh
|
source .install/install-packages.sh
|
||||||
|
source .install/fcitx5.sh
|
||||||
source .install/profile.sh
|
source .install/profile.sh
|
||||||
if [[ $profile == *"Hyprland"* ]]; then
|
if [[ $profile == *"Hyprland"* ]]; then
|
||||||
echo -e "${GREEN}"
|
echo -e "${GREEN}"
|
||||||
figlet "Hyprland"
|
figlet "Hyprland"
|
||||||
echo -e "${NONE}"
|
echo -e "${NONE}"
|
||||||
source .install/packages/hyprland-packages.sh
|
source .install/packages/hyprland-packages.sh
|
||||||
source .install/install_packages.sh
|
source .install/install-packages.sh
|
||||||
fi
|
fi
|
||||||
if [[ $profile == *"Qtile"* ]]; then
|
if [[ $profile == *"Qtile"* ]]; then
|
||||||
echo -e "${GREEN}"
|
echo -e "${GREEN}"
|
||||||
figlet "Qtile"
|
figlet "Qtile"
|
||||||
echo -e "${NONE}"
|
echo -e "${NONE}"
|
||||||
source .install/packages/qtile-packages.sh
|
source .install/packages/qtile-packages.sh
|
||||||
source .install/install_packages.sh
|
source .install/install-packages.sh
|
||||||
fi
|
fi
|
||||||
source .install/wallpaper.sh
|
source .install/wallpaper.sh
|
||||||
source .install/displaymanager.sh
|
source .install/displaymanager.sh
|
||||||
source .install/issue.sh
|
source .install/issue.sh
|
||||||
|
|
||||||
# Modify existing files before restore starts
|
|
||||||
source .install/before_restore.sh
|
|
||||||
|
|
||||||
# Restore configuration and settings
|
|
||||||
source .install/restore.sh
|
source .install/restore.sh
|
||||||
|
|
||||||
# Setup the input devices
|
|
||||||
source .install/keyboard.sh
|
source .install/keyboard.sh
|
||||||
|
|
||||||
source .install/neovim.sh
|
source .install/neovim.sh
|
||||||
source .install/hook.sh
|
source .install/hook.sh
|
||||||
source .install/vm.sh
|
source .install/vm.sh
|
||||||
source .install/copy.sh
|
source .install/copy.sh
|
||||||
source .install/init-pywal.sh
|
source .install/init-pywal.sh
|
||||||
if [[ $profile == *"Hyprland"* ]]; then
|
if [[ $profile == *"Hyprland"* ]]; then
|
||||||
source .install/hyprland_dotfiles.sh
|
source .install/hyprland-dotfiles.sh
|
||||||
fi
|
fi
|
||||||
if [[ $profile == *"Qtile"* ]]; then
|
if [[ $profile == *"Qtile"* ]]; then
|
||||||
source .install/qtile_dotfiles.sh
|
source .install/qtile-dotfiles.sh
|
||||||
fi
|
fi
|
||||||
source .install/settings.sh
|
source .install/settings.sh
|
||||||
source .install/apps.sh
|
source .install/apps.sh
|
||||||
|
|||||||
@@ -43,7 +43,7 @@ configuration {
|
|||||||
window {
|
window {
|
||||||
width: 400px;
|
width: 400px;
|
||||||
x-offset: -14px;
|
x-offset: -14px;
|
||||||
y-offset: 65px;
|
y-offset: 14px;
|
||||||
spacing: 0px;
|
spacing: 0px;
|
||||||
padding: 0px;
|
padding: 0px;
|
||||||
margin: 0px;
|
margin: 0px;
|
||||||
@@ -56,7 +56,7 @@ window {
|
|||||||
anchor: northeast;
|
anchor: northeast;
|
||||||
fullscreen: false;
|
fullscreen: false;
|
||||||
enabled: true;
|
enabled: true;
|
||||||
border-radius: 10px;
|
border-radius: @border-radius;
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -120,6 +120,7 @@ entry {
|
|||||||
cursor: text;
|
cursor: text;
|
||||||
placeholder: "Search";
|
placeholder: "Search";
|
||||||
placeholder-color: inherit;
|
placeholder-color: inherit;
|
||||||
|
border-radius: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ---- Mode Switcher ---- */
|
/* ---- Mode Switcher ---- */
|
||||||
@@ -132,7 +133,7 @@ mode-switcher{
|
|||||||
|
|
||||||
button {
|
button {
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
border-radius: 10px;
|
border-radius: @border-radius;
|
||||||
background-color: @background;
|
background-color: @background;
|
||||||
text-color: inherit;
|
text-color: inherit;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
@@ -160,7 +161,8 @@ listview {
|
|||||||
padding: 10px;
|
padding: 10px;
|
||||||
margin: 0px;
|
margin: 0px;
|
||||||
background-color: @background;
|
background-color: @background;
|
||||||
border:0px;
|
border: 0px;
|
||||||
|
border-radius: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ---- Element ---- */
|
/* ---- Element ---- */
|
||||||
@@ -170,7 +172,7 @@ element {
|
|||||||
margin: 5px;
|
margin: 5px;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
background-color: @background;
|
background-color: @background;
|
||||||
border-radius: 10px;
|
border-radius: @border-radius;
|
||||||
border: @border-width;
|
border: @border-width;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -57,7 +57,7 @@ window {
|
|||||||
anchor: north;
|
anchor: north;
|
||||||
fullscreen: false;
|
fullscreen: false;
|
||||||
enabled: true;
|
enabled: true;
|
||||||
border-radius: 10px;
|
border-radius: @border-radius;
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -121,6 +121,7 @@ entry {
|
|||||||
cursor: text;
|
cursor: text;
|
||||||
placeholder: "Search";
|
placeholder: "Search";
|
||||||
placeholder-color: inherit;
|
placeholder-color: inherit;
|
||||||
|
border-radius: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ---- Mode Switcher ---- */
|
/* ---- Mode Switcher ---- */
|
||||||
@@ -133,7 +134,7 @@ mode-switcher{
|
|||||||
|
|
||||||
button {
|
button {
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
border-radius: 10px;
|
border-radius: @border-radius;
|
||||||
background-color: @background;
|
background-color: @background;
|
||||||
text-color: inherit;
|
text-color: inherit;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
@@ -161,7 +162,8 @@ listview {
|
|||||||
padding: 10px;
|
padding: 10px;
|
||||||
margin: 0px;
|
margin: 0px;
|
||||||
background-color: @background;
|
background-color: @background;
|
||||||
border:0px;
|
border: 0px;
|
||||||
|
border-radius: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ---- Element ---- */
|
/* ---- Element ---- */
|
||||||
@@ -171,7 +173,7 @@ element {
|
|||||||
margin: 5px;
|
margin: 5px;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
background-color: @background;
|
background-color: @background;
|
||||||
border-radius: 10px;
|
border-radius: @border-radius;
|
||||||
border: @border-width;
|
border: @border-width;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -56,7 +56,7 @@ window {
|
|||||||
anchor: center;
|
anchor: center;
|
||||||
fullscreen: false;
|
fullscreen: false;
|
||||||
enabled: true;
|
enabled: true;
|
||||||
border-radius: 10px;
|
border-radius: @border-radius;
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -132,7 +132,7 @@ mode-switcher{
|
|||||||
|
|
||||||
button {
|
button {
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
border-radius: 10px;
|
border-radius: @border-radius;
|
||||||
background-color: @background;
|
background-color: @background;
|
||||||
text-color: inherit;
|
text-color: inherit;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
@@ -170,7 +170,7 @@ element {
|
|||||||
margin: 5px;
|
margin: 5px;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
background-color: @background;
|
background-color: @background;
|
||||||
border-radius: 10px;
|
border-radius: @border-radius;
|
||||||
border: @border-width;
|
border: @border-width;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -56,7 +56,7 @@ window {
|
|||||||
anchor: center;
|
anchor: center;
|
||||||
fullscreen: false;
|
fullscreen: false;
|
||||||
enabled: true;
|
enabled: true;
|
||||||
border-radius: 10px;
|
border-radius: @border-radius;
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -132,7 +132,7 @@ mode-switcher{
|
|||||||
|
|
||||||
button {
|
button {
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
border-radius: 10px;
|
border-radius: @border-radius;
|
||||||
background-color: @background;
|
background-color: @background;
|
||||||
text-color: inherit;
|
text-color: inherit;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
@@ -170,7 +170,7 @@ element {
|
|||||||
margin: 5px;
|
margin: 5px;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
background-color: @background;
|
background-color: @background;
|
||||||
border-radius: 10px;
|
border-radius: @border-radius;
|
||||||
border: @border-width;
|
border: @border-width;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -57,7 +57,7 @@ window {
|
|||||||
anchor: northeast;
|
anchor: northeast;
|
||||||
fullscreen: false;
|
fullscreen: false;
|
||||||
enabled: true;
|
enabled: true;
|
||||||
border-radius: 10px;
|
border-radius: @border-radius;
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -133,7 +133,7 @@ mode-switcher{
|
|||||||
|
|
||||||
button {
|
button {
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
border-radius: 10px;
|
border-radius: @border-radius;
|
||||||
background-color: @background;
|
background-color: @background;
|
||||||
text-color: inherit;
|
text-color: inherit;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
@@ -171,7 +171,7 @@ element {
|
|||||||
margin: 5px;
|
margin: 5px;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
background-color: @background;
|
background-color: @background;
|
||||||
border-radius: 10px;
|
border-radius: @border-radius;
|
||||||
border: @border-width;
|
border: @border-width;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -43,7 +43,7 @@ configuration {
|
|||||||
window {
|
window {
|
||||||
width: 400px;
|
width: 400px;
|
||||||
x-offset: 0px;
|
x-offset: 0px;
|
||||||
y-offset: 65px;
|
y-offset: 14px;
|
||||||
spacing: 0px;
|
spacing: 0px;
|
||||||
padding: 0px;
|
padding: 0px;
|
||||||
margin: 0px;
|
margin: 0px;
|
||||||
@@ -56,7 +56,7 @@ window {
|
|||||||
anchor: north;
|
anchor: north;
|
||||||
fullscreen: false;
|
fullscreen: false;
|
||||||
enabled: true;
|
enabled: true;
|
||||||
border-radius: 10px;
|
border-radius: @border-radius;
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -120,6 +120,7 @@ entry {
|
|||||||
cursor: text;
|
cursor: text;
|
||||||
placeholder: "Search";
|
placeholder: "Search";
|
||||||
placeholder-color: inherit;
|
placeholder-color: inherit;
|
||||||
|
border-radius: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ---- Mode Switcher ---- */
|
/* ---- Mode Switcher ---- */
|
||||||
@@ -132,7 +133,7 @@ mode-switcher{
|
|||||||
|
|
||||||
button {
|
button {
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
border-radius: 10px;
|
border-radius: @border-radius;
|
||||||
background-color: @background;
|
background-color: @background;
|
||||||
text-color: inherit;
|
text-color: inherit;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
@@ -160,7 +161,8 @@ listview {
|
|||||||
padding: 10px;
|
padding: 10px;
|
||||||
margin: 0px;
|
margin: 0px;
|
||||||
background-color: @background;
|
background-color: @background;
|
||||||
border:0px;
|
border: 0px;
|
||||||
|
border-radius: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ---- Element ---- */
|
/* ---- Element ---- */
|
||||||
@@ -170,7 +172,7 @@ element {
|
|||||||
margin: 5px;
|
margin: 5px;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
background-color: @background;
|
background-color: @background;
|
||||||
border-radius: 10px;
|
border-radius: @border-radius;
|
||||||
border: @border-width;
|
border: @border-width;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -38,7 +38,7 @@ configuration {
|
|||||||
window {
|
window {
|
||||||
width: 761px;
|
width: 761px;
|
||||||
x-offset: 0px;
|
x-offset: 0px;
|
||||||
y-offset: 65px;
|
y-offset: 14px;
|
||||||
spacing: 0px;
|
spacing: 0px;
|
||||||
padding: 0px;
|
padding: 0px;
|
||||||
margin: 0px;
|
margin: 0px;
|
||||||
@@ -51,7 +51,7 @@ window {
|
|||||||
anchor: north;
|
anchor: north;
|
||||||
fullscreen: false;
|
fullscreen: false;
|
||||||
enabled: true;
|
enabled: true;
|
||||||
border-radius: 10px;
|
border-radius: @border-radius;
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -114,6 +114,7 @@ entry {
|
|||||||
cursor: text;
|
cursor: text;
|
||||||
placeholder: "Search";
|
placeholder: "Search";
|
||||||
placeholder-color: inherit;
|
placeholder-color: inherit;
|
||||||
|
border-radius: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ---- Mode Switcher ---- */
|
/* ---- Mode Switcher ---- */
|
||||||
@@ -126,7 +127,7 @@ mode-switcher{
|
|||||||
|
|
||||||
button {
|
button {
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
border-radius: 10px;
|
border-radius: @border-radius;
|
||||||
background-color: @background;
|
background-color: @background;
|
||||||
text-color: inherit;
|
text-color: inherit;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
@@ -155,6 +156,7 @@ listview {
|
|||||||
fixed-columns: true;
|
fixed-columns: true;
|
||||||
background-color: @background;
|
background-color: @background;
|
||||||
border: 0px;
|
border: 0px;
|
||||||
|
border-radius: 0px;
|
||||||
flow: horizontal;
|
flow: horizontal;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -165,7 +167,7 @@ element {
|
|||||||
margin: 5px;
|
margin: 5px;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
background-color: @background;
|
background-color: @background;
|
||||||
border-radius: 10px;
|
border-radius: @border-radius;
|
||||||
border: @border-width;
|
border: @border-width;
|
||||||
orientation: vertical;
|
orientation: vertical;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -50,14 +50,14 @@ window {
|
|||||||
margin: 0px;
|
margin: 0px;
|
||||||
color: #FFFFFF;
|
color: #FFFFFF;
|
||||||
border: @border-width;
|
border: @border-width;
|
||||||
border-color: #FFFFFF;
|
border-color: @foreground;
|
||||||
cursor: "default";
|
cursor: "default";
|
||||||
transparency: "real";
|
transparency: "real";
|
||||||
location: center;
|
location: center;
|
||||||
anchor: center;
|
anchor: center;
|
||||||
fullscreen: false;
|
fullscreen: false;
|
||||||
enabled: true;
|
enabled: true;
|
||||||
border-radius: 10px;
|
border-radius: @border-radius;
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -99,7 +99,7 @@ inputbar {
|
|||||||
text-color: @foreground;
|
text-color: @foreground;
|
||||||
spacing: 10px;
|
spacing: 10px;
|
||||||
padding: 15px;
|
padding: 15px;
|
||||||
border-radius: 10px;
|
border-radius: @border-radius;
|
||||||
border-color: @foreground;
|
border-color: @foreground;
|
||||||
background-color: @background;
|
background-color: @background;
|
||||||
children: [ "textbox-prompt-colon", "entry" ];
|
children: [ "textbox-prompt-colon", "entry" ];
|
||||||
@@ -121,6 +121,7 @@ entry {
|
|||||||
cursor: text;
|
cursor: text;
|
||||||
placeholder: "Search";
|
placeholder: "Search";
|
||||||
placeholder-color: inherit;
|
placeholder-color: inherit;
|
||||||
|
border-radius: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ---- Mode Switcher ---- */
|
/* ---- Mode Switcher ---- */
|
||||||
@@ -133,7 +134,7 @@ mode-switcher{
|
|||||||
|
|
||||||
button {
|
button {
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
border-radius: 10px;
|
border-radius: @border-radius;
|
||||||
background-color: @background;
|
background-color: @background;
|
||||||
text-color: inherit;
|
text-color: inherit;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
@@ -171,7 +172,7 @@ element {
|
|||||||
margin: 5px;
|
margin: 5px;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
background-color: @background;
|
background-color: @background;
|
||||||
border-radius: 10px;
|
border-radius: @border-radius;
|
||||||
border: @border-width;
|
border: @border-width;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
|
After Width: | Height: | Size: 3.2 MiB |
|
After Width: | Height: | Size: 3.0 MiB |
|
After Width: | Height: | Size: 2.4 MiB |
|
After Width: | Height: | Size: 2.3 MiB |
@@ -25,7 +25,7 @@ sleep 0.2
|
|||||||
# -----------------------------------------------------
|
# -----------------------------------------------------
|
||||||
# Default theme: /THEMEFOLDER;/VARIATION
|
# Default theme: /THEMEFOLDER;/VARIATION
|
||||||
# -----------------------------------------------------
|
# -----------------------------------------------------
|
||||||
themestyle="/ml4w-blur;/ml4w-blur/white"
|
themestyle="/ml4w;/ml4w/light"
|
||||||
|
|
||||||
# -----------------------------------------------------
|
# -----------------------------------------------------
|
||||||
# Get current theme information from .cache/.themestyle.sh
|
# Get current theme information from .cache/.themestyle.sh
|
||||||
@@ -38,7 +38,7 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
IFS=';' read -ra arrThemes <<< "$themestyle"
|
IFS=';' read -ra arrThemes <<< "$themestyle"
|
||||||
echo ":: Theme: ${arrThemes[0]}"
|
echo "Theme: ${arrThemes[0]}"
|
||||||
|
|
||||||
if [ ! -f ~/dotfiles/waybar/themes${arrThemes[1]}/style.css ]; then
|
if [ ! -f ~/dotfiles/waybar/themes${arrThemes[1]}/style.css ]; then
|
||||||
themestyle="/ml4w;/ml4w/light"
|
themestyle="/ml4w;/ml4w/light"
|
||||||
|
|||||||
@@ -110,7 +110,7 @@
|
|||||||
// Wallpaper
|
// Wallpaper
|
||||||
"custom/wallpaper": {
|
"custom/wallpaper": {
|
||||||
"format": "",
|
"format": "",
|
||||||
"on-click": "waypaper",
|
"on-click": "~/dotfiles/hypr/scripts/wallpaper.sh select",
|
||||||
"on-click-right": "~/dotfiles/hypr/scripts/wallpaper-effects.sh",
|
"on-click-right": "~/dotfiles/hypr/scripts/wallpaper-effects.sh",
|
||||||
"tooltip-format": "Left: Select a wallpaper\nRight: Select wallpaper effect"
|
"tooltip-format": "Left: Select a wallpaper\nRight: Select wallpaper effect"
|
||||||
},
|
},
|
||||||
@@ -136,6 +136,20 @@
|
|||||||
"tooltip": false
|
"tooltip": false
|
||||||
},
|
},
|
||||||
|
|
||||||
|
// Filemanager Launcher
|
||||||
|
"custom/filemanager": {
|
||||||
|
"format": "",
|
||||||
|
"on-click": "~/dotfiles/.settings/filemanager.sh",
|
||||||
|
"tooltip-format": "Open filemanager"
|
||||||
|
},
|
||||||
|
|
||||||
|
// Browser Launcher
|
||||||
|
"custom/browser": {
|
||||||
|
"format": "",
|
||||||
|
"on-click": "~/dotfiles/.settings/browser.sh",
|
||||||
|
"tooltip-format": "Open browser"
|
||||||
|
},
|
||||||
|
|
||||||
// ChatGPT Launcher
|
// ChatGPT Launcher
|
||||||
"custom/chatgpt": {
|
"custom/chatgpt": {
|
||||||
"format": " ",
|
"format": " ",
|
||||||
@@ -301,6 +315,15 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
|
||||||
|
// Group Quicklinks
|
||||||
|
"group/quicklinks": {
|
||||||
|
"orientation": "horizontal",
|
||||||
|
"modules": [
|
||||||
|
"custom/browser",
|
||||||
|
"custom/filemanager",
|
||||||
|
]
|
||||||
|
},
|
||||||
|
|
||||||
// Network
|
// Network
|
||||||
"network": {
|
"network": {
|
||||||
"format": "{ifname}",
|
"format": "{ifname}",
|
||||||
|
|||||||
@@ -1,18 +0,0 @@
|
|||||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256" role="img">
|
|
||||||
<!-- Define the mask for the cutouts -->
|
|
||||||
<mask id="cutoutMask">
|
|
||||||
<!-- Circle -->
|
|
||||||
<circle fill="white" cx="120" cy="120" r="120" />
|
|
||||||
|
|
||||||
<!-- Big L Shape -->
|
|
||||||
<rect x="60" y="165" width="120" height="15" rx="4" ry="4" fill="black"/>
|
|
||||||
<rect x="60" y="60" width="15" height="120" rx="4" ry="4" fill="black"/>
|
|
||||||
|
|
||||||
<!-- Little L Shape -->
|
|
||||||
<rect x="110" y="120" width="75" height="15" rx="4" ry="4" fill="black"/>
|
|
||||||
<rect x="110" y="55" width="15" height="80" rx="4" ry="4" fill="black"/>
|
|
||||||
</mask>
|
|
||||||
|
|
||||||
<!-- Circle with cutouts -->
|
|
||||||
<circle fill="black" cx="120" cy="120" r="120" mask="url(#cutoutMask)" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 728 B |
@@ -1,18 +0,0 @@
|
|||||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256" role="img">
|
|
||||||
<!-- Define the mask for the cutouts -->
|
|
||||||
<mask id="cutoutMask">
|
|
||||||
<!-- Circle -->
|
|
||||||
<circle fill="white" cx="120" cy="120" r="120" />
|
|
||||||
|
|
||||||
<!-- Big L Shape -->
|
|
||||||
<rect x="60" y="165" width="120" height="15" rx="4" ry="4" fill="black"/>
|
|
||||||
<rect x="60" y="60" width="15" height="120" rx="4" ry="4" fill="black"/>
|
|
||||||
|
|
||||||
<!-- Little L Shape -->
|
|
||||||
<rect x="110" y="120" width="75" height="15" rx="4" ry="4" fill="black"/>
|
|
||||||
<rect x="110" y="55" width="15" height="80" rx="4" ry="4" fill="black"/>
|
|
||||||
</mask>
|
|
||||||
|
|
||||||
<!-- Circle with cutouts -->
|
|
||||||
<circle fill="white" cx="120" cy="120" r="120" mask="url(#cutoutMask)" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 728 B |
@@ -1,18 +0,0 @@
|
|||||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256" role="img">
|
|
||||||
<!-- Define the mask for the cutouts -->
|
|
||||||
<mask id="cutoutMask">
|
|
||||||
<!-- Circle -->
|
|
||||||
<circle fill="#19cddb" cx="120" cy="120" r="120" />
|
|
||||||
|
|
||||||
<!-- Big L Shape -->
|
|
||||||
<rect x="60" y="165" width="120" height="15" rx="4" ry="4" fill="black"/>
|
|
||||||
<rect x="60" y="60" width="15" height="120" rx="4" ry="4" fill="black"/>
|
|
||||||
|
|
||||||
<!-- Little L Shape -->
|
|
||||||
<rect x="110" y="120" width="75" height="15" rx="4" ry="4" fill="black"/>
|
|
||||||
<rect x="110" y="55" width="15" height="80" rx="4" ry="4" fill="black"/>
|
|
||||||
</mask>
|
|
||||||
|
|
||||||
<!-- Circle with cutouts -->
|
|
||||||
<circle fill="#19cddb" cx="120" cy="120" r="120" mask="url(#cutoutMask)" />
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 732 B |
@@ -1,2 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?><!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
|
||||||
<svg fill="#000000" width="800px" height="800px" viewBox="0 0 24 24" role="img" xmlns="http://www.w3.org/2000/svg"><title>OpenAI icon</title><path d="M22.2819 9.8211a5.9847 5.9847 0 0 0-.5157-4.9108 6.0462 6.0462 0 0 0-6.5098-2.9A6.0651 6.0651 0 0 0 4.9807 4.1818a5.9847 5.9847 0 0 0-3.9977 2.9 6.0462 6.0462 0 0 0 .7427 7.0966 5.98 5.98 0 0 0 .511 4.9107 6.051 6.051 0 0 0 6.5146 2.9001A5.9847 5.9847 0 0 0 13.2599 24a6.0557 6.0557 0 0 0 5.7718-4.2058 5.9894 5.9894 0 0 0 3.9977-2.9001 6.0557 6.0557 0 0 0-.7475-7.0729zm-9.022 12.6081a4.4755 4.4755 0 0 1-2.8764-1.0408l.1419-.0804 4.7783-2.7582a.7948.7948 0 0 0 .3927-.6813v-6.7369l2.02 1.1686a.071.071 0 0 1 .038.052v5.5826a4.504 4.504 0 0 1-4.4945 4.4944zm-9.6607-4.1254a4.4708 4.4708 0 0 1-.5346-3.0137l.142.0852 4.783 2.7582a.7712.7712 0 0 0 .7806 0l5.8428-3.3685v2.3324a.0804.0804 0 0 1-.0332.0615L9.74 19.9502a4.4992 4.4992 0 0 1-6.1408-1.6464zM2.3408 7.8956a4.485 4.485 0 0 1 2.3655-1.9728V11.6a.7664.7664 0 0 0 .3879.6765l5.8144 3.3543-2.0201 1.1685a.0757.0757 0 0 1-.071 0l-4.8303-2.7865A4.504 4.504 0 0 1 2.3408 7.872zm16.5963 3.8558L13.1038 8.364 15.1192 7.2a.0757.0757 0 0 1 .071 0l4.8303 2.7913a4.4944 4.4944 0 0 1-.6765 8.1042v-5.6772a.79.79 0 0 0-.407-.667zm2.0107-3.0231l-.142-.0852-4.7735-2.7818a.7759.7759 0 0 0-.7854 0L9.409 9.2297V6.8974a.0662.0662 0 0 1 .0284-.0615l4.8303-2.7866a4.4992 4.4992 0 0 1 6.6802 4.66zM8.3065 12.863l-2.02-1.1638a.0804.0804 0 0 1-.038-.0567V6.0742a4.4992 4.4992 0 0 1 7.3757-3.4537l-.142.0805L8.704 5.459a.7948.7948 0 0 0-.3927.6813zm1.0976-2.3654l2.602-1.4998 2.6069 1.4998v2.9994l-2.5974 1.4997-2.6067-1.4997Z"/></svg>
|
|
||||||
|
Before Width: | Height: | Size: 1.7 KiB |
@@ -1,2 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?><!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
|
||||||
<svg fill="#ffffff" width="800px" height="800px" viewBox="0 0 24 24" role="img" xmlns="http://www.w3.org/2000/svg"><title>OpenAI icon</title><path d="M22.2819 9.8211a5.9847 5.9847 0 0 0-.5157-4.9108 6.0462 6.0462 0 0 0-6.5098-2.9A6.0651 6.0651 0 0 0 4.9807 4.1818a5.9847 5.9847 0 0 0-3.9977 2.9 6.0462 6.0462 0 0 0 .7427 7.0966 5.98 5.98 0 0 0 .511 4.9107 6.051 6.051 0 0 0 6.5146 2.9001A5.9847 5.9847 0 0 0 13.2599 24a6.0557 6.0557 0 0 0 5.7718-4.2058 5.9894 5.9894 0 0 0 3.9977-2.9001 6.0557 6.0557 0 0 0-.7475-7.0729zm-9.022 12.6081a4.4755 4.4755 0 0 1-2.8764-1.0408l.1419-.0804 4.7783-2.7582a.7948.7948 0 0 0 .3927-.6813v-6.7369l2.02 1.1686a.071.071 0 0 1 .038.052v5.5826a4.504 4.504 0 0 1-4.4945 4.4944zm-9.6607-4.1254a4.4708 4.4708 0 0 1-.5346-3.0137l.142.0852 4.783 2.7582a.7712.7712 0 0 0 .7806 0l5.8428-3.3685v2.3324a.0804.0804 0 0 1-.0332.0615L9.74 19.9502a4.4992 4.4992 0 0 1-6.1408-1.6464zM2.3408 7.8956a4.485 4.485 0 0 1 2.3655-1.9728V11.6a.7664.7664 0 0 0 .3879.6765l5.8144 3.3543-2.0201 1.1685a.0757.0757 0 0 1-.071 0l-4.8303-2.7865A4.504 4.504 0 0 1 2.3408 7.872zm16.5963 3.8558L13.1038 8.364 15.1192 7.2a.0757.0757 0 0 1 .071 0l4.8303 2.7913a4.4944 4.4944 0 0 1-.6765 8.1042v-5.6772a.79.79 0 0 0-.407-.667zm2.0107-3.0231l-.142-.0852-4.7735-2.7818a.7759.7759 0 0 0-.7854 0L9.409 9.2297V6.8974a.0662.0662 0 0 1 .0284-.0615l4.8303-2.7866a4.4992 4.4992 0 0 1 6.6802 4.66zM8.3065 12.863l-2.02-1.1638a.0804.0804 0 0 1-.038-.0567V6.0742a4.4992 4.4992 0 0 1 7.3757-3.4537l-.142.0805L8.704 5.459a.7948.7948 0 0 0-.3927.6813zm1.0976-2.3654l2.602-1.4998 2.6069 1.4998v2.9994l-2.5974 1.4997-2.6067-1.4997Z"/></svg>
|
|
||||||
|
Before Width: | Height: | Size: 1.7 KiB |
@@ -1,2 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?><!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
|
||||||
<svg fill="#ffffff" width="800px" height="800px" viewBox="0 0 24 24" role="img" xmlns="http://www.w3.org/2000/svg"><title>OpenAI icon</title><path d="M22.2819 9.8211a5.9847 5.9847 0 0 0-.5157-4.9108 6.0462 6.0462 0 0 0-6.5098-2.9A6.0651 6.0651 0 0 0 4.9807 4.1818a5.9847 5.9847 0 0 0-3.9977 2.9 6.0462 6.0462 0 0 0 .7427 7.0966 5.98 5.98 0 0 0 .511 4.9107 6.051 6.051 0 0 0 6.5146 2.9001A5.9847 5.9847 0 0 0 13.2599 24a6.0557 6.0557 0 0 0 5.7718-4.2058 5.9894 5.9894 0 0 0 3.9977-2.9001 6.0557 6.0557 0 0 0-.7475-7.0729zm-9.022 12.6081a4.4755 4.4755 0 0 1-2.8764-1.0408l.1419-.0804 4.7783-2.7582a.7948.7948 0 0 0 .3927-.6813v-6.7369l2.02 1.1686a.071.071 0 0 1 .038.052v5.5826a4.504 4.504 0 0 1-4.4945 4.4944zm-9.6607-4.1254a4.4708 4.4708 0 0 1-.5346-3.0137l.142.0852 4.783 2.7582a.7712.7712 0 0 0 .7806 0l5.8428-3.3685v2.3324a.0804.0804 0 0 1-.0332.0615L9.74 19.9502a4.4992 4.4992 0 0 1-6.1408-1.6464zM2.3408 7.8956a4.485 4.485 0 0 1 2.3655-1.9728V11.6a.7664.7664 0 0 0 .3879.6765l5.8144 3.3543-2.0201 1.1685a.0757.0757 0 0 1-.071 0l-4.8303-2.7865A4.504 4.504 0 0 1 2.3408 7.872zm16.5963 3.8558L13.1038 8.364 15.1192 7.2a.0757.0757 0 0 1 .071 0l4.8303 2.7913a4.4944 4.4944 0 0 1-.6765 8.1042v-5.6772a.79.79 0 0 0-.407-.667zm2.0107-3.0231l-.142-.0852-4.7735-2.7818a.7759.7759 0 0 0-.7854 0L9.409 9.2297V6.8974a.0662.0662 0 0 1 .0284-.0615l4.8303-2.7866a4.4992 4.4992 0 0 1 6.6802 4.66zM8.3065 12.863l-2.02-1.1638a.0804.0804 0 0 1-.038-.0567V6.0742a4.4992 4.4992 0 0 1 7.3757-3.4537l-.142.0805L8.704 5.459a.7948.7948 0 0 0-.3927.6813zm1.0976-2.3654l2.602-1.4998 2.6069 1.4998v2.9994l-2.5974 1.4997-2.6067-1.4997Z"/></svg>
|
|
||||||
|
Before Width: | Height: | Size: 1.7 KiB |
@@ -0,0 +1,16 @@
|
|||||||
|
/* -----------------------------------------------------
|
||||||
|
* 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';
|
||||||
@@ -0,0 +1,73 @@
|
|||||||
|
// __ __ _
|
||||||
|
// \ \ / /_ _ _ _| |__ __ _ _ __
|
||||||
|
// \ \ /\ / / _` | | | | '_ \ / _` | '__|
|
||||||
|
// \ V V / (_| | |_| | |_) | (_| | |
|
||||||
|
// \_/\_/ \__,_|\__, |_.__/ \__,_|_|
|
||||||
|
// |___/
|
||||||
|
//
|
||||||
|
// by Stephan Raabe (2023)
|
||||||
|
// -----------------------------------------------------
|
||||||
|
//
|
||||||
|
{
|
||||||
|
// General Settings
|
||||||
|
|
||||||
|
// Position TOP
|
||||||
|
"layer": "top",
|
||||||
|
"margin-bottom": 0,
|
||||||
|
|
||||||
|
// Position BOTTOM
|
||||||
|
// "position": "bottom",
|
||||||
|
// "margin-top": 0,
|
||||||
|
// "margin-bottom": 14,
|
||||||
|
|
||||||
|
"layer": "top",
|
||||||
|
"margin-left": 0,
|
||||||
|
"margin-right": 0,
|
||||||
|
"spacing": 0,
|
||||||
|
|
||||||
|
// Load Modules
|
||||||
|
"include": ["~/dotfiles/waybar/themes/custom/modules.json"],
|
||||||
|
|
||||||
|
// Modules Left
|
||||||
|
"modules-left": [
|
||||||
|
"custom/appmenu",
|
||||||
|
"custom/settings",
|
||||||
|
"custom/waybarthemes",
|
||||||
|
"custom/wallpaper",
|
||||||
|
// START TASK TOOGLE
|
||||||
|
// "wlr/taskbar",
|
||||||
|
// END TASK TOOGLE
|
||||||
|
"group/quicklinks",
|
||||||
|
"hyprland/window",
|
||||||
|
"custom/starter"
|
||||||
|
],
|
||||||
|
|
||||||
|
// Modules Center
|
||||||
|
"modules-center": [
|
||||||
|
"hyprland/workspaces"
|
||||||
|
],
|
||||||
|
|
||||||
|
// Modules Right
|
||||||
|
"modules-right": [
|
||||||
|
"custom/updates",
|
||||||
|
"pulseaudio",
|
||||||
|
// START BT TOOGLE
|
||||||
|
"bluetooth",
|
||||||
|
// END BT TOOGLE
|
||||||
|
"battery",
|
||||||
|
// START NETWORK TOOGLE
|
||||||
|
"network",
|
||||||
|
// END NETWORK TOOGLE
|
||||||
|
"group/hardware",
|
||||||
|
"custom/cliphist",
|
||||||
|
// START IDLE TOOGLE
|
||||||
|
"idle_inhibitor",
|
||||||
|
// END IDLE TOOGLE
|
||||||
|
// START TRAY TOOGLE
|
||||||
|
"tray",
|
||||||
|
// END TRAY TOOGLE
|
||||||
|
"custom/exit",
|
||||||
|
"custom/ml4w-welcome",
|
||||||
|
"clock"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
theme_name="Custum 4k"
|
||||||
@@ -0,0 +1,330 @@
|
|||||||
|
// __ __ _ _
|
||||||
|
// | \/ | ___ __| |_ _| | ___ ___
|
||||||
|
// | |\/| |/ _ \ / _` | | | | |/ _ \/ __|
|
||||||
|
// | | | | (_) | (_| | |_| | | __/\__ \
|
||||||
|
// |_| |_|\___/ \__,_|\__,_|_|\___||___/
|
||||||
|
//
|
||||||
|
//
|
||||||
|
// by Stephan Raabe (2023)
|
||||||
|
// -----------------------------------------------------
|
||||||
|
//
|
||||||
|
{
|
||||||
|
// Workspaces
|
||||||
|
"hyprland/workspaces" : {
|
||||||
|
"on-click": "activate",
|
||||||
|
"active-only": false,
|
||||||
|
"all-outputs": true,
|
||||||
|
"format": "{}",
|
||||||
|
"format-icons": {
|
||||||
|
"urgent": "",
|
||||||
|
"active": "",
|
||||||
|
"default": ""
|
||||||
|
},
|
||||||
|
"persistent-workspaces": {
|
||||||
|
"*": 5
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
// Taskbar
|
||||||
|
"wlr/taskbar": {
|
||||||
|
"format": "{icon}",
|
||||||
|
"icon-size": 18,
|
||||||
|
"tooltip-format": "{title}",
|
||||||
|
"on-click": "activate",
|
||||||
|
"on-click-middle": "close",
|
||||||
|
"ignore-list": [
|
||||||
|
"Alacritty"
|
||||||
|
],
|
||||||
|
"app_ids-mapping": {
|
||||||
|
"firefoxdeveloperedition": "firefox-developer-edition"
|
||||||
|
},
|
||||||
|
"rewrite": {
|
||||||
|
"Firefox Web Browser": "Firefox",
|
||||||
|
"Foot Server": "Terminal"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
// Hyprland Window
|
||||||
|
"hyprland/window": {
|
||||||
|
"rewrite": {
|
||||||
|
"(.*) - Brave": "$1",
|
||||||
|
"(.*) - Chromium": "$1",
|
||||||
|
"(.*) - Brave Search": "$1",
|
||||||
|
"(.*) - Outlook": "$1",
|
||||||
|
"(.*) Microsoft Teams": "$1"
|
||||||
|
},
|
||||||
|
"separate-outputs": true
|
||||||
|
},
|
||||||
|
|
||||||
|
// Cliphist
|
||||||
|
"custom/cliphist": {
|
||||||
|
"format": "",
|
||||||
|
"on-click": "sleep 0.1 && ~/dotfiles/scripts/cliphist.sh",
|
||||||
|
"on-click-right": "sleep 0.1 && ~/dotfiles/scripts/cliphist.sh d",
|
||||||
|
"on-click-middle": "sleep 0.1 && ~/dotfiles/scripts/cliphist.sh w",
|
||||||
|
"tooltip": false
|
||||||
|
},
|
||||||
|
|
||||||
|
// Updates Count
|
||||||
|
"custom/updates": {
|
||||||
|
"format": " {}",
|
||||||
|
"tooltip-format": "{}",
|
||||||
|
"escape": true,
|
||||||
|
"return-type": "json",
|
||||||
|
"exec": "~/dotfiles/scripts/updates.sh",
|
||||||
|
"restart-interval": 60,
|
||||||
|
"on-click": "alacritty -e ~/dotfiles/scripts/installupdates.sh",
|
||||||
|
"tooltip": false
|
||||||
|
},
|
||||||
|
|
||||||
|
// Theme Starter Label
|
||||||
|
"custom/starter": {
|
||||||
|
"format": "THEME STARTER",
|
||||||
|
"tooltip": false
|
||||||
|
},
|
||||||
|
|
||||||
|
// Wallpaper
|
||||||
|
"custom/wallpaper": {
|
||||||
|
"format": "",
|
||||||
|
"on-click": "~/dotfiles/hypr/scripts/wallpaper.sh select",
|
||||||
|
"on-click-right": "~/dotfiles/hypr/scripts/wallpaper.sh",
|
||||||
|
"tooltip": false
|
||||||
|
},
|
||||||
|
|
||||||
|
// Waybar Themes
|
||||||
|
"custom/waybarthemes": {
|
||||||
|
"format": "",
|
||||||
|
"on-click": "~/dotfiles/waybar/themeswitcher.sh",
|
||||||
|
"tooltip": false
|
||||||
|
},
|
||||||
|
|
||||||
|
// Settings
|
||||||
|
"custom/settings": {
|
||||||
|
"format": "",
|
||||||
|
"on-click": "alacritty --class dotfiles-floating -e ~/dotfiles/hypr/settings/settings.sh",
|
||||||
|
"tooltip": false
|
||||||
|
},
|
||||||
|
|
||||||
|
// Keybindings
|
||||||
|
"custom/keybindings": {
|
||||||
|
"format": "",
|
||||||
|
"on-click": "~/dotfiles/hypr/scripts/keybindings.sh",
|
||||||
|
"tooltip": false
|
||||||
|
},
|
||||||
|
|
||||||
|
// Filemanager Launcher
|
||||||
|
"custom/filemanager": {
|
||||||
|
"format": "",
|
||||||
|
"on-click": "thunar",
|
||||||
|
"tooltip": false
|
||||||
|
},
|
||||||
|
|
||||||
|
// Browser Launcher
|
||||||
|
"custom/browser": {
|
||||||
|
"format": "",
|
||||||
|
"on-click": "~/dotfiles/.settings/browser.sh",
|
||||||
|
"tooltip": false
|
||||||
|
},
|
||||||
|
|
||||||
|
// ML4W Welcome App
|
||||||
|
"custom/ml4w-welcome": {
|
||||||
|
"on-click": "~/dotfiles/apps/ML4W_Welcome-x86_64.AppImage",
|
||||||
|
"format": " ",
|
||||||
|
"tooltip": false
|
||||||
|
},
|
||||||
|
|
||||||
|
// ChatGPT Launcher
|
||||||
|
"custom/chatgpt": {
|
||||||
|
"format": "",
|
||||||
|
"on-click": "chromium --app=https://chat.openai.com",
|
||||||
|
"tooltip": false
|
||||||
|
},
|
||||||
|
|
||||||
|
// Rofi Application Launcher
|
||||||
|
"custom/appmenu": {
|
||||||
|
"format": "Apps",
|
||||||
|
"on-click": "rofi -show drun -replace",
|
||||||
|
"on-click-right": "~/dotfiles/hypr/scripts/keybindings.sh",
|
||||||
|
"tooltip": false
|
||||||
|
},
|
||||||
|
|
||||||
|
// Power Menu
|
||||||
|
"custom/exit": {
|
||||||
|
"format": "",
|
||||||
|
"on-click": "wlogout",
|
||||||
|
"tooltip": false
|
||||||
|
},
|
||||||
|
|
||||||
|
// Keyboard State
|
||||||
|
"keyboard-state": {
|
||||||
|
"numlock": true,
|
||||||
|
"capslock": true,
|
||||||
|
"format": "{name} {icon}",
|
||||||
|
"format-icons": {
|
||||||
|
"locked": "",
|
||||||
|
"unlocked": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
// System tray
|
||||||
|
"tray": {
|
||||||
|
// "icon-size": 21,
|
||||||
|
"spacing": 10
|
||||||
|
},
|
||||||
|
|
||||||
|
// Clock
|
||||||
|
"clock": {
|
||||||
|
// "timezone": "America/New_York",
|
||||||
|
"tooltip-format": "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>",
|
||||||
|
"format-alt": "{:%Y-%m-%d}"
|
||||||
|
},
|
||||||
|
|
||||||
|
// System
|
||||||
|
"custom/system": {
|
||||||
|
"format": "",
|
||||||
|
"tooltip": false
|
||||||
|
},
|
||||||
|
|
||||||
|
// CPU
|
||||||
|
"cpu": {
|
||||||
|
"format": "/ C {usage}% ",
|
||||||
|
"on-click": "alacritty -e htop"
|
||||||
|
},
|
||||||
|
|
||||||
|
// Memory
|
||||||
|
"memory": {
|
||||||
|
"format": "/ M {}% ",
|
||||||
|
"on-click": "alacritty -e htop"
|
||||||
|
},
|
||||||
|
|
||||||
|
// Harddisc space used
|
||||||
|
"disk": {
|
||||||
|
"interval": 30,
|
||||||
|
"format": "D {percentage_used}% ",
|
||||||
|
"path": "/",
|
||||||
|
"on-click": "alacritty -e htop"
|
||||||
|
},
|
||||||
|
|
||||||
|
"hyprland/language": {
|
||||||
|
"format": "/ K {short}"
|
||||||
|
},
|
||||||
|
|
||||||
|
// Group Hardware
|
||||||
|
"group/hardware": {
|
||||||
|
"orientation": "inherit",
|
||||||
|
"drawer": {
|
||||||
|
"transition-duration": 300,
|
||||||
|
"children-class": "not-memory",
|
||||||
|
"transition-left-to-right": false
|
||||||
|
},
|
||||||
|
"modules": [
|
||||||
|
"custom/system",
|
||||||
|
"disk",
|
||||||
|
"cpu",
|
||||||
|
"memory",
|
||||||
|
"hyprland/language"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
|
||||||
|
// Group Settings
|
||||||
|
"group/settings": {
|
||||||
|
"orientation": "inherit",
|
||||||
|
"drawer": {
|
||||||
|
"transition-duration": 300,
|
||||||
|
"children-class": "not-memory",
|
||||||
|
"transition-left-to-right": false
|
||||||
|
},
|
||||||
|
"modules": [
|
||||||
|
"custom/settings",
|
||||||
|
"custom/waybarthemes",
|
||||||
|
"custom/wallpaper"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
|
||||||
|
// Group Quicklinks
|
||||||
|
"group/quicklinks": {
|
||||||
|
"orientation": "horizontal",
|
||||||
|
"modules": [
|
||||||
|
"custom/filemanager",
|
||||||
|
"custom/browser"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
|
||||||
|
// Network
|
||||||
|
"network": {
|
||||||
|
"format": "{ifname}",
|
||||||
|
"format-wifi": " {signalStrength}%",
|
||||||
|
"format-ethernet": " {ipaddr}",
|
||||||
|
"format-disconnected": "Not connected", //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,
|
||||||
|
"on-click": "alacritty -e nmtui"
|
||||||
|
},
|
||||||
|
|
||||||
|
// Battery
|
||||||
|
"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": [" ", " ", " ", " ", " "]
|
||||||
|
},
|
||||||
|
|
||||||
|
// Pulseaudio
|
||||||
|
"pulseaudio": {
|
||||||
|
// "scroll-step": 1, // %, can be a float
|
||||||
|
"format": "{icon} {volume}%",
|
||||||
|
"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"
|
||||||
|
},
|
||||||
|
|
||||||
|
// Bluetooth
|
||||||
|
"bluetooth": {
|
||||||
|
"format-disabled": "",
|
||||||
|
"format-off": "",
|
||||||
|
"interval": 30,
|
||||||
|
"on-click": "blueman-manager",
|
||||||
|
"format-no-controller": ""
|
||||||
|
},
|
||||||
|
|
||||||
|
// Other
|
||||||
|
"user": {
|
||||||
|
"format": "{user}",
|
||||||
|
"interval": 60,
|
||||||
|
"icon": false,
|
||||||
|
},
|
||||||
|
|
||||||
|
// Idle Inhibator
|
||||||
|
"idle_inhibitor": {
|
||||||
|
"format": "{icon}",
|
||||||
|
"tooltip": true,
|
||||||
|
"format-icons":{
|
||||||
|
"activated": "",
|
||||||
|
"deactivated": ""
|
||||||
|
},
|
||||||
|
"on-click-right": "hyprlock"
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,430 @@
|
|||||||
|
/*
|
||||||
|
* __ __ _ ____ _ _
|
||||||
|
* \ \ / /_ _ _ _| |__ __ _ _ __ / ___|| |_ _ _| | ___
|
||||||
|
* \ \ /\ / / _` | | | | '_ \ / _` | '__| \___ \| __| | | | |/ _ \
|
||||||
|
* \ V V / (_| | |_| | |_) | (_| | | ___) | |_| |_| | | __/
|
||||||
|
* \_/\_/ \__,_|\__, |_.__/ \__,_|_| |____/ \__|\__, |_|\___|
|
||||||
|
* |___/ |___/
|
||||||
|
*
|
||||||
|
* by Stephan Raabe (2023)
|
||||||
|
* -----------------------------------------------------
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* -----------------------------------------------------
|
||||||
|
* Import Pywal colors
|
||||||
|
* ----------------------------------------------------- */
|
||||||
|
/* @import 'style-light.css'; */
|
||||||
|
/* @define-color backgroundlight #FFFFFF;
|
||||||
|
@define-color backgrounddark #FFFFFF;
|
||||||
|
@define-color workspacesbackground1 #FFFFFF;
|
||||||
|
@define-color workspacesbackground2 #CCCCCC;
|
||||||
|
@define-color bordercolor #FFFFFF;
|
||||||
|
@define-color textcolor1 #000000;
|
||||||
|
@define-color textcolor2 #000000;
|
||||||
|
@define-color textcolor3 #FFFFFF;
|
||||||
|
@define-color iconcolor #FFFFFF; */
|
||||||
|
|
||||||
|
/* -----------------------------------------------------
|
||||||
|
* 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.2);
|
||||||
|
border-bottom: 0px solid #ffffff;
|
||||||
|
/* color: #FFFFFF; */
|
||||||
|
transition-property: background-color;
|
||||||
|
transition-duration: .5s;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* -----------------------------------------------------
|
||||||
|
* Workspaces
|
||||||
|
* ----------------------------------------------------- */
|
||||||
|
|
||||||
|
#workspaces {
|
||||||
|
margin: 5px 1px 6px 1px;
|
||||||
|
padding: 0px 1px;
|
||||||
|
border-radius: 15px;
|
||||||
|
border: 0px;
|
||||||
|
font-weight: bold;
|
||||||
|
font-style: normal;
|
||||||
|
font-size: 16px;
|
||||||
|
color: @textcolor1;
|
||||||
|
}
|
||||||
|
|
||||||
|
#workspaces button {
|
||||||
|
padding: 0px 5px;
|
||||||
|
margin: 4px 3px;
|
||||||
|
border-radius: 15px;
|
||||||
|
border: 0px;
|
||||||
|
color: @textcolor3;
|
||||||
|
transition: all 0.3s ease-in-out;
|
||||||
|
}
|
||||||
|
|
||||||
|
#workspaces button.active {
|
||||||
|
color: @textcolor1;
|
||||||
|
background: @workspacesbackground2;
|
||||||
|
border-radius: 15px;
|
||||||
|
min-width: 40px;
|
||||||
|
transition: all 0.3s ease-in-out;
|
||||||
|
}
|
||||||
|
|
||||||
|
#workspaces button:hover {
|
||||||
|
color: @textcolor1;
|
||||||
|
background: @workspacesbackground2;
|
||||||
|
border-radius: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* -----------------------------------------------------
|
||||||
|
* Tooltips
|
||||||
|
* ----------------------------------------------------- */
|
||||||
|
|
||||||
|
tooltip {
|
||||||
|
border-radius: 10px;
|
||||||
|
background-color: @backgroundlight;
|
||||||
|
opacity:0.8;
|
||||||
|
padding:20px;
|
||||||
|
margin:0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
tooltip label {
|
||||||
|
color: @textcolor2;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* -----------------------------------------------------
|
||||||
|
* Window
|
||||||
|
* ----------------------------------------------------- */
|
||||||
|
|
||||||
|
#window {
|
||||||
|
background: @backgroundlight;
|
||||||
|
margin: 10px 15px 10px 0px;
|
||||||
|
padding: 2px 10px 0px 10px;
|
||||||
|
border-radius: 12px;
|
||||||
|
color:@textcolor2;
|
||||||
|
font-size:16px;
|
||||||
|
font-weight:normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
window#waybar.empty #window {
|
||||||
|
background-color:transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* -----------------------------------------------------
|
||||||
|
* Taskbar
|
||||||
|
* ----------------------------------------------------- */
|
||||||
|
|
||||||
|
#taskbar {
|
||||||
|
background: @backgroundlight;
|
||||||
|
margin: 6px 15px 6px 0px;
|
||||||
|
padding:0px;
|
||||||
|
border-radius: 15px;
|
||||||
|
font-weight: normal;
|
||||||
|
font-style: normal;
|
||||||
|
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-browser,
|
||||||
|
#custom-keybindings,
|
||||||
|
#custom-outlook,
|
||||||
|
#custom-filemanager,
|
||||||
|
#custom-teams,
|
||||||
|
#custom-chatgpt,
|
||||||
|
#custom-calculator,
|
||||||
|
#custom-windowsvm,
|
||||||
|
#custom-cliphist,
|
||||||
|
#custom-wallpaper,
|
||||||
|
#custom-settings,
|
||||||
|
#custom-wallpaper,
|
||||||
|
#custom-system,
|
||||||
|
#custom-waybarthemes {
|
||||||
|
margin-right: 23px;
|
||||||
|
font-size: 20px;
|
||||||
|
font-weight: bold;
|
||||||
|
color: @iconcolor;
|
||||||
|
}
|
||||||
|
|
||||||
|
#custom-waybarthemes,#custom-system {
|
||||||
|
margin-right:15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#custom-ml4w-welcome {
|
||||||
|
margin-right: 15px;
|
||||||
|
background-image: url("../assets/ml4w-icon.png");
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
background-position: center;
|
||||||
|
padding-right: 24px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* -----------------------------------------------------
|
||||||
|
* Idle Inhibator
|
||||||
|
* ----------------------------------------------------- */
|
||||||
|
|
||||||
|
#idle_inhibitor {
|
||||||
|
margin-right: 15px;
|
||||||
|
font-size: 22px;
|
||||||
|
font-weight: bold;
|
||||||
|
opacity: 0.8;
|
||||||
|
color: @iconcolor;
|
||||||
|
}
|
||||||
|
|
||||||
|
#idle_inhibitor.activated {
|
||||||
|
margin-right: 15px;
|
||||||
|
font-size: 20px;
|
||||||
|
font-weight: bold;
|
||||||
|
opacity: 0.8;
|
||||||
|
color: #dc2f2f;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* -----------------------------------------------------
|
||||||
|
* Custom Modules
|
||||||
|
* ----------------------------------------------------- */
|
||||||
|
|
||||||
|
#custom-appmenu {
|
||||||
|
background-color: @backgrounddark;
|
||||||
|
font-size: 16px;
|
||||||
|
color: @textcolor1;
|
||||||
|
border-radius: 15px;
|
||||||
|
padding: 2px 10px 0px 10px;
|
||||||
|
margin: 10px 15px 10px 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* -----------------------------------------------------
|
||||||
|
* 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: 10px 15px 10px 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#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: 10px 15px 10px 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* -----------------------------------------------------
|
||||||
|
* Hardware Group
|
||||||
|
* ----------------------------------------------------- */
|
||||||
|
|
||||||
|
#disk,#memory,#cpu,#language {
|
||||||
|
margin:0px;
|
||||||
|
padding:0px;
|
||||||
|
font-size:16px;
|
||||||
|
color:@iconcolor;
|
||||||
|
}
|
||||||
|
|
||||||
|
#language {
|
||||||
|
margin-right:10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* -----------------------------------------------------
|
||||||
|
* Clock
|
||||||
|
* ----------------------------------------------------- */
|
||||||
|
|
||||||
|
#clock {
|
||||||
|
background-color: @backgrounddark;
|
||||||
|
font-size: 16px;
|
||||||
|
color: @textcolor1;
|
||||||
|
border-radius: 15px;
|
||||||
|
padding: 2px 10px 0px 10px;
|
||||||
|
margin: 10px 15px 10px 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* -----------------------------------------------------
|
||||||
|
* Pulseaudio
|
||||||
|
* ----------------------------------------------------- */
|
||||||
|
|
||||||
|
#pulseaudio {
|
||||||
|
background-color: @backgroundlight;
|
||||||
|
font-size: 16px;
|
||||||
|
color: @textcolor2;
|
||||||
|
border-radius: 15px;
|
||||||
|
padding: 2px 10px 0px 10px;
|
||||||
|
margin: 10px 15px 10px 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#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: 10px 15px 10px 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#network.ethernet {
|
||||||
|
background-color: @backgroundlight;
|
||||||
|
color: @textcolor2;
|
||||||
|
}
|
||||||
|
|
||||||
|
#network.wifi {
|
||||||
|
background-color: @backgroundlight;
|
||||||
|
color: @textcolor2;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* -----------------------------------------------------
|
||||||
|
* Bluetooth
|
||||||
|
* ----------------------------------------------------- */
|
||||||
|
|
||||||
|
#bluetooth, #bluetooth.on, #bluetooth.connected {
|
||||||
|
background-color: @backgroundlight;
|
||||||
|
font-size: 16px;
|
||||||
|
color: @textcolor2;
|
||||||
|
border-radius: 15px;
|
||||||
|
padding: 2px 10px 0px 10px;
|
||||||
|
margin: 10px 15px 10px 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#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: 10px 15px 10px 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#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;
|
||||||
|
}
|
||||||
|
|
||||||
|
#network {
|
||||||
|
background-color: #2980b9;
|
||||||
|
}
|
||||||
|
|
||||||
|
#network.disconnected {
|
||||||
|
background-color: #f53c3c;
|
||||||
|
}
|
||||||
|
|
||||||
@@ -20,10 +20,5 @@ window#waybar {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#custom-ml4w-welcome {
|
#custom-ml4w-welcome {
|
||||||
background-image: url("../../assets/ml4w-icon-black.svg");
|
background-image: url("../../assets/ml4w-icon-dark.png");
|
||||||
}
|
}
|
||||||
|
|
||||||
#custom-chatgpt {
|
|
||||||
background-image: url("../../assets/openai-black.svg");
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|||||||
@@ -19,10 +19,7 @@
|
|||||||
"spacing": 0,
|
"spacing": 0,
|
||||||
|
|
||||||
// Load Modules
|
// Load Modules
|
||||||
"include": [
|
"include": ["~/dotfiles/waybar/modules.json"],
|
||||||
"~/dotfiles/.settings/waybar-quicklinks.json",
|
|
||||||
"~/dotfiles/waybar/modules.json"
|
|
||||||
],
|
|
||||||
|
|
||||||
// Modules Left
|
// Modules Left
|
||||||
"modules-left": [
|
"modules-left": [
|
||||||
|
|||||||
@@ -18,11 +18,3 @@
|
|||||||
window#waybar {
|
window#waybar {
|
||||||
background-color: rgba(255,255,255,0.1);
|
background-color: rgba(255,255,255,0.1);
|
||||||
}
|
}
|
||||||
|
|
||||||
#custom-ml4w-welcome {
|
|
||||||
background-image: url("../../assets/ml4w-icon-white.svg");
|
|
||||||
}
|
|
||||||
|
|
||||||
#custom-chatgpt {
|
|
||||||
background-image: url("../../assets/openai-white.svg");
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -0,0 +1,2 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
theme_name="ML4W Blur Custom Colored"
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
/* -----------------------------------------------------
|
||||||
|
* 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';
|
||||||
@@ -0,0 +1,59 @@
|
|||||||
|
// __ __ _
|
||||||
|
// \ \ / /_ _ _ _| |__ __ _ _ __
|
||||||
|
// \ \ /\ / / _` | | | | '_ \ / _` | '__|
|
||||||
|
// \ V V / (_| | |_| | |_) | (_| | |
|
||||||
|
// \_/\_/ \__,_|\__, |_.__/ \__,_|_|
|
||||||
|
// |___/
|
||||||
|
//
|
||||||
|
// by Stephan Raabe (2023)
|
||||||
|
// -----------------------------------------------------
|
||||||
|
//
|
||||||
|
{
|
||||||
|
// General Settings
|
||||||
|
"layer": "top",
|
||||||
|
"margin-top": 0,
|
||||||
|
"margin-bottom": 0,
|
||||||
|
"layer": "top",
|
||||||
|
"margin-left": 0,
|
||||||
|
"margin-right": 0,
|
||||||
|
"spacing": 0,
|
||||||
|
|
||||||
|
// Load Modules
|
||||||
|
"include": ["~/dotfiles/waybar/themes/ml4w-blur-custom/modules.json"],
|
||||||
|
|
||||||
|
// Modules Left
|
||||||
|
"modules-left": [
|
||||||
|
"custom/appmenuicon",
|
||||||
|
"hyprland/workspaces",
|
||||||
|
//"custom/appmenu",
|
||||||
|
//"group/settings",
|
||||||
|
"wlr/taskbar",
|
||||||
|
//"group/quicklinks",
|
||||||
|
"hyprland/window",
|
||||||
|
"custom/empty"
|
||||||
|
],
|
||||||
|
|
||||||
|
// Modules Center
|
||||||
|
//"modules-center": [
|
||||||
|
// "hyprland/workspaces"
|
||||||
|
//],
|
||||||
|
|
||||||
|
// Modules Right
|
||||||
|
"modules-right": [
|
||||||
|
"custom/updates",
|
||||||
|
"pulseaudio",
|
||||||
|
//"bluetooth",
|
||||||
|
"battery",
|
||||||
|
"battery#charging",
|
||||||
|
"network",
|
||||||
|
"cpu",
|
||||||
|
"memory",
|
||||||
|
//"group/hardware",
|
||||||
|
//"custom/cliphist",
|
||||||
|
"tray",
|
||||||
|
"idle_inhibitor",
|
||||||
|
"custom/exit",
|
||||||
|
//"custom/ml4w-welcome",
|
||||||
|
"clock"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
theme_name="ML4W Blur Mixed"
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
/* -----------------------------------------------------
|
||||||
|
* 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';
|
||||||
@@ -0,0 +1,402 @@
|
|||||||
|
// __ __ _ _
|
||||||
|
// | \/ | ___ __| |_ _| | ___ ___
|
||||||
|
// | |\/| |/ _ \ / _` | | | | |/ _ \/ __|
|
||||||
|
// | | | | (_) | (_| | |_| | | __/\__ \
|
||||||
|
// |_| |_|\___/ \__,_|\__,_|_|\___||___/
|
||||||
|
//
|
||||||
|
//
|
||||||
|
// by Stephan Raabe (2023)
|
||||||
|
// -----------------------------------------------------
|
||||||
|
//
|
||||||
|
{
|
||||||
|
// Workspaces
|
||||||
|
"hyprland/workspaces" : {
|
||||||
|
"on-click": "activate",
|
||||||
|
"active-only": false,
|
||||||
|
"all-outputs": true,
|
||||||
|
"format": "{}",
|
||||||
|
"format-icons": {
|
||||||
|
"urgent": "",
|
||||||
|
"active": "",
|
||||||
|
"default": ""
|
||||||
|
},
|
||||||
|
"persistent-workspaces": {
|
||||||
|
// START WORKSPACES
|
||||||
|
"*": 3
|
||||||
|
// END WORKSPACES
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
// Taskbar
|
||||||
|
"wlr/taskbar": {
|
||||||
|
"format": "{icon}",
|
||||||
|
"icon-size": 18,
|
||||||
|
"tooltip-format": "{title}",
|
||||||
|
"on-click": "activate",
|
||||||
|
"on-click-middle": "close",
|
||||||
|
"ignore-list": [
|
||||||
|
"Alacritty"
|
||||||
|
],
|
||||||
|
"app_ids-mapping": {
|
||||||
|
"firefoxdeveloperedition": "firefox-developer-edition"
|
||||||
|
},
|
||||||
|
"rewrite": {
|
||||||
|
"Firefox Web Browser": "Firefox",
|
||||||
|
"Foot Server": "Terminal"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
// Hyprland Window
|
||||||
|
"hyprland/window": {
|
||||||
|
"rewrite": {
|
||||||
|
"(.*) - Brave": "$1",
|
||||||
|
"(.*) - Chromium": "$1",
|
||||||
|
"(.*) - Brave Search": "$1",
|
||||||
|
"(.*) - Outlook": "$1",
|
||||||
|
"(.*) Microsoft Teams": "$1"
|
||||||
|
},
|
||||||
|
"separate-outputs": true
|
||||||
|
},
|
||||||
|
|
||||||
|
// ML4W Welcome App
|
||||||
|
"custom/ml4w-welcome": {
|
||||||
|
"on-click": "~/dotfiles/apps/ML4W_Welcome-x86_64.AppImage",
|
||||||
|
"format": " ",
|
||||||
|
"tooltip": false
|
||||||
|
},
|
||||||
|
|
||||||
|
// Empty
|
||||||
|
"custom/empty": {
|
||||||
|
"format": ""
|
||||||
|
},
|
||||||
|
|
||||||
|
// Youtube Subscriber Count
|
||||||
|
"custom/youtube": {
|
||||||
|
"format": " {}",
|
||||||
|
"exec": "python ~/private/youtube.py",
|
||||||
|
"restart-interval": 600,
|
||||||
|
"on-click": "chromium https://studio.youtube.com",
|
||||||
|
"tooltip": false
|
||||||
|
},
|
||||||
|
|
||||||
|
// Cliphist
|
||||||
|
"custom/cliphist": {
|
||||||
|
"format": "",
|
||||||
|
"on-click": "sleep 0.1 && ~/dotfiles/scripts/cliphist.sh",
|
||||||
|
"on-click-right": "sleep 0.1 && ~/dotfiles/scripts/cliphist.sh d",
|
||||||
|
"on-click-middle": "sleep 0.1 && ~/dotfiles/scripts/cliphist.sh w",
|
||||||
|
"tooltip": false
|
||||||
|
},
|
||||||
|
|
||||||
|
// Updates Count
|
||||||
|
"custom/updates": {
|
||||||
|
"format": " {}",
|
||||||
|
"tooltip-format": "{}",
|
||||||
|
"escape": true,
|
||||||
|
"return-type": "json",
|
||||||
|
"exec": "~/dotfiles/scripts/updates.sh",
|
||||||
|
"restart-interval": 60,
|
||||||
|
"on-click": "alacritty --class dotfiles-floating -e ~/dotfiles/scripts/installupdates.sh",
|
||||||
|
"on-click-right": "~/dotfiles/.settings/software.sh",
|
||||||
|
"tooltip": false
|
||||||
|
},
|
||||||
|
|
||||||
|
// Wallpaper
|
||||||
|
"custom/wallpaper": {
|
||||||
|
"format": "",
|
||||||
|
"on-click": "~/dotfiles/hypr/scripts/wallpaper.sh select",
|
||||||
|
"on-click-right": "~/dotfiles/hypr/scripts/wallpaper.sh",
|
||||||
|
"tooltip": false
|
||||||
|
},
|
||||||
|
|
||||||
|
// Waybar Themes
|
||||||
|
"custom/waybarthemes": {
|
||||||
|
"format": "",
|
||||||
|
"on-click": "~/dotfiles/waybar/themeswitcher.sh",
|
||||||
|
"tooltip": false
|
||||||
|
},
|
||||||
|
|
||||||
|
// Settings
|
||||||
|
"custom/settings": {
|
||||||
|
"format": "",
|
||||||
|
"on-click": "~/dotfiles/apps/ML4W_Dotfiles_Settings-x86_64.AppImage",
|
||||||
|
"tooltip": false
|
||||||
|
},
|
||||||
|
|
||||||
|
// Keybindings
|
||||||
|
"custom/keybindings": {
|
||||||
|
"format": "",
|
||||||
|
"on-click": "~/dotfiles/hypr/scripts/keybindings.sh",
|
||||||
|
"tooltip": false
|
||||||
|
},
|
||||||
|
|
||||||
|
// Filemanager Launcher
|
||||||
|
"custom/filemanager": {
|
||||||
|
"format": "",
|
||||||
|
"on-click": "~/dotfiles/.settings/filemanager.sh",
|
||||||
|
"tooltip": false
|
||||||
|
},
|
||||||
|
|
||||||
|
// Outlook Launcher
|
||||||
|
"custom/outlook": {
|
||||||
|
"format": "",
|
||||||
|
"on-click": "chromium --app=https://outlook.office.com/mail/",
|
||||||
|
"tooltip": false
|
||||||
|
},
|
||||||
|
|
||||||
|
// Teams Launcher
|
||||||
|
"custom/teams": {
|
||||||
|
"format": "",
|
||||||
|
"on-click": "chromium --app=https://teams.microsoft.com/go",
|
||||||
|
"tooltip": false
|
||||||
|
},
|
||||||
|
|
||||||
|
// Browser Launcher
|
||||||
|
"custom/browser": {
|
||||||
|
"format": "",
|
||||||
|
"on-click": "~/dotfiles/.settings/browser.sh",
|
||||||
|
"tooltip": false
|
||||||
|
},
|
||||||
|
|
||||||
|
// ChatGPT Launcher
|
||||||
|
"custom/chatgpt": {
|
||||||
|
"format": " ",
|
||||||
|
"on-click": "chromium --app=https://chat.openai.com",
|
||||||
|
"tooltip": false
|
||||||
|
},
|
||||||
|
|
||||||
|
// Calculator
|
||||||
|
"custom/calculator": {
|
||||||
|
"format": "",
|
||||||
|
"on-click": "qalculate-gtk",
|
||||||
|
"tooltip": false
|
||||||
|
},
|
||||||
|
|
||||||
|
// Windows VM
|
||||||
|
"custom/windowsvm": {
|
||||||
|
"format": "",
|
||||||
|
"on-click": "~/dotfiles/scripts/launchvm.sh",
|
||||||
|
"tooltip": false
|
||||||
|
},
|
||||||
|
|
||||||
|
// Rofi Application Launcher
|
||||||
|
"custom/appmenu": {
|
||||||
|
// START APPS LABEL
|
||||||
|
"format": "Apps",
|
||||||
|
// END APPS LABEL
|
||||||
|
"on-click": "sleep 0.2;rofi -show drun -replace",
|
||||||
|
"on-click-right": "~/dotfiles/hypr/scripts/keybindings.sh",
|
||||||
|
"tooltip": false
|
||||||
|
},
|
||||||
|
|
||||||
|
// Rofi Application Launcher
|
||||||
|
"custom/appmenuicon": {
|
||||||
|
"format": "",
|
||||||
|
"on-click": "rofi -show drun -replace",
|
||||||
|
"on-click-right": "~/dotfiles/hypr/scripts/keybindings.sh",
|
||||||
|
"tooltip": false
|
||||||
|
},
|
||||||
|
|
||||||
|
// Power Menu
|
||||||
|
"custom/exit": {
|
||||||
|
"format": "",
|
||||||
|
"on-click": "wlogout",
|
||||||
|
"tooltip": false
|
||||||
|
},
|
||||||
|
|
||||||
|
// Keyboard State
|
||||||
|
"keyboard-state": {
|
||||||
|
"numlock": true,
|
||||||
|
"capslock": true,
|
||||||
|
"format": "{name} {icon}",
|
||||||
|
"format-icons": {
|
||||||
|
"locked": "",
|
||||||
|
"unlocked": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
// System tray
|
||||||
|
"tray": {
|
||||||
|
"icon-size": 21,
|
||||||
|
"spacing": 10,
|
||||||
|
"verse-direction": true
|
||||||
|
},
|
||||||
|
|
||||||
|
// Clock
|
||||||
|
"clock": {
|
||||||
|
// TIMEDATEFORMAT
|
||||||
|
"format": "{:%H:%M - %a}",
|
||||||
|
// "timezone": "America/New_York",
|
||||||
|
"tooltip-format": "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>",
|
||||||
|
// START CLOCK FORMAT
|
||||||
|
"format-alt": "{:%Y-%m-%d}"
|
||||||
|
// END CLOCK FORMAT
|
||||||
|
},
|
||||||
|
|
||||||
|
// System
|
||||||
|
"custom/system": {
|
||||||
|
"format": "",
|
||||||
|
"tooltip": false
|
||||||
|
},
|
||||||
|
|
||||||
|
// CPU
|
||||||
|
"cpu": {
|
||||||
|
"format": " {usage}%",
|
||||||
|
"on-click": "alacritty -e htop"
|
||||||
|
},
|
||||||
|
|
||||||
|
// Memory
|
||||||
|
"memory": {
|
||||||
|
"format": " {used:0.1f}G",
|
||||||
|
"on-click": "alacritty -e htop"
|
||||||
|
},
|
||||||
|
|
||||||
|
// Harddisc space used
|
||||||
|
"disk": {
|
||||||
|
"interval": 30,
|
||||||
|
"format": "D {percentage_used}% ",
|
||||||
|
"path": "/",
|
||||||
|
"on-click": "alacritty -e htop"
|
||||||
|
},
|
||||||
|
|
||||||
|
"hyprland/language": {
|
||||||
|
"format": "/ K {short}"
|
||||||
|
},
|
||||||
|
|
||||||
|
// Group Hardware
|
||||||
|
"group/hardware": {
|
||||||
|
"orientation": "inherit",
|
||||||
|
"drawer": {
|
||||||
|
"transition-duration": 300,
|
||||||
|
"children-class": "not-memory",
|
||||||
|
"transition-left-to-right": false
|
||||||
|
},
|
||||||
|
"modules": [
|
||||||
|
"custom/system",
|
||||||
|
"disk",
|
||||||
|
"cpu",
|
||||||
|
"memory",
|
||||||
|
"hyprland/language"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
|
||||||
|
// Group Settings
|
||||||
|
"group/settings": {
|
||||||
|
"orientation": "horizontal",
|
||||||
|
"modules": [
|
||||||
|
// START CHATGPT TOOGLE
|
||||||
|
"custom/chatgpt",
|
||||||
|
// END CHATGPT TOOGLE
|
||||||
|
"custom/settings",
|
||||||
|
"custom/waybarthemes",
|
||||||
|
"custom/wallpaper"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
|
||||||
|
// Group Quicklinks
|
||||||
|
"group/quicklinks": {
|
||||||
|
"orientation": "horizontal",
|
||||||
|
"modules": [
|
||||||
|
"custom/browser",
|
||||||
|
"custom/filemanager",
|
||||||
|
]
|
||||||
|
},
|
||||||
|
|
||||||
|
// Network
|
||||||
|
"network": {
|
||||||
|
"format": "{ifname}",
|
||||||
|
"format-wifi": " {signalStrength}%",
|
||||||
|
"format-ethernet": " {ifname}",
|
||||||
|
"format-disconnected": "Disconnected",
|
||||||
|
"tooltip-format": " {ifname} via {gwaddri}",
|
||||||
|
"tooltip-format-wifi": " {ifname} @ {essid}\nIP: {ipaddr}\nStrength: {signalStrength}%\nFreq: {frequency}MHz\nUp: {bandwidthUpBits} Down: {bandwidthDownBits}",
|
||||||
|
"tooltip-format-ethernet": " {ifname}\nIP: {ipaddr}\n up: {bandwidthUpBits} down: {bandwidthDownBits}",
|
||||||
|
"tooltip-format-disconnected": "Disconnected",
|
||||||
|
"max-length": 50,
|
||||||
|
"on-click": "~/dotfiles/.settings/networkmanager.sh"
|
||||||
|
},
|
||||||
|
|
||||||
|
// Battery
|
||||||
|
"battery": {
|
||||||
|
"states": {
|
||||||
|
// "good": 95,
|
||||||
|
"warning": 30,
|
||||||
|
"critical": 15
|
||||||
|
},
|
||||||
|
"format": "{icon} {capacity}%",
|
||||||
|
"format-charging": "",
|
||||||
|
"format-plugged": " {capacity}%",
|
||||||
|
"format-alt": "{icon} {time}",
|
||||||
|
// "format-good": "", // An empty format will hide the module
|
||||||
|
"format-full": " {capacity}%",
|
||||||
|
//"format-icons": {
|
||||||
|
// "Charging": ["","","","","","","","","","",""],
|
||||||
|
// "default": ["","","","","","","","","","",""]
|
||||||
|
//}
|
||||||
|
"format-icons": ["","","","","","","","","","",""]
|
||||||
|
},
|
||||||
|
"battery#charging": {
|
||||||
|
"states": {
|
||||||
|
// "good": 95,
|
||||||
|
"warning": 30,
|
||||||
|
"critical": 15
|
||||||
|
},
|
||||||
|
"format": "",
|
||||||
|
"format-charging": "{icon} {capacity}%",
|
||||||
|
// "format-good": "", // An empty format will hide the module
|
||||||
|
//"format-icons": {
|
||||||
|
// "Charging": ["","","","","","","","","","",""],
|
||||||
|
// "default": ["","","","","","","","","","",""]
|
||||||
|
//}
|
||||||
|
"format-icons": ["","","","","","","","","","",""]
|
||||||
|
},
|
||||||
|
|
||||||
|
// Pulseaudio
|
||||||
|
"pulseaudio": {
|
||||||
|
// "scroll-step": 1, // %, can be a float
|
||||||
|
"format": "{icon}",
|
||||||
|
"format-bluetooth": "{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"
|
||||||
|
},
|
||||||
|
|
||||||
|
// Bluetooth
|
||||||
|
"bluetooth": {
|
||||||
|
"format": " {status}",
|
||||||
|
"format-disabled": "",
|
||||||
|
"format-off": "",
|
||||||
|
"interval": 30,
|
||||||
|
"on-click": "blueman-manager",
|
||||||
|
"format-no-controller": ""
|
||||||
|
},
|
||||||
|
|
||||||
|
// Other
|
||||||
|
"user": {
|
||||||
|
"format": "{user}",
|
||||||
|
"interval": 60,
|
||||||
|
"icon": false,
|
||||||
|
},
|
||||||
|
|
||||||
|
// Idle Inhibator
|
||||||
|
"idle_inhibitor": {
|
||||||
|
"format": "{icon}",
|
||||||
|
"tooltip": true,
|
||||||
|
"format-icons":{
|
||||||
|
"activated": "",
|
||||||
|
"deactivated": ""
|
||||||
|
},
|
||||||
|
"on-click-right": "hyprlock"
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,431 @@
|
|||||||
|
/*
|
||||||
|
* __ __ _ ____ _ _
|
||||||
|
* \ \ / /_ _ _ _| |__ __ _ _ __ / ___|| |_ _ _| | ___
|
||||||
|
* \ \ /\ / / _` | | | | '_ \ / _` | '__| \___ \| __| | | | |/ _ \
|
||||||
|
* \ V V / (_| | |_| | |_) | (_| | | ___) | |_| |_| | | __/
|
||||||
|
* \_/\_/ \__,_|\__, |_.__/ \__,_|_| |____/ \__|\__, |_|\___|
|
||||||
|
* |___/ |___/
|
||||||
|
*
|
||||||
|
* by Stephan Raabe (2023)
|
||||||
|
* -----------------------------------------------------
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* -----------------------------------------------------
|
||||||
|
* 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.2);
|
||||||
|
border-bottom: 0px solid #ffffff;
|
||||||
|
/* color: #FFFFFF; */
|
||||||
|
transition-property: background-color;
|
||||||
|
transition-duration: .5s;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* -----------------------------------------------------
|
||||||
|
* Workspaces
|
||||||
|
* ----------------------------------------------------- */
|
||||||
|
|
||||||
|
#workspaces {
|
||||||
|
background: @workspacesbackground1;
|
||||||
|
margin: 5px 10px 6px 0px;
|
||||||
|
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: 6px 15px 6px 0px;
|
||||||
|
padding: 0px 10px 0px 10px;
|
||||||
|
border-radius: 15px;
|
||||||
|
color:@textcolor2;
|
||||||
|
font-size:16px;
|
||||||
|
font-weight:normal;
|
||||||
|
opacity:0.8;
|
||||||
|
}
|
||||||
|
|
||||||
|
window#waybar.empty #window {
|
||||||
|
background-color:transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* -----------------------------------------------------
|
||||||
|
* Taskbar
|
||||||
|
* ----------------------------------------------------- */
|
||||||
|
|
||||||
|
#taskbar {
|
||||||
|
background: @backgroundlight;
|
||||||
|
margin: 6px 10px 6px 0px;
|
||||||
|
padding:0px;
|
||||||
|
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;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* -----------------------------------------------------
|
||||||
|
* Custom Quicklinks
|
||||||
|
* ----------------------------------------------------- */
|
||||||
|
|
||||||
|
#custom-brave,
|
||||||
|
#custom-browser,
|
||||||
|
#custom-keybindings,
|
||||||
|
#custom-outlook,
|
||||||
|
#custom-filemanager,
|
||||||
|
#custom-teams,
|
||||||
|
#custom-chatgpt,
|
||||||
|
#custom-calculator,
|
||||||
|
#custom-windowsvm,
|
||||||
|
#custom-cliphist,
|
||||||
|
#custom-wallpaper,
|
||||||
|
#custom-settings,
|
||||||
|
#custom-wallpaper,
|
||||||
|
#custom-system,
|
||||||
|
#custom-waybarthemes {
|
||||||
|
margin-right: 23px;
|
||||||
|
font-size: 20px;
|
||||||
|
font-weight: bold;
|
||||||
|
opacity: 0.8;
|
||||||
|
color: @iconcolor;
|
||||||
|
}
|
||||||
|
|
||||||
|
#custom-system {
|
||||||
|
margin-right:15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#custom-wallpaper {
|
||||||
|
margin-right:25px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#custom-waybarthemes, #custom-settings {
|
||||||
|
margin-right:20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#custom-ml4w-welcome {
|
||||||
|
margin-right: 15px;
|
||||||
|
background-image: url("../assets/ml4w-icon.png");
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
background-position: center;
|
||||||
|
padding-right: 24px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#custom-chatgpt {
|
||||||
|
margin-right: 15px;
|
||||||
|
background-image: url("../assets/ai-icon-20.png");
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
background-position: center;
|
||||||
|
padding-right: 24px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* -----------------------------------------------------
|
||||||
|
* Idle Inhibator
|
||||||
|
* ----------------------------------------------------- */
|
||||||
|
|
||||||
|
#idle_inhibitor {
|
||||||
|
margin-right: 10px;
|
||||||
|
font-size: 22px;
|
||||||
|
font-weight: bold;
|
||||||
|
opacity: 0.8;
|
||||||
|
color: @iconcolor;
|
||||||
|
}
|
||||||
|
|
||||||
|
#idle_inhibitor.activated {
|
||||||
|
margin-right: 10px;
|
||||||
|
font-size: 20px;
|
||||||
|
font-weight: bold;
|
||||||
|
opacity: 0.8;
|
||||||
|
color: #dc2f2f;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* -----------------------------------------------------
|
||||||
|
* Custom Modules
|
||||||
|
* ----------------------------------------------------- */
|
||||||
|
|
||||||
|
#custom-appmenu, #custom-appmenuicon {
|
||||||
|
background-color: @backgrounddark;
|
||||||
|
font-size: 16px;
|
||||||
|
color: @textcolor1;
|
||||||
|
border-radius: 15px;
|
||||||
|
padding: 0px 10px 0px 10px;
|
||||||
|
margin: 6px 10px 6px 10px;
|
||||||
|
opacity:0.8;
|
||||||
|
border:3px solid @bordercolor;
|
||||||
|
}
|
||||||
|
|
||||||
|
#custom-appmenuicon {
|
||||||
|
padding-right: 12px;
|
||||||
|
padding-left: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* -----------------------------------------------------
|
||||||
|
* Custom Exit
|
||||||
|
* ----------------------------------------------------- */
|
||||||
|
|
||||||
|
#custom-exit {
|
||||||
|
margin: 0px 15px 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: 8px 10px 8px 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: 8px 15px 8px 0px;
|
||||||
|
opacity:0.8;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* -----------------------------------------------------
|
||||||
|
* Hardware Group
|
||||||
|
* ----------------------------------------------------- */
|
||||||
|
|
||||||
|
#disk,#memory,#cpu,#language {
|
||||||
|
background-color: @backgroundlight;
|
||||||
|
font-size: 16px;
|
||||||
|
color: @textcolor2;
|
||||||
|
border-radius: 15px;
|
||||||
|
padding: 2px 10px 0px 10px;
|
||||||
|
margin: 8px 10px 8px 0px;
|
||||||
|
opacity:0.8;
|
||||||
|
}
|
||||||
|
|
||||||
|
#language {
|
||||||
|
margin-right:10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* -----------------------------------------------------
|
||||||
|
* Clock
|
||||||
|
* ----------------------------------------------------- */
|
||||||
|
|
||||||
|
#clock {
|
||||||
|
background-color: @backgrounddark;
|
||||||
|
font-size: 16px;
|
||||||
|
color: @textcolor1;
|
||||||
|
border-radius: 15px;
|
||||||
|
padding: 1px 10px 0px 10px;
|
||||||
|
margin: 6px 10px 6px 0px;
|
||||||
|
opacity:0.8;
|
||||||
|
border:3px solid @bordercolor;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* -----------------------------------------------------
|
||||||
|
* Pulseaudio
|
||||||
|
* ----------------------------------------------------- */
|
||||||
|
|
||||||
|
#pulseaudio {
|
||||||
|
background-color: @backgroundlight;
|
||||||
|
font-size: 16px;
|
||||||
|
color: @textcolor2;
|
||||||
|
border-radius: 15px;
|
||||||
|
padding: 2px 10px 0px 10px;
|
||||||
|
margin: 8px 10px 8px 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: 8px 10px 8px 0px;
|
||||||
|
opacity:0.8;
|
||||||
|
}
|
||||||
|
|
||||||
|
#network.ethernet {
|
||||||
|
background-color: @backgroundlight;
|
||||||
|
color: @textcolor2;
|
||||||
|
}
|
||||||
|
|
||||||
|
#network.wifi {
|
||||||
|
background-color: @backgroundlight;
|
||||||
|
color: @textcolor2;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* -----------------------------------------------------
|
||||||
|
* Bluetooth
|
||||||
|
* ----------------------------------------------------- */
|
||||||
|
|
||||||
|
#bluetooth, #bluetooth.on, #bluetooth.connected {
|
||||||
|
background-color: @backgroundlight;
|
||||||
|
font-size: 16px;
|
||||||
|
color: @textcolor2;
|
||||||
|
border-radius: 15px;
|
||||||
|
padding: 2px 10px 0px 10px;
|
||||||
|
margin: 8px 10px 8px 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: 8px 10px 8px 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 {
|
||||||
|
padding: 0px 10px 0px 0px;
|
||||||
|
color: @textcolor3;
|
||||||
|
}
|
||||||
|
|
||||||
|
#tray > .passive {
|
||||||
|
-gtk-icon-effect: dim;
|
||||||
|
}
|
||||||
|
|
||||||
|
#tray > .needs-attention {
|
||||||
|
-gtk-icon-effect: highlight;
|
||||||
|
}
|
||||||
@@ -20,9 +20,5 @@ window#waybar {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#custom-ml4w-welcome {
|
#custom-ml4w-welcome {
|
||||||
background-image: url("../../assets/ml4w-icon-black.svg");
|
background-image: url("../../assets/ml4w-icon-dark.png");
|
||||||
}
|
|
||||||
|
|
||||||
#custom-chatgpt {
|
|
||||||
background-image: url("../../assets/openai-black.svg");
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -19,10 +19,7 @@
|
|||||||
"spacing": 0,
|
"spacing": 0,
|
||||||
|
|
||||||
// Load Modules
|
// Load Modules
|
||||||
"include": [
|
"include": ["~/dotfiles/waybar/modules.json"],
|
||||||
"~/dotfiles/.settings/waybar-quicklinks.json",
|
|
||||||
"~/dotfiles/waybar/modules.json"
|
|
||||||
],
|
|
||||||
|
|
||||||
// Modules Left
|
// Modules Left
|
||||||
"modules-left": [
|
"modules-left": [
|
||||||
|
|||||||
@@ -165,16 +165,6 @@ window#waybar.empty #window {
|
|||||||
#custom-system,
|
#custom-system,
|
||||||
#custom-hyprshade,
|
#custom-hyprshade,
|
||||||
#custom-hypridle,
|
#custom-hypridle,
|
||||||
#custom-quicklink1,
|
|
||||||
#custom-quicklink2,
|
|
||||||
#custom-quicklink3,
|
|
||||||
#custom-quicklink4,
|
|
||||||
#custom-quicklink5,
|
|
||||||
#custom-quicklink6,
|
|
||||||
#custom-quicklink7,
|
|
||||||
#custom-quicklink8,
|
|
||||||
#custom-quicklink9,
|
|
||||||
#custom-quicklink10,
|
|
||||||
#custom-waybarthemes {
|
#custom-waybarthemes {
|
||||||
margin-right: 23px;
|
margin-right: 23px;
|
||||||
font-size: 20px;
|
font-size: 20px;
|
||||||
@@ -213,11 +203,10 @@ window#waybar.empty #window {
|
|||||||
|
|
||||||
#custom-ml4w-welcome {
|
#custom-ml4w-welcome {
|
||||||
margin-right: 12px;
|
margin-right: 12px;
|
||||||
background-image: url("../assets/ml4w-icon.svg");
|
background-image: url("../assets/ml4w-icon.png");
|
||||||
background-position: center;
|
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-size: contain;
|
background-position: center;
|
||||||
padding-right: 20px;
|
padding-right: 24px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#custom-ml4w-hyprland-settings {
|
#custom-ml4w-hyprland-settings {
|
||||||
@@ -230,11 +219,10 @@ window#waybar.empty #window {
|
|||||||
|
|
||||||
#custom-chatgpt {
|
#custom-chatgpt {
|
||||||
margin-right: 12px;
|
margin-right: 12px;
|
||||||
background-image: url("../assets/openai.svg");
|
background-image: url("../assets/ai-icon-20.png");
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-position: center;
|
background-position: center;
|
||||||
background-size: contain;
|
padding-right: 24px;
|
||||||
padding-right: 16px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* -----------------------------------------------------
|
/* -----------------------------------------------------
|
||||||
|
|||||||
@@ -18,11 +18,3 @@
|
|||||||
window#waybar {
|
window#waybar {
|
||||||
background-color: rgba(255,255,255,0.1);
|
background-color: rgba(255,255,255,0.1);
|
||||||
}
|
}
|
||||||
|
|
||||||
#custom-ml4w-welcome {
|
|
||||||
background-image: url("../../assets/ml4w-icon-white.svg");
|
|
||||||
}
|
|
||||||
|
|
||||||
#custom-chatgpt {
|
|
||||||
background-image: url("../../assets/openai-white.svg");
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -16,9 +16,5 @@
|
|||||||
@import '../../ml4w/style.css';
|
@import '../../ml4w/style.css';
|
||||||
|
|
||||||
#custom-ml4w-welcome {
|
#custom-ml4w-welcome {
|
||||||
background-image: url("../../assets/ml4w-icon-black.svg");
|
background-image: url("../../assets/ml4w-icon-dark.png");
|
||||||
}
|
|
||||||
|
|
||||||
#custom-chatgpt {
|
|
||||||
background-image: url("../../assets/openai-black.svg");
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -19,10 +19,7 @@
|
|||||||
"spacing": 0,
|
"spacing": 0,
|
||||||
|
|
||||||
// Load Modules
|
// Load Modules
|
||||||
"include": [
|
"include": ["~/dotfiles/waybar/modules.json"],
|
||||||
"~/dotfiles/.settings/waybar-quicklinks.json",
|
|
||||||
"~/dotfiles/waybar/modules.json"
|
|
||||||
],
|
|
||||||
|
|
||||||
// Modules Left
|
// Modules Left
|
||||||
"modules-left": [
|
"modules-left": [
|
||||||
|
|||||||
@@ -14,11 +14,3 @@
|
|||||||
@define-color iconcolor #FFFFFF;
|
@define-color iconcolor #FFFFFF;
|
||||||
|
|
||||||
@import '../../ml4w/style.css';
|
@import '../../ml4w/style.css';
|
||||||
|
|
||||||
#custom-ml4w-welcome {
|
|
||||||
background-image: url("../../assets/ml4w-icon-white.svg");
|
|
||||||
}
|
|
||||||
|
|
||||||
#custom-chatgpt {
|
|
||||||
background-image: url("../../assets/openai-white.svg");
|
|
||||||
}
|
|
||||||
|
|||||||