mirror of
https://github.com/basecamp/omarchy.git
synced 2025-07-28 12:49:25 +00:00
Compare commits
1 Commits
df13763d42
...
v1.5.2
Author | SHA1 | Date | |
---|---|---|---|
03053626e3 |
@ -2,7 +2,7 @@
|
|||||||
Name=Neovim
|
Name=Neovim
|
||||||
GenericName=Text Editor
|
GenericName=Text Editor
|
||||||
Comment=Edit text files
|
Comment=Edit text files
|
||||||
Exec=alacritty --class=nvim --title=nvim -e nvim -- %F
|
Exec=alacritty -e nvim -- %F
|
||||||
Terminal=false
|
Terminal=false
|
||||||
Type=Application
|
Type=Application
|
||||||
Keywords=Text;editor;
|
Keywords=Text;editor;
|
||||||
|
@ -1,7 +0,0 @@
|
|||||||
[Desktop Entry]
|
|
||||||
Name=Audio Settings
|
|
||||||
Comment=Using Wiremix
|
|
||||||
Exec=alacritty --class=Wiremix --title=Wiremix -e wiremix
|
|
||||||
Icon=audio-card
|
|
||||||
Type=Application
|
|
||||||
Terminal=false
|
|
@ -1,14 +1,16 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Power menu for Omarchy
|
||||||
|
# Provides power off, restart, and sleep options
|
||||||
|
|
||||||
|
# Function to show power menu. The first characters are invisible sort keys.
|
||||||
show_power_menu() {
|
show_power_menu() {
|
||||||
# The first characters are invisible sort keys.
|
|
||||||
local menu_options="\u200B Lock
|
local menu_options="\u200B Lock
|
||||||
\u200C Suspend
|
\u200C Suspend
|
||||||
\u200D Relaunch
|
\u200D Relaunch
|
||||||
\u2060 Restart
|
\u2060 Restart
|
||||||
\u2063 Shutdown"
|
\u2063 Shutdown"
|
||||||
|
local selection=$(echo -e "$menu_options" | wofi --show dmenu --prompt "Power Options" --width 150 --height 195 -O alphabetical --style ~/.config/wofi/select.css)
|
||||||
local selection=$(echo -e "$menu_options" | wofi --show dmenu --width 150 --height 195 -O alphabetical --style ~/.config/wofi/select.css)
|
|
||||||
|
|
||||||
case "$selection" in
|
case "$selection" in
|
||||||
*Lock*) hyprlock ;;
|
*Lock*) hyprlock ;;
|
||||||
@ -19,4 +21,5 @@ show_power_menu() {
|
|||||||
esac
|
esac
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# Main execution
|
||||||
show_power_menu
|
show_power_menu
|
||||||
|
@ -1,5 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
# Overwrite local Hyprlock settings with the latest in Omarchy, but create a backup
|
|
||||||
cp -f ~/.config/hypr/hyprlock.conf ~/.config/hypr/hyprlock.conf.bak 2>/dev/null
|
|
||||||
cp -f ~/.local/share/omarchy/config/hypr/hyprlock.conf ~/.config/hypr/ 2>/dev/null
|
|
@ -6,5 +6,6 @@ if gum confirm "Refresh Waybar config? This will replace your current settings w
|
|||||||
cp -f ~/.local/share/omarchy/config/waybar/style.css ~/.config/waybar/ 2>/dev/null
|
cp -f ~/.local/share/omarchy/config/waybar/style.css ~/.config/waybar/ 2>/dev/null
|
||||||
|
|
||||||
# Restart waybar
|
# Restart waybar
|
||||||
pkill -SIGUSR2 waybar
|
pkill waybar
|
||||||
|
setsid waybar >/dev/null 2>&1 &
|
||||||
fi
|
fi
|
||||||
|
@ -1,20 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
screenrecording() {
|
|
||||||
notify-send "Screen recording starting..." -t 1000
|
|
||||||
sleep 1
|
|
||||||
wl-screenrec \
|
|
||||||
-f "$HOME/Videos/screenrecording-$(date +'%Y-%m-%d_%H-%M-%S').mp4" \
|
|
||||||
--ffmpeg-encoder-options="-c:v libx264 -crf 23 -preset medium -movflags +faststart" \
|
|
||||||
"$@"
|
|
||||||
}
|
|
||||||
|
|
||||||
if pgrep -x wl-screenrec >/dev/null; then
|
|
||||||
pkill -x wl-screenrec
|
|
||||||
notify-send "Screen recording saved to ~/Videos" -t 2000
|
|
||||||
elif [[ "$1" == "output" ]]; then
|
|
||||||
screenrecording -o ""
|
|
||||||
else
|
|
||||||
region=$(slurp) || exit 1
|
|
||||||
screenrecording -g "$region"
|
|
||||||
fi
|
|
@ -1,9 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
hyprshot -m ${1:-region} --raw |
|
|
||||||
satty --filename - \
|
|
||||||
--output-filename ~/Pictures/screenshot-$(date +'%Y-%m-%d_%H-%M-%S').png \
|
|
||||||
--early-exit \
|
|
||||||
--actions-on-enter save-to-clipboard \
|
|
||||||
--save-after-copy \
|
|
||||||
--copy-command 'wl-copy'
|
|
@ -11,7 +11,7 @@ TOTAL=${#BACKGROUNDS[@]}
|
|||||||
if [[ $TOTAL -eq 0 ]]; then
|
if [[ $TOTAL -eq 0 ]]; then
|
||||||
notify-send "No background was found for theme" -t 2000
|
notify-send "No background was found for theme" -t 2000
|
||||||
pkill -x swaybg
|
pkill -x swaybg
|
||||||
uwsm app -- swaybg --color '#000000' >/dev/null 2>&1 &
|
setsid swaybg --color '#000000' >/dev/null 2>&2 &
|
||||||
else
|
else
|
||||||
# Get current background from symlink
|
# Get current background from symlink
|
||||||
if [[ -L "$CURRENT_BACKGROUND_LINK" ]]; then
|
if [[ -L "$CURRENT_BACKGROUND_LINK" ]]; then
|
||||||
@ -44,5 +44,5 @@ else
|
|||||||
|
|
||||||
# Relaunch swaybg
|
# Relaunch swaybg
|
||||||
pkill -x swaybg
|
pkill -x swaybg
|
||||||
uwsm app -- swaybg -i "$NEW_BACKGROUND" -m fill >/dev/null 2>&1 &
|
setsid swaybg -i "$NEW_BACKGROUND" -m fill >/dev/null 2>&2 &
|
||||||
fi
|
fi
|
||||||
|
@ -22,7 +22,7 @@ mapfile -t themes < <(
|
|||||||
selection=$(printf '%s\n' "${themes[@]}" | wofi \
|
selection=$(printf '%s\n' "${themes[@]}" | wofi \
|
||||||
--show dmenu \
|
--show dmenu \
|
||||||
--allow-markup \
|
--allow-markup \
|
||||||
--width 200 \
|
--width 150 \
|
||||||
--height 400 \
|
--height 400 \
|
||||||
-O alphabetical \
|
-O alphabetical \
|
||||||
--style ~/.config/wofi/select.css 2>/dev/null)
|
--style ~/.config/wofi/select.css 2>/dev/null)
|
||||||
|
@ -46,7 +46,8 @@ touch "$HOME/.config/alacritty/alacritty.toml"
|
|||||||
pkill -SIGUSR2 btop
|
pkill -SIGUSR2 btop
|
||||||
|
|
||||||
# Restart components to apply new theme
|
# Restart components to apply new theme
|
||||||
pkill -SIGUSR2 waybar
|
pkill waybar
|
||||||
|
setsid waybar >/dev/null 2>&1 &
|
||||||
makoctl reload
|
makoctl reload
|
||||||
hyprctl reload
|
hyprctl reload
|
||||||
|
|
||||||
|
@ -4,6 +4,6 @@ if pgrep -x hypridle >/dev/null; then
|
|||||||
pkill -x hypridle
|
pkill -x hypridle
|
||||||
notify-send "Stop locking computer when idle"
|
notify-send "Stop locking computer when idle"
|
||||||
else
|
else
|
||||||
uwsm app -- hypridle >/dev/null 2>&1 &
|
setsid hypridle &>/dev/null &
|
||||||
notify-send "Now locking computer when idle"
|
notify-send "Now locking computer when idle"
|
||||||
fi
|
fi
|
||||||
|
@ -11,8 +11,9 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# Get the latest while trying to preserve any modifications
|
# Get the latest while trying to preserve any modifications
|
||||||
git pull --autostash
|
git stash
|
||||||
git diff --check || git reset --merge
|
git pull
|
||||||
|
git stash pop
|
||||||
|
|
||||||
# Run any pending migrations
|
# Run any pending migrations
|
||||||
for file in migrations/*.sh; do
|
for file in migrations/*.sh; do
|
||||||
|
2
boot.sh
2
boot.sh
@ -1,5 +1,3 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
ascii_art=' ▄██████▄ ▄▄▄▄███▄▄▄▄ ▄████████ ▄████████ ▄████████ ▄█ █▄ ▄██ ▄
|
ascii_art=' ▄██████▄ ▄▄▄▄███▄▄▄▄ ▄████████ ▄████████ ▄████████ ▄█ █▄ ▄██ ▄
|
||||||
███ ███ ▄██▀▀▀███▀▀▀██▄ ███ ███ ███ ███ ███ ███ ███ ███ ███ ██▄
|
███ ███ ▄██▀▀▀███▀▀▀██▄ ███ ███ ███ ███ ███ ███ ███ ███ ███ ██▄
|
||||||
███ ███ ███ ███ ███ ███ ███ ███ ███ ███ █▀ ███ ███ ███▄▄▄███
|
███ ███ ███ ███ ███ ███ ███ ███ ███ ███ █▀ ███ ███ ███▄▄▄███
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
# ────────────────────────────────────────────────────────────
|
||||||
|
# Hyprlock — minimal blur with ringed input
|
||||||
|
# ────────────────────────────────────────────────────────────
|
||||||
|
|
||||||
source = ~/.config/omarchy/current/theme/hyprlock.conf
|
source = ~/.config/omarchy/current/theme/hyprlock.conf
|
||||||
|
|
||||||
general {
|
general {
|
||||||
@ -32,7 +36,7 @@ input-field {
|
|||||||
placeholder_color = $placeholder_color
|
placeholder_color = $placeholder_color
|
||||||
placeholder_text = Enter Password
|
placeholder_text = Enter Password
|
||||||
check_color = $check_color
|
check_color = $check_color
|
||||||
fail_text = <i>$PAMFAIL ($ATTEMPTS)</i>
|
fail_text = Wrong
|
||||||
|
|
||||||
rounding = 0
|
rounding = 0
|
||||||
shadow_passes = 0
|
shadow_passes = 0
|
||||||
|
@ -96,7 +96,7 @@
|
|||||||
},
|
},
|
||||||
"pulseaudio": {
|
"pulseaudio": {
|
||||||
"format": "{icon}",
|
"format": "{icon}",
|
||||||
"on-click": "alacritty --class=Wiremix -e wiremix",
|
"on-click": "pavucontrol",
|
||||||
"on-click-right": "pamixer -t",
|
"on-click-right": "pamixer -t",
|
||||||
"tooltip-format": "Playing at {volume}%",
|
"tooltip-format": "Playing at {volume}%",
|
||||||
"scroll-step": 5,
|
"scroll-step": 5,
|
||||||
|
@ -69,5 +69,5 @@ web2app-remove() {
|
|||||||
# Ensure changes to ~/.XCompose are immediately available
|
# Ensure changes to ~/.XCompose are immediately available
|
||||||
refresh-xcompose() {
|
refresh-xcompose() {
|
||||||
pkill fcitx5
|
pkill fcitx5
|
||||||
uwsm app -- fcitx5 >/dev/null 2>&1 &
|
setsid fcitx5 &>/dev/null &
|
||||||
}
|
}
|
||||||
|
@ -24,13 +24,9 @@ bind = CTRL, F2, exec, ~/.local/share/omarchy/bin/omarchy-apple-display-brightne
|
|||||||
bind = SHIFT CTRL, F2, exec, ~/.local/share/omarchy/bin/omarchy-apple-display-brightness +60000
|
bind = SHIFT CTRL, F2, exec, ~/.local/share/omarchy/bin/omarchy-apple-display-brightness +60000
|
||||||
|
|
||||||
# Screenshots
|
# Screenshots
|
||||||
bind = , PRINT, exec, omarchy-screenshot
|
bind = , PRINT, exec, hyprshot -m region
|
||||||
bind = SHIFT, PRINT, exec, omarchy-screenshot window
|
bind = SHIFT, PRINT, exec, hyprshot -m window
|
||||||
bind = CTRL, PRINT, exec, omarchy-screenshot output
|
bind = CTRL, PRINT, exec, hyprshot -m output
|
||||||
|
|
||||||
# Screenshots
|
|
||||||
bind = ALT, PRINT, exec, omarchy-screenrecord
|
|
||||||
bind = CTRL ALT, PRINT, exec, omarchy-screenrecord output
|
|
||||||
|
|
||||||
# Color picker
|
# Color picker
|
||||||
bind = SUPER, PRINT, exec, hyprpicker -a
|
bind = SUPER, PRINT, exec, hyprpicker -a
|
||||||
|
@ -5,10 +5,10 @@ windowrule = suppressevent maximize, class:.*
|
|||||||
windowrule = tile, class:^(Chromium)$
|
windowrule = tile, class:^(Chromium)$
|
||||||
|
|
||||||
# Float and center settings and previews
|
# Float and center settings and previews
|
||||||
windowrule = float, class:^(blueberry.py|Impala|Wiremix|org.gnome.NautilusPreviewer|Omarchy)$
|
windowrule = float, class:^(org.pulseaudio.pavucontrol|blueberry.py|Impala|org.gnome.NautilusPreviewer|Omarchy)$
|
||||||
windowrule = size 800 600, class:^(blueberry.py|Impala|Wiremix|org.gnome.NautilusPreviewer)$
|
windowrule = size 800 600, class:^(org.pulseaudio.pavucontrol|blueberry.py|Impala|org.gnome.NautilusPreviewer)$
|
||||||
windowrule = size 645 350, class:Omarchy
|
windowrule = size 645 350, class:Omarchy
|
||||||
windowrule = center, class:^(blueberry.py|Impala|Wiremix|org.gnome.NautilusPreviewer|Omarchy)$
|
windowrule = center, class:^(org.pulseaudio.pavucontrol|blueberry.py|Impala|org.gnome.NautilusPreviewer|Omarchy)$
|
||||||
|
|
||||||
# Float and center file pickers
|
# Float and center file pickers
|
||||||
windowrule = float, class:xdg-desktop-portal-gtk, title:^(Open.*Files?|Save.*Files?|All Files|Save)
|
windowrule = float, class:xdg-desktop-portal-gtk, title:^(Open.*Files?|Save.*Files?|All Files|Save)
|
||||||
|
@ -1,9 +1,8 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
yay -S --noconfirm --needed \
|
yay -S --noconfirm --needed \
|
||||||
brightnessctl playerctl pamixer wiremix wireplumber \
|
brightnessctl playerctl pamixer pavucontrol wireplumber \
|
||||||
fcitx5 fcitx5-gtk fcitx5-qt wl-clip-persist \
|
fcitx5 fcitx5-gtk fcitx5-qt fcitx5-configtool wl-clip-persist \
|
||||||
nautilus sushi ffmpegthumbnailer \
|
nautilus sushi ffmpegthumbnailer \
|
||||||
slurp wl-screenrec satty \
|
|
||||||
mpv evince imv \
|
mpv evince imv \
|
||||||
chromium
|
chromium
|
||||||
|
@ -12,14 +12,8 @@ if [ -z "$OMARCHY_BARE" ]; then
|
|||||||
yay -S --noconfirm --needed typora ||
|
yay -S --noconfirm --needed typora ||
|
||||||
echo -e "\e[31mFailed to install Typora. Continuing without!\e[0m"
|
echo -e "\e[31mFailed to install Typora. Continuing without!\e[0m"
|
||||||
|
|
||||||
yay -S --noconfirm --needed dropbox libappindicator-gtk3 python-gpgme nautilus-dropbox ||
|
yay -S --noconfirm --needed spotify dropbox-cli 1password-beta 1password-cli ||
|
||||||
echo -e "\e[31mFailed to install Dropbox. Continuing without!\e[0m"
|
echo -e "\e[31mFailed to install Spotify, Dropbox, and/or 1password because of a keyserver problem. Continuing without!\e[0m"
|
||||||
|
|
||||||
yay -S --noconfirm --needed spotify ||
|
|
||||||
echo -e "\e[31mFailed to install Spotify (likely because of a keyserver problem). Continuing without!\e[0m"
|
|
||||||
|
|
||||||
yay -S --noconfirm --needed 1password-beta 1password-cli ||
|
|
||||||
echo -e "\e[31mFailed to install 1password (likely because of a keyserver problem). Continuing without!\e[0m"
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Copy over Omarchy applications
|
# Copy over Omarchy applications
|
||||||
|
@ -1,4 +0,0 @@
|
|||||||
echo "Add Catppuccin Latte light theme"
|
|
||||||
if [[ ! -L "~/.config/omarchy/themes/catppuccin-latte" ]]; then
|
|
||||||
ln -snf ~/.local/share/omarchy/themes/catppuccin-latte ~/.config/omarchy/themes/
|
|
||||||
fi
|
|
@ -1,2 +0,0 @@
|
|||||||
echo "Install slurp + wl-screenrec for new ALT+PrintScreen screen recorder"
|
|
||||||
yay -S --noconfirm --needed slurp wl-screenrec
|
|
@ -1,9 +0,0 @@
|
|||||||
echo "Replace volume control GUI with a TUI"
|
|
||||||
|
|
||||||
if ! command -v wiremix &>/dev/null; then
|
|
||||||
yay -S --noconfirm --needed wiremix
|
|
||||||
yay -Rns --noconfirm pavucontrol
|
|
||||||
|
|
||||||
omarchy-refresh-applications
|
|
||||||
omarchy-refresh-waybar
|
|
||||||
fi
|
|
@ -1,4 +0,0 @@
|
|||||||
echo "Remove needless fcitx5-configtool package"
|
|
||||||
if command -v fcitx5-configtool &>/dev/null; then
|
|
||||||
yay -Rns --noconfirm fcitx5-configtool
|
|
||||||
fi
|
|
@ -1,2 +0,0 @@
|
|||||||
echo "Update .config/hypr/hyprlock.conf to include failed attempt counter"
|
|
||||||
omarchy-refresh-hyprlock
|
|
@ -1,2 +0,0 @@
|
|||||||
echo "Install satty for the new screenshot flow"
|
|
||||||
yay -S --noconfirm --needed satty
|
|
@ -1,2 +0,0 @@
|
|||||||
echo "Add missing libappindicator-gtk3 for Dropbox icon tray to work right"
|
|
||||||
yay -S --noconfirm --needed libappindicator-gtk3
|
|
@ -1,67 +0,0 @@
|
|||||||
# https://raw.githubusercontent.com/catppuccin/alacritty/main/catppuccin-latte.toml
|
|
||||||
|
|
||||||
[colors.primary]
|
|
||||||
background = "#eff1f5"
|
|
||||||
foreground = "#4c4f69"
|
|
||||||
dim_foreground = "#8c8fa1"
|
|
||||||
bright_foreground = "#4c4f69"
|
|
||||||
|
|
||||||
[colors.cursor]
|
|
||||||
text = "#eff1f5"
|
|
||||||
cursor = "#dc8a78"
|
|
||||||
|
|
||||||
[colors.vi_mode_cursor]
|
|
||||||
text = "#eff1f5"
|
|
||||||
cursor = "#7287fd"
|
|
||||||
|
|
||||||
[colors.search.matches]
|
|
||||||
foreground = "#eff1f5"
|
|
||||||
background = "#6c6f85"
|
|
||||||
|
|
||||||
[colors.search.focused_match]
|
|
||||||
foreground = "#eff1f5"
|
|
||||||
background = "#40a02b"
|
|
||||||
|
|
||||||
[colors.footer_bar]
|
|
||||||
foreground = "#eff1f5"
|
|
||||||
background = "#6c6f85"
|
|
||||||
|
|
||||||
[colors.hints.start]
|
|
||||||
foreground = "#eff1f5"
|
|
||||||
background = "#df8e1d"
|
|
||||||
|
|
||||||
[colors.hints.end]
|
|
||||||
foreground = "#eff1f5"
|
|
||||||
background = "#6c6f85"
|
|
||||||
|
|
||||||
[colors.selection]
|
|
||||||
text = "#eff1f5"
|
|
||||||
background = "#dc8a78"
|
|
||||||
|
|
||||||
[colors.normal]
|
|
||||||
black = "#bcc0cc"
|
|
||||||
red = "#d20f39"
|
|
||||||
green = "#40a02b"
|
|
||||||
yellow = "#df8e1d"
|
|
||||||
blue = "#1e66f5"
|
|
||||||
magenta = "#ea76cb"
|
|
||||||
cyan = "#179299"
|
|
||||||
white = "#5c5f77"
|
|
||||||
|
|
||||||
[colors.bright]
|
|
||||||
black = "#acb0be"
|
|
||||||
red = "#d20f39"
|
|
||||||
green = "#40a02b"
|
|
||||||
yellow = "#df8e1d"
|
|
||||||
blue = "#1e66f5"
|
|
||||||
magenta = "#ea76cb"
|
|
||||||
cyan = "#179299"
|
|
||||||
white = "#6c6f85"
|
|
||||||
|
|
||||||
[[colors.indexed_colors]]
|
|
||||||
index = 16
|
|
||||||
color = "#fe640b"
|
|
||||||
|
|
||||||
[[colors.indexed_colors]]
|
|
||||||
index = 17
|
|
||||||
color = "#dc8a78"
|
|
Binary file not shown.
Before Width: | Height: | Size: 652 KiB |
@ -1,84 +0,0 @@
|
|||||||
# https://github.com/catppuccin/btop/blob/main/themes/catppuccin_latte.theme
|
|
||||||
# Main background, empty for terminal default, need to be empty if you want transparent background
|
|
||||||
theme[main_bg]="#eff1f5"
|
|
||||||
|
|
||||||
# Main text color
|
|
||||||
theme[main_fg]="#4c4f69"
|
|
||||||
|
|
||||||
# Title color for boxes
|
|
||||||
theme[title]="#4c4f69"
|
|
||||||
|
|
||||||
# Highlight color for keyboard shortcuts
|
|
||||||
theme[hi_fg]="#1e66f5"
|
|
||||||
|
|
||||||
# Background color of selected item in processes box
|
|
||||||
theme[selected_bg]="#bcc0cc"
|
|
||||||
|
|
||||||
# Foreground color of selected item in processes box
|
|
||||||
theme[selected_fg]="#1e66f5"
|
|
||||||
|
|
||||||
# Color of inactive/disabled text
|
|
||||||
theme[inactive_fg]="#8c8fa1"
|
|
||||||
|
|
||||||
# Color of text appearing on top of graphs, i.e uptime and current network graph scaling
|
|
||||||
theme[graph_text]="#dc8a78"
|
|
||||||
|
|
||||||
# Background color of the percentage meters
|
|
||||||
theme[meter_bg]="#bcc0cc"
|
|
||||||
|
|
||||||
# Misc colors for processes box including mini cpu graphs, details memory graph and details status text
|
|
||||||
theme[proc_misc]="#dc8a78"
|
|
||||||
|
|
||||||
# CPU, Memory, Network, Proc box outline colors
|
|
||||||
theme[cpu_box]="#8839ef" #Mauve
|
|
||||||
theme[mem_box]="#40a02b" #Green
|
|
||||||
theme[net_box]="#e64553" #Maroon
|
|
||||||
theme[proc_box]="#1e66f5" #Blue
|
|
||||||
|
|
||||||
# Box divider line and small boxes line color
|
|
||||||
theme[div_line]="#9ca0b0"
|
|
||||||
|
|
||||||
# Temperature graph color (Green -> Yellow -> Red)
|
|
||||||
theme[temp_start]="#40a02b"
|
|
||||||
theme[temp_mid]="#df8e1d"
|
|
||||||
theme[temp_end]="#d20f39"
|
|
||||||
|
|
||||||
# CPU graph colors (Teal -> Lavender)
|
|
||||||
theme[cpu_start]="#179299"
|
|
||||||
theme[cpu_mid]="#209fb5"
|
|
||||||
theme[cpu_end]="#7287fd"
|
|
||||||
|
|
||||||
# Mem/Disk free meter (Mauve -> Lavender -> Blue)
|
|
||||||
theme[free_start]="#8839ef"
|
|
||||||
theme[free_mid]="#7287fd"
|
|
||||||
theme[free_end]="#1e66f5"
|
|
||||||
|
|
||||||
# Mem/Disk cached meter (Sapphire -> Lavender)
|
|
||||||
theme[cached_start]="#209fb5"
|
|
||||||
theme[cached_mid]="#1e66f5"
|
|
||||||
theme[cached_end]="#7287fd"
|
|
||||||
|
|
||||||
# Mem/Disk available meter (Peach -> Red)
|
|
||||||
theme[available_start]="#fe640b"
|
|
||||||
theme[available_mid]="#e64553"
|
|
||||||
theme[available_end]="#d20f39"
|
|
||||||
|
|
||||||
# Mem/Disk used meter (Green -> Sky)
|
|
||||||
theme[used_start]="#40a02b"
|
|
||||||
theme[used_mid]="#179299"
|
|
||||||
theme[used_end]="#04a5e5"
|
|
||||||
|
|
||||||
# Download graph colors (Peach -> Red)
|
|
||||||
theme[download_start]="#fe640b"
|
|
||||||
theme[download_mid]="#e64553"
|
|
||||||
theme[download_end]="#d20f39"
|
|
||||||
|
|
||||||
# Upload graph colors (Green -> Sky)
|
|
||||||
theme[upload_start]="#40a02b"
|
|
||||||
theme[upload_mid]="#179299"
|
|
||||||
theme[upload_end]="#04a5e5"
|
|
||||||
|
|
||||||
# Process box color gradient for threads, mem and cpu usage (Sapphire -> Mauve)
|
|
||||||
theme[process_start]="#209fb5"
|
|
||||||
theme[process_mid]="#7287fd"
|
|
||||||
theme[process_end]="#8839ef"
|
|
@ -1,8 +0,0 @@
|
|||||||
# https://wiki.hyprland.org/Configuring/Variables/#variable-types for info about colors
|
|
||||||
|
|
||||||
$latte_blue = rgb(1e66f5)
|
|
||||||
|
|
||||||
general {
|
|
||||||
col.active_border = $latte_blue
|
|
||||||
}
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
|||||||
$color = rgba(239,241,245,1.0) # base
|
|
||||||
$inner_color = rgba(239,241,245,0.8) # slightly transparent base
|
|
||||||
$outer_color = rgba(30,102,245,1.0) # blue
|
|
||||||
|
|
||||||
$font_color = rgba(76,79,105,1.0) # text
|
|
||||||
|
|
||||||
$placeholder_color = rgba(204,208,218,0.6) # overlay0 (muted gray-blue)
|
|
||||||
$check_color = rgba(4,165,229,1.0) # cyan
|
|
||||||
|
|
@ -1 +0,0 @@
|
|||||||
# This will set "prefer-light" and use "Adwaita" as the theme
|
|
@ -1,24 +0,0 @@
|
|||||||
# Catppuccin Latte – mako notification theme
|
|
||||||
text-color=#4c4f69 # text
|
|
||||||
border-color=#dce0e8 # crust
|
|
||||||
background-color=#eff1f5 # base
|
|
||||||
|
|
||||||
width=420
|
|
||||||
height=110
|
|
||||||
padding=10
|
|
||||||
border-size=2
|
|
||||||
font=Liberation Sans 11
|
|
||||||
anchor=top-right
|
|
||||||
outer-margin=20
|
|
||||||
default-timeout=5000
|
|
||||||
max-icon-size=32
|
|
||||||
|
|
||||||
[app-name=Spotify]
|
|
||||||
invisible=1
|
|
||||||
|
|
||||||
[mode=do-not-disturb]
|
|
||||||
invisible=true
|
|
||||||
|
|
||||||
[mode=do-not-disturb app-name=notify-send]
|
|
||||||
invisible=false
|
|
||||||
|
|
@ -1,19 +0,0 @@
|
|||||||
return {
|
|
||||||
{
|
|
||||||
"catppuccin/nvim",
|
|
||||||
name = "catppuccin",
|
|
||||||
priority = 1000,
|
|
||||||
config = function()
|
|
||||||
require("catppuccin").setup({
|
|
||||||
flavour = "latte", -- other options: "mocha", "frappe", "macchiato"
|
|
||||||
})
|
|
||||||
vim.cmd.colorscheme("catppuccin-latte")
|
|
||||||
end,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"LazyVim/LazyVim",
|
|
||||||
opts = {
|
|
||||||
colorscheme = "catppuccin-latte",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}
|
|
@ -1,4 +0,0 @@
|
|||||||
@define-color foreground #4c4f69; /* text */
|
|
||||||
@define-color background #eff1f5; /* base */
|
|
||||||
@define-color border #dce0e8; /* crust */
|
|
||||||
@define-color accent #1e66f5; /* blue */
|
|
@ -1,4 +0,0 @@
|
|||||||
@define-color selected-text #1e66f5; /* blue */
|
|
||||||
@define-color text #4c4f69; /* text */
|
|
||||||
@define-color base #eff1f5; /* base */
|
|
||||||
@define-color border #dce0e8; /* crust */
|
|
Binary file not shown.
Before Width: | Height: | Size: 2.7 MiB |
Reference in New Issue
Block a user