mirror of
https://github.com/basecamp/omarchy.git
synced 2026-02-17 15:25:37 +00:00
Compare commits
28 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
666dbd8f39 | ||
|
|
308033bd10 | ||
|
|
4a468041cb | ||
|
|
97e3902455 | ||
|
|
b75065c4cf | ||
|
|
8c8cf7aadb | ||
|
|
722fa73bc8 | ||
|
|
6b8917450f | ||
|
|
26b09bb218 | ||
|
|
46d58ff0df | ||
|
|
08bc9fcaea | ||
|
|
81df3ce171 | ||
|
|
0fcda80630 | ||
|
|
6348a0ad08 | ||
|
|
43a31a10d0 | ||
|
|
2737a76a85 | ||
|
|
ff0aedd0eb | ||
|
|
bade5b0d34 | ||
|
|
58fbda80ef | ||
|
|
e3a3b98e0a | ||
|
|
8002586392 | ||
|
|
180dc7c9b5 | ||
|
|
88969588c4 | ||
|
|
8281533b54 | ||
|
|
d72f716c83 | ||
|
|
1d29c32fe5 | ||
|
|
41249a271a | ||
|
|
5ff0e82621 |
3
bin/omarchy-font-list
Executable file
3
bin/omarchy-font-list
Executable file
@@ -0,0 +1,3 @@
|
||||
#!/bin/bash
|
||||
|
||||
fc-list :spacing=100 -f "%{family[0]}\n" | grep -v -i -E 'emoji|signwriting' | sort -u
|
||||
@@ -1,16 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
~/.local/share/omarchy/bin/omarchy-show-logo
|
||||
|
||||
font=$(
|
||||
fc-list :spacing=100 -f "%{family[0]}\n" |
|
||||
grep -v -i -E 'emoji|signwriting' |
|
||||
sort -u |
|
||||
gum choose --header "Choose terminal font"
|
||||
)
|
||||
|
||||
if [[ -n "$font" ]]; then
|
||||
sed -i "s/family = \".*\"/family = \"$font\"/g" ~/.config/alacritty/alacritty.toml
|
||||
fi
|
||||
|
||||
~/.local/share/omarchy/bin/omarchy-show-done
|
||||
23
bin/omarchy-font-set
Executable file
23
bin/omarchy-font-set
Executable file
@@ -0,0 +1,23 @@
|
||||
#!/bin/bash
|
||||
|
||||
font_name="$1"
|
||||
|
||||
if [[ -n "$font_name" && "$font_name" != "CNCLD" ]]; then
|
||||
if fc-list | grep -iq "$font_name"; then
|
||||
sed -i "s/family = \".*\"/family = \"$font_name\"/g" ~/.config/alacritty/alacritty.toml
|
||||
sed -i "s/font-family: .*/font-family: $font_name;/g" ~/.config/waybar/style.css
|
||||
sed -i "s/font-family: .*/font-family: $font_name;/g" ~/.config/swayosd/style.css
|
||||
xmlstarlet ed -L \
|
||||
-u '//match[@target="pattern"][test/string="monospace"]/edit[@name="family"]/string' \
|
||||
-v "$font_name" \
|
||||
~/.config/fontconfig/fonts.conf
|
||||
|
||||
~/.local/share/omarchy/bin/omarchy-restart-waybar
|
||||
~/.local/share/omarchy/bin/omarchy-restart-swayosd
|
||||
else
|
||||
echo "Font '$font_name' not found."
|
||||
exit 1
|
||||
fi
|
||||
else
|
||||
echo "Usage: omarchy-font-set <font-name>"
|
||||
fi
|
||||
@@ -9,10 +9,7 @@ for m in $(hyprctl monitors -j | jq -r '.[] | .name'); do
|
||||
hyprctl dispatch focusmonitor $m
|
||||
hyprctl dispatch exec -- \
|
||||
alacritty --class Screensaver \
|
||||
-o 'colors.primary.background="#000000"' \
|
||||
-o 'colors.cursor.cursor="#000000"' \
|
||||
-o 'font.size=18' \
|
||||
-o 'window.opacity=1' \
|
||||
--config-file ~/.local/share/omarchy/default/alacritty/screensaver.toml \
|
||||
-e ~/.local/share/omarchy/bin/omarchy-cmd-screensaver
|
||||
done
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
OMARCHY_BIN_PATH=~/.local/share/omarchy/bin
|
||||
|
||||
menu() {
|
||||
echo -e "$2" | walker --dmenu --theme dmenu_250 -p "$1…"
|
||||
echo -e "$2" | walker --dmenu --theme dmenu_250 -p "$1…" $3
|
||||
}
|
||||
|
||||
terminal() {
|
||||
@@ -19,6 +19,14 @@ edit_in_nvim() {
|
||||
alacritty -e nvim "$1"
|
||||
}
|
||||
|
||||
install_and_launch() {
|
||||
present_terminal "echo 'Installing $1...'; yay -Sy --noconfirm $2 && gtk-launch $3"
|
||||
}
|
||||
|
||||
install_font() {
|
||||
present_terminal "echo 'Installing $1...'; yay -Sy --noconfirm --needed $2 && sleep 2 && ~/.local/share/omarchy/bin/omarchy-font-set '$3'"
|
||||
}
|
||||
|
||||
show_learn_menu() {
|
||||
case $(menu "Learn" " Keybindings\n Omarchy\n Hyprland\n Arch\n Neovim\n Bash") in
|
||||
*Keybindings*) $OMARCHY_BIN_PATH/omarchy-menu-keybindings ;;
|
||||
@@ -34,7 +42,7 @@ show_learn_menu() {
|
||||
show_style_menu() {
|
||||
case $(menu "Style" " Theme\n Font\n Background") in
|
||||
*Theme*) show_theme_menu ;;
|
||||
*Font*) terminal $OMARCHY_BIN_PATH/omarchy-font-menu ;;
|
||||
*Font*) show_font_menu ;;
|
||||
*Background*) $OMARCHY_BIN_PATH/omarchy-theme-bg-next ;;
|
||||
*) show_main_menu ;;
|
||||
esac
|
||||
@@ -49,6 +57,15 @@ show_theme_menu() {
|
||||
fi
|
||||
}
|
||||
|
||||
show_font_menu() {
|
||||
theme=$(menu "Font" "$($OMARCHY_BIN_PATH/omarchy-font-list)" "-w 350")
|
||||
if [[ "$theme" == "CNCLD" || -z "$theme" ]]; then
|
||||
show_main_menu
|
||||
else
|
||||
$OMARCHY_BIN_PATH/omarchy-font-set "$theme"
|
||||
fi
|
||||
}
|
||||
|
||||
show_capture_menu() {
|
||||
case $(menu "Capture" " Screenshot\n Screenrecord\n Color") in
|
||||
*Screenshot*) show_screenshot_menu ;;
|
||||
@@ -86,7 +103,7 @@ show_toggle_menu() {
|
||||
}
|
||||
|
||||
show_setup_menu() {
|
||||
local options=" Audio\n Wifi\n Bluetooth\n Monitors"
|
||||
local options=" Audio\n Wifi\n Bluetooth\n Power Profile\n Monitors"
|
||||
[ -f ~/.config/hypr/bindings.conf ] && options="$options\n Keybindings"
|
||||
[ -f ~/.config/hypr/input.conf ] && options="$options\n Input"
|
||||
options="$options\n Configs\n Fingerprint\n Fido2"
|
||||
@@ -95,6 +112,7 @@ show_setup_menu() {
|
||||
*Audio*) alacritty --class=Wiremix -e wiremix ;;
|
||||
*Wifi*) alacritty --class=Impala -e impala ;;
|
||||
*Bluetooth*) blueberry ;;
|
||||
*Power*) show_setup_power_menu ;;
|
||||
*Monitors*) edit_in_nvim ~/.config/hypr/monitors.conf ;;
|
||||
*Keybindings*) edit_in_nvim ~/.config/hypr/bindings.conf ;;
|
||||
*Input*) edit_in_nvim ~/.config/hypr/input.conf ;;
|
||||
@@ -105,6 +123,17 @@ show_setup_menu() {
|
||||
esac
|
||||
}
|
||||
|
||||
show_setup_power_menu() {
|
||||
current_profile=$(powerprofilesctl get)
|
||||
new_profile=$(menu "Power Profile" "$($OMARCHY_BIN_PATH/omarchy-powerprofiles-list)" "-a '${current_profile}'")
|
||||
|
||||
if [[ "$new_profile" == "CNCLD" || -z "$new_profile" ]]; then
|
||||
show_main_menu
|
||||
else
|
||||
powerprofilesctl set "$new_profile"
|
||||
fi
|
||||
}
|
||||
|
||||
show_setup_configs_menu() {
|
||||
case $(menu "Setup" " Hyprland\n Hypridle\n Hyprlock\n Hyprsunset\n Swayosd\n Walker\n Waybar\n XCompose") in
|
||||
*Hyprland*) edit_in_nvim ~/.config/hypr/hyprland.conf ;;
|
||||
@@ -120,11 +149,13 @@ show_setup_configs_menu() {
|
||||
}
|
||||
|
||||
show_install_menu() {
|
||||
case $(menu "Install" " Package\n Web App\n Theme\n Background\n Dropbox\n Steam\n Docker DBs") in
|
||||
case $(menu "Install" " Package\n Web App\n Editor\n Theme\n Background\n Font\n Dropbox\n Steam\n Docker DBs") in
|
||||
*Package*) terminal $OMARCHY_BIN_PATH/omarchy-pkg-install ;;
|
||||
*Web*) terminal $OMARCHY_BIN_PATH/omarchy-webapp-install ;;
|
||||
*Editor*) show_install_editor_menu ;;
|
||||
*Theme*) terminal $OMARCHY_BIN_PATH/omarchy-theme-install ;;
|
||||
*Background*) nautilus ~/.config/omarchy/current/theme/backgrounds ;;
|
||||
*Font*) show_install_font_menu ;;
|
||||
*Dropbox*) terminal $OMARCHY_BIN_PATH/omarchy-setup-dropbox ;;
|
||||
*Steam*) terminal $OMARCHY_BIN_PATH/omarchy-setup-steam ;;
|
||||
*Docker*) terminal $OMARCHY_BIN_PATH/omarchy-setup-docker-dbs ;;
|
||||
@@ -132,6 +163,25 @@ show_install_menu() {
|
||||
esac
|
||||
}
|
||||
|
||||
show_install_editor_menu() {
|
||||
case $(menu "Install" " VSCode\n Cursor\n Zed") in
|
||||
*VSCode*) install_and_launch "VSCode" "visual-studio-code-bin" "code" ;;
|
||||
*Cursor*) install_and_launch "Cursor" "cursor-bin" "cursor-cursor" ;;
|
||||
*Zed*) install_and_launch "Zed" "zed" "dev.zed.Zed" ;;
|
||||
*) show_install_menu ;;
|
||||
esac
|
||||
}
|
||||
|
||||
show_install_font_menu() {
|
||||
case $(menu "Install" " Meslo LG Mono\n Fira Code\n Victor Code\n Bistream Vera Mono" "-w 350") in
|
||||
*Meslo*) install_font "Meslo LG Mono" "ttf-meslo-nerd" "MesloLGL Nerd Font" ;;
|
||||
*Fira*) install_font "Fira Code" "ttf-firacode-nerd" "FiraCode Nerd Font" ;;
|
||||
*Victor*) install_font "Victor Code" "ttf-victor-mono-nerd" "VictorMono Nerd Font" ;;
|
||||
*Bistream*) install_font "Bistream Vera Code" "ttf-bitstream-vera-mono-nerd" "BitstromWera Nerd Font" ;;
|
||||
*) show_install_menu ;;
|
||||
esac
|
||||
}
|
||||
|
||||
show_remove_menu() {
|
||||
case $(menu "Remove" " Package\n Web App\n Theme\n Fingerprint\n Fido2") in
|
||||
*Package*) terminal $OMARCHY_BIN_PATH/omarchy-pkg-remove ;;
|
||||
@@ -179,7 +229,7 @@ show_system_menu() {
|
||||
}
|
||||
|
||||
show_main_menu() {
|
||||
go_to_menu "$(menu "Start" " Apps\n Learning\n Capture\n Toggle\n Style\n Setup\n Install\n Remove\n Update\n About\n System")"
|
||||
go_to_menu "$(menu "Go" " Apps\n Learn\n Capture\n Toggle\n Style\n Setup\n Install\n Remove\n Update\n About\n System")"
|
||||
}
|
||||
|
||||
go_to_menu() {
|
||||
|
||||
@@ -1,5 +1,9 @@
|
||||
#!/bin/bash
|
||||
|
||||
yay -Slq | fzf --multi --preview 'yay -Sii {1}' --preview-window=down:75% | xargs -ro yay -S --noconfirm
|
||||
pkg_name=$(yay -Slq | fzf --multi --preview 'yay -Sii {1}' --preview-window=down:75%)
|
||||
|
||||
~/.local/share/omarchy/bin/omarchy-show-done
|
||||
if [[ -n "$pkg_name" ]]; then
|
||||
yay -Sy --noconfirm "$pkg_name"
|
||||
sudo updatedb
|
||||
~/.local/share/omarchy/bin/omarchy-show-done
|
||||
fi
|
||||
|
||||
@@ -1,5 +1,9 @@
|
||||
#!/bin/bash
|
||||
|
||||
yay -Qqe | fzf --multi --preview 'yay -Qi {1}' --preview-window=down:75% | xargs -ro yay -Rns --noconfirm
|
||||
pkg_name=$(yay -Qqe | fzf --multi --preview 'yay -Qi {1}' --preview-window=down:75%)
|
||||
|
||||
~/.local/share/omarchy/bin/omarchy-show-done
|
||||
if [[ -n "$pkg_name" ]]; then
|
||||
yay -Rns --noconfirm "$pkg_name"
|
||||
sudo updatedb
|
||||
~/.local/share/omarchy/bin/omarchy-show-done
|
||||
fi
|
||||
|
||||
5
bin/omarchy-powerprofiles-list
Executable file
5
bin/omarchy-powerprofiles-list
Executable file
@@ -0,0 +1,5 @@
|
||||
#!/bin/bash
|
||||
|
||||
powerprofilesctl list |
|
||||
awk '/^\s*[* ]\s*[a-zA-Z0-9\-]+:$/ { gsub(/^[*[:space:]]+|:$/,""); print }' |
|
||||
tac
|
||||
@@ -5,7 +5,7 @@
|
||||
|
||||
if [ -z "$1" ]; then
|
||||
~/.local/share/omarchy/bin/omarchy-show-logo
|
||||
echo -e "\e[32mSee extra themes on https://manuals.omamix.org/2/the-omarchy-manual/90/extra-themes\n\e[0m"
|
||||
echo -e "\e[32mSee https://manuals.omamix.org/2/the-omarchy-manual/90/extra-themes\n\e[0m"
|
||||
REPO_URL=$(gum input --placeholder="Git repo URL for theme" --header="")
|
||||
else
|
||||
REPO_URL="$1"
|
||||
|
||||
@@ -4,10 +4,10 @@
|
||||
# Usage: omarchy-theme-remove <theme-name>
|
||||
|
||||
if [ -z "$1" ]; then
|
||||
extra_themes=$(find ~/.config/omarchy/themes -mindepth 1 -maxdepth 1 -type d ! -xtype l -printf '%f\n')
|
||||
mapfile -t extra_themes < <(find ~/.config/omarchy/themes -mindepth 1 -maxdepth 1 -type d ! -xtype l -printf '%f\n')
|
||||
|
||||
if [[ -n "$extra_themes" ]]; then
|
||||
THEME_NAME=$(gum choose --header="Remove extra theme" "$extra_themes")
|
||||
if [[ ${#extra_themes[@]} -gt 0 ]]; then
|
||||
THEME_NAME=$(gum choose --header="Remove extra theme" "${extra_themes[@]}")
|
||||
else
|
||||
echo "No extra themes installed."
|
||||
exit 1
|
||||
|
||||
@@ -9,7 +9,7 @@ window {
|
||||
}
|
||||
|
||||
label {
|
||||
font-family: 'CaskaydiaMono Nerd Font', monospace;
|
||||
font-family: 'CaskaydiaMono Nerd Font';
|
||||
font-size: 11pt;
|
||||
|
||||
color: @label;
|
||||
|
||||
11
default/alacritty/screensaver.toml
Normal file
11
default/alacritty/screensaver.toml
Normal file
@@ -0,0 +1,11 @@
|
||||
[colors.primary]
|
||||
background = "0x000000"
|
||||
|
||||
[colors.cursor]
|
||||
cursor = "0x000000"
|
||||
|
||||
[font]
|
||||
size = 18.0
|
||||
|
||||
[window]
|
||||
opacity = 1.0
|
||||
@@ -35,3 +35,18 @@ format-drive() {
|
||||
fi
|
||||
fi
|
||||
}
|
||||
|
||||
# Transcode a video to a good-balance 1080p that's great for sharing online
|
||||
transcode-video-1080p() {
|
||||
ffmpeg -i $1 -vf scale=1920:1080 -c:v libx264 -preset fast -crf 23 -c:a copy ${1%.*}-1080p.mp4
|
||||
}
|
||||
|
||||
# Transcode a video to a good-balance 4K that's great for sharing online
|
||||
transcode-video-4K() {
|
||||
ffmpeg -i $1 -c:v libx265 -preset slow -crf 24 -c:a aac -b:a 192k ${1%.*}-optimized.mp4
|
||||
}
|
||||
|
||||
# Transcode PNG to JPG image that's great for shrinking wallpapers
|
||||
transcode-png2jpg() {
|
||||
convert $1 -quality 95 -strip $(1%.*).jpg
|
||||
}
|
||||
|
||||
@@ -7,13 +7,13 @@ bindd = SUPER, P, Pseudo window, pseudo, # dwindle
|
||||
bindd = SUPER, V, Toggle floating, togglefloating,
|
||||
bindd = SHIFT, F11, Force full screen, fullscreen, 0
|
||||
|
||||
# Move focus with mainMod + arrow keys
|
||||
# Move focus with SUPER + arrow keys
|
||||
bindd = SUPER, left, Move focus left, movefocus, l
|
||||
bindd = SUPER, right, Move focus right, movefocus, r
|
||||
bindd = SUPER, up, Move focus up, movefocus, u
|
||||
bindd = SUPER, down, Move focus down, movefocus, d
|
||||
|
||||
# Switch workspaces with mainMod + [0-9]
|
||||
# Switch workspaces with SUPER + [0-9]
|
||||
bindd = SUPER, code:10, Switch to workspace 1, workspace, 1
|
||||
bindd = SUPER, code:11, Switch to workspace 2, workspace, 2
|
||||
bindd = SUPER, code:12, Switch to workspace 3, workspace, 3
|
||||
@@ -25,19 +25,19 @@ bindd = SUPER, code:17, Switch to workspace 8, workspace, 8
|
||||
bindd = SUPER, code:18, Switch to workspace 9, workspace, 9
|
||||
bindd = SUPER, code:19, Switch to workspace 10, workspace, 10
|
||||
|
||||
# Move active window to a workspace with mainMod + SHIFT + [0-9]
|
||||
# Move active window to a workspace with SUPER + SHIFT + [0-9]
|
||||
bindd = SUPER SHIFT, code:10, Move window to workspace 1, movetoworkspace, 1
|
||||
bindd = SUPER SHIFT, code:11, Move window to workspace 1, movetoworkspace, 2
|
||||
bindd = SUPER SHIFT, code:12, Move window to workspace 1, movetoworkspace, 3
|
||||
bindd = SUPER SHIFT, code:13, Move window to workspace 1, movetoworkspace, 4
|
||||
bindd = SUPER SHIFT, code:14, Move window to workspace 1, movetoworkspace, 5
|
||||
bindd = SUPER SHIFT, code:15, Move window to workspace 1, movetoworkspace, 6
|
||||
bindd = SUPER SHIFT, code:16, Move window to workspace 1, movetoworkspace, 7
|
||||
bindd = SUPER SHIFT, code:17, Move window to workspace 1, movetoworkspace, 8
|
||||
bindd = SUPER SHIFT, code:18, Move window to workspace 1, movetoworkspace, 9
|
||||
bindd = SUPER SHIFT, code:19, Move window to workspace 1, movetoworkspace, 10
|
||||
bindd = SUPER SHIFT, code:11, Move window to workspace 2, movetoworkspace, 2
|
||||
bindd = SUPER SHIFT, code:12, Move window to workspace 3, movetoworkspace, 3
|
||||
bindd = SUPER SHIFT, code:13, Move window to workspace 4, movetoworkspace, 4
|
||||
bindd = SUPER SHIFT, code:14, Move window to workspace 5, movetoworkspace, 5
|
||||
bindd = SUPER SHIFT, code:15, Move window to workspace 6, movetoworkspace, 6
|
||||
bindd = SUPER SHIFT, code:16, Move window to workspace 7, movetoworkspace, 7
|
||||
bindd = SUPER SHIFT, code:17, Move window to workspace 8, movetoworkspace, 8
|
||||
bindd = SUPER SHIFT, code:18, Move window to workspace 9, movetoworkspace, 9
|
||||
bindd = SUPER SHIFT, code:19, Move window to workspace 10, movetoworkspace, 10
|
||||
|
||||
# Swap active window with the one next to it with mainMod + SHIFT + arrow keys
|
||||
# Swap active window with the one next to it with SUPER + SHIFT + arrow keys
|
||||
bindd = SUPER SHIFT, left, Swap window to the left, swapwindow, l
|
||||
bindd = SUPER SHIFT, right, Swap window to the right, swapwindow, r
|
||||
bindd = SUPER SHIFT, up, Swap window up, swapwindow, u
|
||||
@@ -53,8 +53,8 @@ bindd = SUPER, equal, Shrink window left, resizeactive, 100 0
|
||||
bindd = SUPER SHIFT, minus, Shrink window up, resizeactive, 0 -100
|
||||
bindd = SUPER SHIFT, equal, Expand window down, resizeactive, 0 100
|
||||
|
||||
# Scroll through existing workspaces with mainMod + scroll
|
||||
bindd = SUPER, mouse_down, Scroll active worspace forward, workspace, e+1
|
||||
# Scroll through existing workspaces with SUPER + scroll
|
||||
bindd = SUPER, mouse_down, Scroll active workspace forward, workspace, e+1
|
||||
bindd = SUPER, mouse_up, Scroll active workspace backward, workspace, e-1
|
||||
|
||||
# Move/resize windows with mainMod + LMB/RMB and dragging
|
||||
|
||||
@@ -5,7 +5,7 @@ sudo systemctl enable --now cups.service
|
||||
|
||||
# Disable multicast dns in resolved. Avahi will provide this for better network printer discovery
|
||||
sudo mkdir -p /etc/systemd/resolved.conf.d
|
||||
echo "[Resolve]\nMulticastDNS=no" | sudo tee /etc/systemd/resolved.conf.d/10-disable-multicast.conf
|
||||
echo -e "[Resolve]\nMulticastDNS=no" | sudo tee /etc/systemd/resolved.conf.d/10-disable-multicast.conf
|
||||
sudo systemctl enable --now avahi-daemon.service
|
||||
|
||||
# Enable automatically adding remote printers
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
yay -S --noconfirm --needed \
|
||||
wget curl unzip inetutils impala \
|
||||
fd eza fzf ripgrep zoxide bat jq \
|
||||
fd eza fzf ripgrep zoxide bat jq xmlstarlet \
|
||||
wl-clipboard fastfetch btop \
|
||||
man tldr less whois plocate bash-completion \
|
||||
alacritty
|
||||
|
||||
6
migrations/1754480092.sh
Normal file
6
migrations/1754480092.sh
Normal file
@@ -0,0 +1,6 @@
|
||||
echo "Make new Osaka Jade theme available as new default"
|
||||
|
||||
if [[ ! -L ~/.config/omarchy/themes/osaka-jade ]]; then
|
||||
rm -rf ~/.local/share/omarchy/themes/osaka-jade
|
||||
ln -nfs ~/.local/share/omarchy/themes/osaka-jade ~/.config/omarchy/themes/osaka-jade
|
||||
fi
|
||||
3
migrations/1754509222.sh
Normal file
3
migrations/1754509222.sh
Normal file
@@ -0,0 +1,3 @@
|
||||
echo "Add xmlstarlet needed for updating fonts via Omarchy menu"
|
||||
|
||||
yay -Sy --noconfirm --needed xmlstarlet
|
||||
3
migrations/1754514972.sh
Normal file
3
migrations/1754514972.sh
Normal file
@@ -0,0 +1,3 @@
|
||||
echo "Fix multicast dns config for printers"
|
||||
|
||||
echo -e "[Resolve]\nMulticastDNS=no" | sudo tee /etc/systemd/resolved.conf.d/10-disable-multicast.conf
|
||||
4
migrations/1754515289.sh
Normal file
4
migrations/1754515289.sh
Normal file
@@ -0,0 +1,4 @@
|
||||
echo "Update and restart Walker to resolve stuck Omarchy menu"
|
||||
|
||||
yay -Sy --noconfirm walker-bin
|
||||
~/.local/share/omarchy/bin/omarchy-restart-walker
|
||||
28
themes/osaka-jade/alacritty.toml
Normal file
28
themes/osaka-jade/alacritty.toml
Normal file
@@ -0,0 +1,28 @@
|
||||
[colors]
|
||||
[colors.primary]
|
||||
background = '#111c18'
|
||||
foreground = '#C1C497'
|
||||
|
||||
[colors.normal]
|
||||
black = "#23372B"
|
||||
red = "#FF5345"
|
||||
green = "#549e6a"
|
||||
yellow = "#459451"
|
||||
blue = "#509475"
|
||||
magenta = "#D2689C"
|
||||
cyan = "#2DD5B7"
|
||||
white = "#F6F5DD"
|
||||
|
||||
[colors.bright]
|
||||
black = "#53685B"
|
||||
red = "#db9f9c"
|
||||
green = "#143614"
|
||||
yellow = "#E5C736"
|
||||
blue = "#ACD4CF"
|
||||
magenta = "#75bbb3"
|
||||
cyan = "#8CD3CB"
|
||||
white = "#9eebb3"
|
||||
|
||||
[colors.cursor]
|
||||
text = "#000000"
|
||||
cursor = "#D7C995"
|
||||
BIN
themes/osaka-jade/backgrounds/osaka-jade-bg.jpg
Normal file
BIN
themes/osaka-jade/backgrounds/osaka-jade-bg.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.3 MiB |
87
themes/osaka-jade/btop.theme
Normal file
87
themes/osaka-jade/btop.theme
Normal file
@@ -0,0 +1,87 @@
|
||||
# Main background
|
||||
theme[main_bg]="#111c18"
|
||||
|
||||
# Main text color
|
||||
theme[main_fg]="#F7E8B2"
|
||||
|
||||
# Title color for boxes
|
||||
theme[title]="#D6D5BC"
|
||||
|
||||
# Highlight color for keyboard shortcuts
|
||||
theme[hi_fg]="#E67D64"
|
||||
|
||||
# Background color of selected items
|
||||
theme[selected_bg]="#364538"
|
||||
|
||||
# Foreground color of selected items
|
||||
theme[selected_fg]="#DEB266"
|
||||
|
||||
# Color of inactive/disabled text
|
||||
theme[inactive_fg]="#32473B"
|
||||
|
||||
# Color of text appearing on top of graphs
|
||||
theme[graph_text]="#E6D8BA"
|
||||
|
||||
# Misc colors for processes box
|
||||
theme[proc_misc]="#E6D8BA"
|
||||
|
||||
# Cpu box outline color
|
||||
theme[cpu_box]="#81B8A8"
|
||||
|
||||
# Memory/disks box outline color
|
||||
theme[mem_box]="#81B8A8"
|
||||
|
||||
# Net up/down box outline color
|
||||
theme[net_box]="#81B8A8"
|
||||
|
||||
# Processes box outline color
|
||||
theme[proc_box]="#81B8A8"
|
||||
|
||||
# Box divider line and small boxes line color
|
||||
theme[div_line]="#81B8A8"
|
||||
|
||||
# Temperature graph colors
|
||||
theme[temp_start]="#BFD99A"
|
||||
theme[temp_mid]="#E1B55E"
|
||||
theme[temp_end]="#DBB05C"
|
||||
|
||||
# CPU graph colors
|
||||
theme[cpu_start]="#5F8C86"
|
||||
theme[cpu_mid]="#629C89"
|
||||
theme[cpu_end]="#76AD98"
|
||||
|
||||
# Mem/Disk free meter
|
||||
theme[free_start]="#5F8C86"
|
||||
theme[free_mid]="#629C89"
|
||||
theme[free_end]="#76AD98"
|
||||
|
||||
# Mem/Disk cached meter
|
||||
theme[cached_start]="#5F8C86"
|
||||
theme[cached_mid]="#629C89"
|
||||
theme[cached_end]="#76AD98"
|
||||
|
||||
# Mem/Disk available meter
|
||||
theme[available_start]="#5F8C86"
|
||||
theme[available_mid]="#629C89"
|
||||
theme[available_end]="#76AD98"
|
||||
|
||||
# Mem/Disk used meter
|
||||
theme[used_start]="#5F8C86"
|
||||
theme[used_mid]="#629C89"
|
||||
theme[used_end]="#76AD98"
|
||||
|
||||
# Download graph colors
|
||||
theme[download_start]="#75BBB3"
|
||||
theme[download_mid]="#61949A"
|
||||
theme[download_end]="#215866"
|
||||
|
||||
# Upload graph colors
|
||||
theme[upload_start]="#215866"
|
||||
theme[upload_mid]="#91C080"
|
||||
theme[upload_end]="#549E6A"
|
||||
|
||||
# Process box color gradient for threads, mem and cpu usage
|
||||
theme[process_start]="#72CFA3"
|
||||
theme[process_mid]="#D0D494"
|
||||
theme[process_end]="#DB9F9C"
|
||||
|
||||
4
themes/osaka-jade/hyprland.conf
Normal file
4
themes/osaka-jade/hyprland.conf
Normal file
@@ -0,0 +1,4 @@
|
||||
# focus window color (border)
|
||||
general {
|
||||
col.active_border = rgb(71CEAD)
|
||||
}
|
||||
5
themes/osaka-jade/hyprlock.conf
Normal file
5
themes/osaka-jade/hyprlock.conf
Normal file
@@ -0,0 +1,5 @@
|
||||
$color = rgb(7, 40, 32)
|
||||
$inner_color = rgb(7, 40, 32)
|
||||
$outer_color = rgb(167, 172, 132)
|
||||
$font_color = rgb(167, 172, 132)
|
||||
$check_color = rgb(131, 162, 152)
|
||||
1
themes/osaka-jade/icons.theme
Normal file
1
themes/osaka-jade/icons.theme
Normal file
@@ -0,0 +1 @@
|
||||
Yaru-sage
|
||||
21
themes/osaka-jade/mako.ini
Normal file
21
themes/osaka-jade/mako.ini
Normal file
@@ -0,0 +1,21 @@
|
||||
text-color=#C1C497
|
||||
border-color=#214237
|
||||
background-color=#11221C
|
||||
width=420
|
||||
height=110
|
||||
padding=10
|
||||
border-size=2
|
||||
font=Liberation Sans 12
|
||||
anchor=top-right
|
||||
outer-margin=5
|
||||
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
|
||||
9
themes/osaka-jade/neovim.lua
Normal file
9
themes/osaka-jade/neovim.lua
Normal file
@@ -0,0 +1,9 @@
|
||||
return {
|
||||
"ribru17/bamboo.nvim",
|
||||
lazy = false,
|
||||
priority = 1000,
|
||||
config = function()
|
||||
require("bamboo").setup({})
|
||||
require("bamboo").load()
|
||||
end,
|
||||
}
|
||||
5
themes/osaka-jade/swayosd.css
Normal file
5
themes/osaka-jade/swayosd.css
Normal file
@@ -0,0 +1,5 @@
|
||||
@define-color background-color #11221C;
|
||||
@define-color border-color #589A5F;
|
||||
@define-color label #C0C396;
|
||||
@define-color image #C0C396;
|
||||
@define-color progress #C0C396;
|
||||
6
themes/osaka-jade/walker.css
Normal file
6
themes/osaka-jade/walker.css
Normal file
@@ -0,0 +1,6 @@
|
||||
@define-color selected-text #e1b55e;
|
||||
@define-color text #ebfff2;
|
||||
@define-color base #11221C;
|
||||
@define-color border #214237;
|
||||
@define-color foreground #11221C;
|
||||
@define-color background #11221C;
|
||||
2
themes/osaka-jade/waybar.css
Normal file
2
themes/osaka-jade/waybar.css
Normal file
@@ -0,0 +1,2 @@
|
||||
@define-color foreground #e6d8ba;
|
||||
@define-color background #11221C;
|
||||
Reference in New Issue
Block a user