mirror of
https://github.com/basecamp/omarchy.git
synced 2026-02-17 15:25:37 +00:00
Compare commits
10 Commits
hey-defaul
...
add-t2-sup
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1d38781a1f | ||
|
|
8e3bb40da2 | ||
|
|
b880a2c2e2 | ||
|
|
b35591790f | ||
|
|
cbeaa56300 | ||
|
|
634e30b3a5 | ||
|
|
990dc5c7dd | ||
|
|
d48d4d7324 | ||
|
|
e9a3114b39 | ||
|
|
9b15c56a68 |
@@ -1,6 +1,6 @@
|
|||||||
[Desktop Entry]
|
[Desktop Entry]
|
||||||
Name=Image Viewer
|
Name=Image Viewer
|
||||||
Exec=imv %F
|
Exec=sh -c 'imv -n "$1" "$(dirname "$1")"' sh %f
|
||||||
Icon=imv
|
Icon=imv
|
||||||
Type=Application
|
Type=Application
|
||||||
MimeType=image/png;image/jpeg;image/jpg;image/gif;image/bmp;image/webp;image/tiff;image/x-xcf;image/x-portable-pixmap;image/x-xbitmap;
|
MimeType=image/png;image/jpeg;image/jpg;image/gif;image/bmp;image/webp;image/tiff;image/x-xcf;image/x-portable-pixmap;image/x-xbitmap;
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
Name=Neovim
|
Name=Neovim
|
||||||
GenericName=Text Editor
|
GenericName=Text Editor
|
||||||
Comment=Edit text files
|
Comment=Edit text files
|
||||||
Exec=$TERMINAL --class=nvim --title=nvim -e nvim -- %F
|
Exec=alacritty --class=nvim --title=nvim -e nvim -- %F
|
||||||
Terminal=false
|
Terminal=false
|
||||||
Type=Application
|
Type=Application
|
||||||
Keywords=Text;editor;
|
Keywords=Text;editor;
|
||||||
|
|||||||
@@ -17,7 +17,7 @@ AUDIO=$([[ $2 == "audio" ]] && echo "--audio")
|
|||||||
start_screenrecording() {
|
start_screenrecording() {
|
||||||
filename="$OUTPUT_DIR/screenrecording-$(date +'%Y-%m-%d_%H-%M-%S').mp4"
|
filename="$OUTPUT_DIR/screenrecording-$(date +'%Y-%m-%d_%H-%M-%S').mp4"
|
||||||
|
|
||||||
if lspci | grep -qi 'nvidia'; then
|
if lspci | grep -Eqi 'nvidia|intel.*graphics'; then
|
||||||
wf-recorder $AUDIO -f "$filename" -c libx264 -p crf=23 -p preset=medium -p movflags=+faststart "$@" &
|
wf-recorder $AUDIO -f "$filename" -c libx264 -p crf=23 -p preset=medium -p movflags=+faststart "$@" &
|
||||||
else
|
else
|
||||||
wl-screenrec $AUDIO -f "$filename" --ffmpeg-encoder-options="-c:v libx264 -crf 23 -preset medium -movflags +faststart" "$@" &
|
wl-screenrec $AUDIO -f "$filename" --ffmpeg-encoder-options="-c:v libx264 -crf 23 -preset medium -movflags +faststart" "$@" &
|
||||||
|
|||||||
@@ -1,10 +1,6 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
screensaver_in_focus() {
|
function exit_screensaver {
|
||||||
hyprctl activewindow -j | jq -e '.class == "Screensaver"' >/dev/null 2>&1
|
|
||||||
}
|
|
||||||
|
|
||||||
exit_screensaver() {
|
|
||||||
hyprctl keyword cursor:invisible false
|
hyprctl keyword cursor:invisible false
|
||||||
pkill -x tte 2>/dev/null
|
pkill -x tte 2>/dev/null
|
||||||
pkill -f "alacritty --class Screensaver" 2>/dev/null
|
pkill -f "alacritty --class Screensaver" 2>/dev/null
|
||||||
@@ -22,7 +18,7 @@ while true; do
|
|||||||
"$effect" &
|
"$effect" &
|
||||||
|
|
||||||
while pgrep -x tte >/dev/null; do
|
while pgrep -x tte >/dev/null; do
|
||||||
if read -n 1 -t 3 || ! screensaver_in_focus; then
|
if read -n 1 -t 3; then
|
||||||
exit_screensaver
|
exit_screensaver
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|||||||
@@ -1,44 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
if (($# == 0)); then
|
|
||||||
echo "Usage: omarchy-cmd-share [clipboard|file|folder]"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
MODE="$1"
|
|
||||||
shift
|
|
||||||
|
|
||||||
if [[ $MODE == "clipboard" ]]; then
|
|
||||||
TEMP_FILE=$(mktemp --suffix=.txt)
|
|
||||||
wl-paste >"$TEMP_FILE"
|
|
||||||
FILES="$TEMP_FILE"
|
|
||||||
else
|
|
||||||
if (($# > 0)); then
|
|
||||||
FILES="$*"
|
|
||||||
else
|
|
||||||
if [[ $MODE == "folder" ]]; then
|
|
||||||
# Pick a single folder from home directory
|
|
||||||
FILES=$(find "$HOME" -type d 2>/dev/null | fzf)
|
|
||||||
else
|
|
||||||
# Pick one or more files from home directory
|
|
||||||
FILES=$(find "$HOME" -type f 2>/dev/null | fzf --multi)
|
|
||||||
fi
|
|
||||||
[ -z "$FILES" ] && exit 0
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Run LocalSend in its own systemd service (detached from terminal)
|
|
||||||
# Convert newline-separated files to space-separated arguments
|
|
||||||
if [[ $MODE != "clipboard" ]] && echo "$FILES" | grep -q $'\n'; then
|
|
||||||
# Multiple files selected - convert newlines to array
|
|
||||||
readarray -t FILE_ARRAY <<<"$FILES"
|
|
||||||
systemd-run --user --quiet --collect localsend --headless send "${FILE_ARRAY[@]}"
|
|
||||||
else
|
|
||||||
# Single file or clipboard mode
|
|
||||||
systemd-run --user --quiet --collect localsend --headless send "$FILES"
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Note: Temporary file will remain until system cleanup for clipboard mode
|
|
||||||
# This ensures the file content is available for the LocalSend GUI
|
|
||||||
|
|
||||||
exit 0
|
|
||||||
@@ -1,3 +1,3 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
grep -oP 'font-family:\s*["'\'']?\K[^;"'\'']+' ~/.config/waybar/style.css | head -n1
|
grep -oP 'family\s*=\s*"\K[^"]+' ~/.config/alacritty/alacritty.toml | head -n1
|
||||||
|
|||||||
@@ -4,20 +4,7 @@ font_name="$1"
|
|||||||
|
|
||||||
if [[ -n "$font_name" && "$font_name" != "CNCLD" ]]; then
|
if [[ -n "$font_name" && "$font_name" != "CNCLD" ]]; then
|
||||||
if fc-list | grep -iq "$font_name"; then
|
if fc-list | grep -iq "$font_name"; then
|
||||||
if [[ -f ~/.config/alacritty/alacritty.toml ]]; then
|
|
||||||
sed -i "s/family = \".*\"/family = \"$font_name\"/g" ~/.config/alacritty/alacritty.toml
|
sed -i "s/family = \".*\"/family = \"$font_name\"/g" ~/.config/alacritty/alacritty.toml
|
||||||
fi
|
|
||||||
|
|
||||||
if [[ -f ~/.config/kitty/kitty.conf ]]; then
|
|
||||||
sed -i "s/^font_family .*/font_family $font_name/g" ~/.config/kitty/kitty.conf
|
|
||||||
pkill -USR1 kitty
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [[ -f ~/.config/ghostty/config ]]; then
|
|
||||||
sed -i "s/font-family = \".*\"/font-family = \"$font_name\"/g" ~/.config/ghostty/config
|
|
||||||
pkill -SIGUSR2 ghostty
|
|
||||||
fi
|
|
||||||
|
|
||||||
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/waybar/style.css
|
||||||
sed -i "s/font-family: .*/font-family: '$font_name';/g" ~/.config/swayosd/style.css
|
sed -i "s/font-family: .*/font-family: '$font_name';/g" ~/.config/swayosd/style.css
|
||||||
xmlstarlet ed -L \
|
xmlstarlet ed -L \
|
||||||
|
|||||||
@@ -1,13 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
if [[ -f ~/.config/chromium-flags.conf ]]; then
|
|
||||||
CONF=~/.config/chromium-flags.conf
|
|
||||||
|
|
||||||
grep -qxF -- "--oauth2-client-id=77185425430.apps.googleusercontent.com" "$CONF" ||
|
|
||||||
echo "--oauth2-client-id=77185425430.apps.googleusercontent.com" >>"$CONF"
|
|
||||||
|
|
||||||
grep -qxF -- "--oauth2-client-secret=OTJgUOQcT7lO7GsGZq2G4IlT" "$CONF" ||
|
|
||||||
echo "--oauth2-client-secret=OTJgUOQcT7lO7GsGZq2G4IlT" >>"$CONF"
|
|
||||||
|
|
||||||
echo "Now you can login to your Google Account in Chromium."
|
|
||||||
fi
|
|
||||||
@@ -119,7 +119,6 @@ java)
|
|||||||
zig)
|
zig)
|
||||||
echo -e "Installing Zig...\n"
|
echo -e "Installing Zig...\n"
|
||||||
mise use --global zig@latest
|
mise use --global zig@latest
|
||||||
mise use -g zls@latest
|
|
||||||
;;
|
;;
|
||||||
ocaml)
|
ocaml)
|
||||||
echo -e "Installing OCaml...\n"
|
echo -e "Installing OCaml...\n"
|
||||||
|
|||||||
@@ -1,19 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
if (($# == 0)); then
|
|
||||||
echo "Usage: omarchy-install-terminal [alacritty|ghostty|kitty]"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
package="$1"
|
|
||||||
|
|
||||||
# Install package
|
|
||||||
omarchy-pkg-add $package
|
|
||||||
|
|
||||||
# Set as default terminal
|
|
||||||
echo "Setting $package as new default terminal..."
|
|
||||||
sed -i "/export TERMINAL=/ c\export TERMINAL=$package" ~/.config/uwsm/default
|
|
||||||
|
|
||||||
# Relaunch is needed for new default to take effect
|
|
||||||
echo
|
|
||||||
gum confirm "Relaunch Hyprland to use new terminal?" && uwsm stop
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
exec setsid uwsm app -- alacritty --class=Omarchy -o font.size=9 -e bash -c 'fastfetch; read -n 1 -s'
|
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
case "${EDITOR:-nvim}" in
|
|
||||||
nvim | vim | nano | micro | hx)
|
|
||||||
exec setsid uwsm app -- "$TERMINAL" -e "$EDITOR" "$@"
|
|
||||||
;;
|
|
||||||
*)
|
|
||||||
exec setsid uwsm app -- "$EDITOR" "$@"
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
cmd="$*"
|
cmd="$*"
|
||||||
exec setsid uwsm app -- alacritty --class=Omarchy --title=Omarchy -e bash -c "omarchy-show-logo; $cmd; omarchy-show-done"
|
setsid alacritty --class Omarchy -e bash -c "omarchy-show-logo; $cmd; omarchy-show-done"
|
||||||
|
|||||||
@@ -1,16 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
if (($# == 0)); then
|
|
||||||
echo "Usage: omarchy-launch-or-focus [window-pattern] [launch-command]"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
WINDOW_PATTERN="$1"
|
|
||||||
LAUNCH_COMMAND="${2:-"uwsm app -- $WINDOW_PATTERN"}"
|
|
||||||
WINDOW_ADDRESS=$(hyprctl clients -j | jq -r --arg p "$WINDOW_PATTERN" '.[]|select((.class|test("\\b" + $p + "\\b";"i")) or (.title|test("\\b" + $p + "\\b";"i")))|.address' | head -n1)
|
|
||||||
|
|
||||||
if [[ -n $WINDOW_ADDRESS ]]; then
|
|
||||||
hyprctl dispatch focuswindow "address:$WINDOW_ADDRESS"
|
|
||||||
else
|
|
||||||
eval exec $LAUNCH_COMMAND
|
|
||||||
fi
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
if (($# == 0)); then
|
|
||||||
echo "Usage: omarchy-launch-or-focus-webapp [window-pattern] [url]"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
exec omarchy-launch-or-focus "$1" "omarchy-launch-webapp '$2'"
|
|
||||||
@@ -17,8 +17,6 @@ focused=$(hyprctl monitors -j | jq -r '.[] | select(.focused == true).name')
|
|||||||
|
|
||||||
for m in $(hyprctl monitors -j | jq -r '.[] | .name'); do
|
for m in $(hyprctl monitors -j | jq -r '.[] | .name'); do
|
||||||
hyprctl dispatch focusmonitor $m
|
hyprctl dispatch focusmonitor $m
|
||||||
|
|
||||||
# FIXME: Find a way to make this generic where we it can work for kitty + ghostty
|
|
||||||
hyprctl dispatch exec -- \
|
hyprctl dispatch exec -- \
|
||||||
alacritty --class Screensaver \
|
alacritty --class Screensaver \
|
||||||
--config-file ~/.local/share/omarchy/default/alacritty/screensaver.toml \
|
--config-file ~/.local/share/omarchy/default/alacritty/screensaver.toml \
|
||||||
|
|||||||
@@ -1,3 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
exec setsid uwsm app -- "$TERMINAL" --class=Impala -e impala "$@"
|
|
||||||
@@ -9,4 +9,4 @@ if pgrep -x "1password" >/dev/null; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# Avoid running screensaver when locked
|
# Avoid running screensaver when locked
|
||||||
pkill -f "$TERMINAL --class Screensaver"
|
pkill -f "alacritty --class Screensaver"
|
||||||
|
|||||||
187
bin/omarchy-menu
187
bin/omarchy-menu
@@ -37,16 +37,16 @@ menu() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
terminal() {
|
terminal() {
|
||||||
alacritty --class=Omarchy -e "$@"
|
alacritty --class Omarchy -e "$@"
|
||||||
}
|
}
|
||||||
|
|
||||||
present_terminal() {
|
present_terminal() {
|
||||||
omarchy-launch-floating-terminal-with-presentation $1
|
omarchy-launch-floating-terminal-with-presentation $1
|
||||||
}
|
}
|
||||||
|
|
||||||
open_in_editor() {
|
edit_in_nvim() {
|
||||||
notify-send "Editing config file" "$1"
|
notify-send "Editing config file" "$1"
|
||||||
omarchy-launch-editor "$1"
|
alacritty -e nvim "$1"
|
||||||
}
|
}
|
||||||
|
|
||||||
install() {
|
install() {
|
||||||
@@ -61,10 +61,6 @@ install_font() {
|
|||||||
present_terminal "echo 'Installing $1...'; sudo pacman -S --noconfirm --needed $2 && sleep 2 && omarchy-font-set '$3'"
|
present_terminal "echo 'Installing $1...'; sudo pacman -S --noconfirm --needed $2 && sleep 2 && omarchy-font-set '$3'"
|
||||||
}
|
}
|
||||||
|
|
||||||
install_terminal() {
|
|
||||||
present_terminal "omarchy-install-terminal $1"
|
|
||||||
}
|
|
||||||
|
|
||||||
aur_install() {
|
aur_install() {
|
||||||
present_terminal "echo 'Installing $1 from AUR...'; yay -S --noconfirm $2"
|
present_terminal "echo 'Installing $1 from AUR...'; yay -S --noconfirm $2"
|
||||||
}
|
}
|
||||||
@@ -85,70 +81,13 @@ show_learn_menu() {
|
|||||||
esac
|
esac
|
||||||
}
|
}
|
||||||
|
|
||||||
show_trigger_menu() {
|
|
||||||
case $(menu "Trigger" " Capture\n Share\n Toggle") in
|
|
||||||
*Capture*) show_capture_menu ;;
|
|
||||||
*Share*) show_share_menu ;;
|
|
||||||
*Toggle*) show_toggle_menu ;;
|
|
||||||
*) show_main_menu ;;
|
|
||||||
esac
|
|
||||||
}
|
|
||||||
|
|
||||||
show_capture_menu() {
|
|
||||||
case $(menu "Capture" " Screenshot\n Screenrecord\n Color") in
|
|
||||||
*Screenshot*) show_screenshot_menu ;;
|
|
||||||
*Screenrecord*) show_screenrecord_menu ;;
|
|
||||||
*Color*) pkill hyprpicker || hyprpicker -a ;;
|
|
||||||
*) show_trigger_menu ;;
|
|
||||||
esac
|
|
||||||
}
|
|
||||||
|
|
||||||
show_screenshot_menu() {
|
|
||||||
case $(menu "Screenshot" " Region\n Window\n Display") in
|
|
||||||
*Region*) omarchy-cmd-screenshot ;;
|
|
||||||
*Window*) omarchy-cmd-screenshot window ;;
|
|
||||||
*Display*) omarchy-cmd-screenshot output ;;
|
|
||||||
*) show_capture_menu ;;
|
|
||||||
esac
|
|
||||||
}
|
|
||||||
|
|
||||||
show_screenrecord_menu() {
|
|
||||||
case $(menu "Screenrecord" " Region\n Region + Audio\n Display\n Display + Audio") in
|
|
||||||
*"Region + Audio"*) omarchy-cmd-screenrecord region audio ;;
|
|
||||||
*Region*) omarchy-cmd-screenrecord ;;
|
|
||||||
*"Display + Audio"*) omarchy-cmd-screenrecord output audio ;;
|
|
||||||
*Display*) omarchy-cmd-screenrecord output ;;
|
|
||||||
*) show_capture_menu ;;
|
|
||||||
esac
|
|
||||||
}
|
|
||||||
|
|
||||||
show_share_menu() {
|
|
||||||
case $(menu "Share" " Clipboard\n File \n Folder") in
|
|
||||||
*Clipboard*) terminal bash -c "omarchy-cmd-share clipboard" ;;
|
|
||||||
*File*) terminal bash -c "omarchy-cmd-share file" ;;
|
|
||||||
*Folder*) terminal bash -c "omarchy-cmd-share folder" ;;
|
|
||||||
*) back_to show_trigger_menu ;;
|
|
||||||
esac
|
|
||||||
}
|
|
||||||
|
|
||||||
show_toggle_menu() {
|
|
||||||
case $(menu "Toggle" " Screensaver\n Nightlight\n Idle Lock\n Top Bar") in
|
|
||||||
*Screensaver*) omarchy-toggle-screensaver ;;
|
|
||||||
*Nightlight*) omarchy-toggle-nightlight ;;
|
|
||||||
*Idle*) omarchy-toggle-idle ;;
|
|
||||||
*Bar*) omarchy-toggle-waybar ;;
|
|
||||||
*) show_trigger_menu ;;
|
|
||||||
esac
|
|
||||||
}
|
|
||||||
|
|
||||||
show_style_menu() {
|
show_style_menu() {
|
||||||
case $(menu "Style" " Theme\n Font\n Background\n Hyprland\n Screensaver\n About") in
|
case $(menu "Style" " Theme\n Font\n Background\n Screensaver\n About") in
|
||||||
*Theme*) show_theme_menu ;;
|
*Theme*) show_theme_menu ;;
|
||||||
*Font*) show_font_menu ;;
|
*Font*) show_font_menu ;;
|
||||||
*Background*) omarchy-theme-bg-next ;;
|
*Background*) omarchy-theme-bg-next ;;
|
||||||
*Hyprland*) open_in_editor ~/.config/hypr/looknfeel.conf ;;
|
*Screensaver*) edit_in_nvim ~/.config/omarchy/branding/screensaver.txt ;;
|
||||||
*Screensaver*) open_in_editor ~/.config/omarchy/branding/screensaver.txt ;;
|
*About*) edit_in_nvim ~/.config/omarchy/branding/about.txt ;;
|
||||||
*About*) open_in_editor ~/.config/omarchy/branding/about.txt ;;
|
|
||||||
*) show_main_menu ;;
|
*) show_main_menu ;;
|
||||||
esac
|
esac
|
||||||
}
|
}
|
||||||
@@ -171,30 +110,68 @@ show_font_menu() {
|
|||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
show_capture_menu() {
|
||||||
|
case $(menu "Capture" " Screenshot\n Screenrecord\n Color") in
|
||||||
|
*Screenshot*) show_screenshot_menu ;;
|
||||||
|
*Screenrecord*) show_screenrecord_menu ;;
|
||||||
|
*Color*) pkill hyprpicker || hyprpicker -a ;;
|
||||||
|
*) show_main_menu ;;
|
||||||
|
esac
|
||||||
|
}
|
||||||
|
|
||||||
|
show_screenshot_menu() {
|
||||||
|
case $(menu "Screenshot" " Region\n Window\n Display") in
|
||||||
|
*Region*) omarchy-cmd-screenshot ;;
|
||||||
|
*Window*) omarchy-cmd-screenshot window ;;
|
||||||
|
*Display*) omarchy-cmd-screenshot output ;;
|
||||||
|
*) show_capture_menu ;;
|
||||||
|
esac
|
||||||
|
}
|
||||||
|
|
||||||
|
show_screenrecord_menu() {
|
||||||
|
case $(menu "Screenrecord" " Region\n Region + Audio\n Display\n Display + Audio") in
|
||||||
|
*"Region + Audio"*) omarchy-cmd-screenrecord region audio ;;
|
||||||
|
*Region*) omarchy-cmd-screenrecord ;;
|
||||||
|
*"Display + Audio"*) omarchy-cmd-screenrecord output audio ;;
|
||||||
|
*Display*) omarchy-cmd-screenrecord output ;;
|
||||||
|
*) show_capture_menu ;;
|
||||||
|
esac
|
||||||
|
}
|
||||||
|
|
||||||
|
show_toggle_menu() {
|
||||||
|
case $(menu "Toggle" " Screensaver\n Nightlight\n Idle Lock\n Top Bar") in
|
||||||
|
*Screensaver*) omarchy-toggle-screensaver ;;
|
||||||
|
*Nightlight*) omarchy-toggle-nightlight ;;
|
||||||
|
*Idle*) omarchy-toggle-idle ;;
|
||||||
|
*Bar*) omarchy-toggle-waybar ;;
|
||||||
|
*) show_main_menu ;;
|
||||||
|
esac
|
||||||
|
}
|
||||||
|
|
||||||
show_setup_menu() {
|
show_setup_menu() {
|
||||||
local options=" Audio\n Wifi\n Bluetooth\n Power Profile\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/bindings.conf ] && options="$options\n Keybindings"
|
||||||
[ -f ~/.config/hypr/input.conf ] && options="$options\n Input"
|
[ -f ~/.config/hypr/input.conf ] && options="$options\n Input"
|
||||||
options="$options\n Defaults\n DNS\n Security\n Config"
|
options="$options\n DNS\n Config\n Fingerprint\n Fido2"
|
||||||
|
|
||||||
case $(menu "Setup" "$options") in
|
case $(menu "Setup" "$options") in
|
||||||
*Audio*) $TERMINAL --class=Wiremix -e wiremix ;;
|
*Audio*) alacritty --class=Wiremix -e wiremix ;;
|
||||||
*Wifi*)
|
*Wifi*)
|
||||||
rfkill unblock wifi
|
rfkill unblock wifi
|
||||||
omarchy-launch-wifi
|
alacritty --class=Impala -e impala
|
||||||
;;
|
;;
|
||||||
*Bluetooth*)
|
*Bluetooth*)
|
||||||
rfkill unblock bluetooth
|
rfkill unblock bluetooth
|
||||||
blueberry
|
blueberry
|
||||||
;;
|
;;
|
||||||
*Power*) show_setup_power_menu ;;
|
*Power*) show_setup_power_menu ;;
|
||||||
*Monitors*) open_in_editor ~/.config/hypr/monitors.conf ;;
|
*Monitors*) edit_in_nvim ~/.config/hypr/monitors.conf ;;
|
||||||
*Keybindings*) open_in_editor ~/.config/hypr/bindings.conf ;;
|
*Keybindings*) edit_in_nvim ~/.config/hypr/bindings.conf ;;
|
||||||
*Input*) open_in_editor ~/.config/hypr/input.conf ;;
|
*Input*) edit_in_nvim ~/.config/hypr/input.conf ;;
|
||||||
*Defaults*) open_in_editor ~/.config/uwsm/default ;;
|
|
||||||
*DNS*) present_terminal omarchy-setup-dns ;;
|
*DNS*) present_terminal omarchy-setup-dns ;;
|
||||||
*Security*) show_setup_security_menu ;;
|
|
||||||
*Config*) show_setup_config_menu ;;
|
*Config*) show_setup_config_menu ;;
|
||||||
|
*Fingerprint*) present_terminal omarchy-setup-fingerprint ;;
|
||||||
|
*Fido2*) present_terminal omarchy-setup-fido2 ;;
|
||||||
*) show_main_menu ;;
|
*) show_main_menu ;;
|
||||||
esac
|
esac
|
||||||
}
|
}
|
||||||
@@ -211,28 +188,20 @@ show_setup_power_menu() {
|
|||||||
|
|
||||||
show_setup_config_menu() {
|
show_setup_config_menu() {
|
||||||
case $(menu "Setup" " Hyprland\n Hypridle\n Hyprlock\n Hyprsunset\n Swayosd\n Walker\n Waybar\n XCompose") in
|
case $(menu "Setup" " Hyprland\n Hypridle\n Hyprlock\n Hyprsunset\n Swayosd\n Walker\n Waybar\n XCompose") in
|
||||||
*Hyprland*) open_in_editor ~/.config/hypr/hyprland.conf ;;
|
*Hyprland*) edit_in_nvim ~/.config/hypr/hyprland.conf ;;
|
||||||
*Hypridle*) open_in_editor ~/.config/hypr/hypridle.conf && omarchy-restart-hypridle ;;
|
*Hypridle*) edit_in_nvim ~/.config/hypr/hypridle.conf && omarchy-restart-hypridle ;;
|
||||||
*Hyprlock*) open_in_editor ~/.config/hypr/hyprlock.conf ;;
|
*Hyprlock*) edit_in_nvim ~/.config/hypr/hyprlock.conf ;;
|
||||||
*Hyprsunset*) open_in_editor ~/.config/hypr/hyprsunset.conf && omarchy-restart-hyprsunset ;;
|
*Hyprsunset*) edit_in_nvim ~/.config/hypr/hyprsunset.conf && omarchy-restart-hyprsunset ;;
|
||||||
*Swayosd*) open_in_editor ~/.config/swayosd/config.toml && omarchy-restart-swayosd ;;
|
*Swayosd*) edit_in_nvim ~/.config/swayosd/config.toml && omarchy-restart-swayosd ;;
|
||||||
*Walker*) open_in_editor ~/.config/walker/config.toml && omarchy-restart-walker ;;
|
*Walker*) edit_in_nvim ~/.config/walker/config.toml && omarchy-restart-walker ;;
|
||||||
*Waybar*) open_in_editor ~/.config/waybar/config.jsonc && omarchy-restart-waybar ;;
|
*Waybar*) edit_in_nvim ~/.config/waybar/config.jsonc && omarchy-restart-waybar ;;
|
||||||
*XCompose*) open_in_editor ~/.XCompose && omarchy-restart-xcompose ;;
|
*XCompose*) edit_in_nvim ~/.XCompose && omarchy-restart-xcompose ;;
|
||||||
*) show_main_menu ;;
|
*) show_main_menu ;;
|
||||||
esac
|
esac
|
||||||
}
|
}
|
||||||
|
|
||||||
show_setup_security_menu() {
|
|
||||||
case $(menu "Setup" " Fingerprint\n Fido2") in
|
|
||||||
*Fingerprint*) present_terminal omarchy-setup-fingerprint ;;
|
|
||||||
*Fido2*) present_terminal omarchy-setup-fido2 ;;
|
|
||||||
*) show_setup_menu ;;
|
|
||||||
esac
|
|
||||||
}
|
|
||||||
|
|
||||||
show_install_menu() {
|
show_install_menu() {
|
||||||
case $(menu "Install" " Package\n AUR\n Web App\n TUI\n Service\n Style\n Development\n Editor\n Terminal\n AI\n Gaming") in
|
case $(menu "Install" " Package\n AUR\n Web App\n TUI\n Service\n Style\n Development\n Editor\n AI\n Gaming") in
|
||||||
*Package*) terminal omarchy-pkg-install ;;
|
*Package*) terminal omarchy-pkg-install ;;
|
||||||
*AUR*) terminal omarchy-pkg-aur-install ;;
|
*AUR*) terminal omarchy-pkg-aur-install ;;
|
||||||
*Web*) present_terminal omarchy-webapp-install ;;
|
*Web*) present_terminal omarchy-webapp-install ;;
|
||||||
@@ -241,7 +210,6 @@ show_install_menu() {
|
|||||||
*Style*) show_install_style_menu ;;
|
*Style*) show_install_style_menu ;;
|
||||||
*Development*) show_install_development_menu ;;
|
*Development*) show_install_development_menu ;;
|
||||||
*Editor*) show_install_editor_menu ;;
|
*Editor*) show_install_editor_menu ;;
|
||||||
*Terminal*) show_install_terminal_menu ;;
|
|
||||||
*AI*) show_install_ai_menu ;;
|
*AI*) show_install_ai_menu ;;
|
||||||
*Gaming*) show_install_gaming_menu ;;
|
*Gaming*) show_install_gaming_menu ;;
|
||||||
*) show_main_menu ;;
|
*) show_main_menu ;;
|
||||||
@@ -249,11 +217,10 @@ show_install_menu() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
show_install_service_menu() {
|
show_install_service_menu() {
|
||||||
case $(menu "Install" " Dropbox\n Tailscale\n Bitwarden\n Chromium Account") in
|
case $(menu "Install" " Dropbox\n Tailscale\n Bitwarden") in
|
||||||
*Dropbox*) present_terminal omarchy-install-dropbox ;;
|
*Dropbox*) present_terminal omarchy-install-dropbox ;;
|
||||||
*Tailscale*) present_terminal omarchy-install-tailscale ;;
|
*Tailscale*) present_terminal omarchy-install-tailscale ;;
|
||||||
*Bitwarden*) install_and_launch "Bitwarden" "bitwarden bitwarden-cli" "bitwarden" ;;
|
*Bitwarden*) install_and_launch "Bitwarden" "bitwarden bitwarden-cli" "bitwarden" ;;
|
||||||
*Chromium*) present_terminal omarchy-install-chromium-google-account ;;
|
|
||||||
*) show_install_menu ;;
|
*) show_install_menu ;;
|
||||||
esac
|
esac
|
||||||
}
|
}
|
||||||
@@ -270,15 +237,6 @@ show_install_editor_menu() {
|
|||||||
esac
|
esac
|
||||||
}
|
}
|
||||||
|
|
||||||
show_install_terminal_menu() {
|
|
||||||
case $(menu "Install" " Alacritty\n Ghostty\n Kitty") in
|
|
||||||
*Alacritty*) install_terminal "alacritty" ;;
|
|
||||||
*Ghostty*) install_terminal "ghostty" ;;
|
|
||||||
*Kitty*) install_terminal "kitty" ;;
|
|
||||||
*) show_install_menu ;;
|
|
||||||
esac
|
|
||||||
}
|
|
||||||
|
|
||||||
show_install_ai_menu() {
|
show_install_ai_menu() {
|
||||||
ollama_pkg=$(
|
ollama_pkg=$(
|
||||||
(command -v nvidia-smi &>/dev/null && echo ollama-cuda) ||
|
(command -v nvidia-smi &>/dev/null && echo ollama-cuda) ||
|
||||||
@@ -384,9 +342,8 @@ show_remove_menu() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
show_update_menu() {
|
show_update_menu() {
|
||||||
case $(menu "Update" " Omarchy\n Branch\n Config\n Extra Themes\n Process\n Hardware\n Password\n Timezone") in
|
case $(menu "Update" " Omarchy\n Config\n Themes\n Process\n Hardware\n Password\n Timezone") in
|
||||||
*Omarchy*) present_terminal omarchy-update ;;
|
*Omarchy*) present_terminal omarchy-update ;;
|
||||||
*Branch*) show_update_branch_menu ;;
|
|
||||||
*Config*) show_update_config_menu ;;
|
*Config*) show_update_config_menu ;;
|
||||||
*Themes*) present_terminal omarchy-theme-update ;;
|
*Themes*) present_terminal omarchy-theme-update ;;
|
||||||
*Process*) show_update_process_menu ;;
|
*Process*) show_update_process_menu ;;
|
||||||
@@ -397,13 +354,6 @@ show_update_menu() {
|
|||||||
esac
|
esac
|
||||||
}
|
}
|
||||||
|
|
||||||
show_update_branch_menu() {
|
|
||||||
case $(menu "Branch" "master\ndev" "" "$(omarchy-version-branch)") in
|
|
||||||
*master*) present_terminal "omarchy-update-branch master" ;;
|
|
||||||
*dev*) present_terminal "omarchy-update-branch dev" ;;
|
|
||||||
*) show_update_menu ;;
|
|
||||||
esac
|
|
||||||
}
|
|
||||||
show_update_process_menu() {
|
show_update_process_menu() {
|
||||||
case $(menu "Restart" " Hypridle\n Hyprsunset\n Swayosd\n Walker\n Waybar") in
|
case $(menu "Restart" " Hypridle\n Hyprsunset\n Swayosd\n Walker\n Waybar") in
|
||||||
*Hypridle*) omarchy-restart-hypridle ;;
|
*Hypridle*) omarchy-restart-hypridle ;;
|
||||||
@@ -430,8 +380,7 @@ show_update_config_menu() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
show_update_hardware_menu() {
|
show_update_hardware_menu() {
|
||||||
case $(menu "Restart" " Audio\n Wi-Fi\n Bluetooth") in
|
case $(menu "Restart" " Wi-Fi\n Bluetooth") in
|
||||||
*Audio*) present_terminal omarchy-restart-pipewire ;;
|
|
||||||
*Wi-Fi*) present_terminal omarchy-restart-wifi ;;
|
*Wi-Fi*) present_terminal omarchy-restart-wifi ;;
|
||||||
*Bluetooth*) present_terminal omarchy-restart-bluetooth ;;
|
*Bluetooth*) present_terminal omarchy-restart-bluetooth ;;
|
||||||
*) show_update_menu ;;
|
*) show_update_menu ;;
|
||||||
@@ -459,25 +408,25 @@ show_system_menu() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
show_main_menu() {
|
show_main_menu() {
|
||||||
go_to_menu "$(menu "Go" " Apps\n Learn\n Trigger\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() {
|
go_to_menu() {
|
||||||
case "${1,,}" in
|
case "${1,,}" in
|
||||||
*apps*) walker -p "Launch…" ;;
|
*apps*) walker -p "Launch…" ;;
|
||||||
*learn*) show_learn_menu ;;
|
*learn*) show_learn_menu ;;
|
||||||
*trigger*) show_trigger_menu ;;
|
|
||||||
*share*) show_share_menu ;;
|
|
||||||
*style*) show_style_menu ;;
|
*style*) show_style_menu ;;
|
||||||
*theme*) show_theme_menu ;;
|
*theme*) show_theme_menu ;;
|
||||||
|
*capture*) show_capture_menu ;;
|
||||||
*screenshot*) show_screenshot_menu ;;
|
*screenshot*) show_screenshot_menu ;;
|
||||||
*screenrecord*) show_screenrecord_menu ;;
|
*screenrecord*) show_screenrecord_menu ;;
|
||||||
|
*toggle*) show_toggle_menu ;;
|
||||||
*setup*) show_setup_menu ;;
|
*setup*) show_setup_menu ;;
|
||||||
*power*) show_setup_power_menu ;;
|
*power*) show_setup_power_menu ;;
|
||||||
*install*) show_install_menu ;;
|
*install*) show_install_menu ;;
|
||||||
*remove*) show_remove_menu ;;
|
*remove*) show_remove_menu ;;
|
||||||
*update*) show_update_menu ;;
|
*update*) show_update_menu ;;
|
||||||
*about*) omarchy-launch-about ;;
|
*about*) alacritty --class Omarchy -o font.size=9 -e bash -c 'fastfetch; read -n 1 -s' ;;
|
||||||
*system*) show_system_menu ;;
|
*system*) show_system_menu ;;
|
||||||
esac
|
esac
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,13 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
if (($# == 0)); then
|
|
||||||
echo "Usage: omarchy-notification-dismiss <summary>"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Find the first notification whose 'summary' matches the regex in $1
|
|
||||||
notification_id=$(makoctl list | grep -F "$1" | head -n1 | sed -E 's/^Notification ([0-9]+):.*/\1/')
|
|
||||||
|
|
||||||
if [[ -n $notification_id ]]; then
|
|
||||||
makoctl dismiss -n $notification_id
|
|
||||||
fi
|
|
||||||
@@ -2,15 +2,13 @@
|
|||||||
|
|
||||||
fzf_args=(
|
fzf_args=(
|
||||||
--multi
|
--multi
|
||||||
--preview 'yay -Siia {1}'
|
--preview 'yay -Sii {1}'
|
||||||
--preview-label='alt-p: toggle description, alt-b/B: toggle PKGBUILD, alt-j/k: scroll, tab: multi-select, F11: maximize'
|
--preview-label='alt-p: toggle description, alt-j/k: scroll, tab: multi-select, F11: maximize'
|
||||||
--preview-label-pos='bottom'
|
--preview-label-pos='bottom'
|
||||||
--preview-window 'down:65%:wrap'
|
--preview-window 'down:65%:wrap'
|
||||||
--bind 'alt-p:toggle-preview'
|
--bind 'alt-p:toggle-preview'
|
||||||
--bind 'alt-d:preview-half-page-down,alt-u:preview-half-page-up'
|
--bind 'alt-d:preview-half-page-down,alt-u:preview-half-page-up'
|
||||||
--bind 'alt-k:preview-up,alt-j:preview-down'
|
--bind 'alt-k:preview-up,alt-j:preview-down'
|
||||||
--bind 'alt-b:change-preview:yay -Gpa {1} | tail -n +5'
|
|
||||||
--bind 'alt-B:change-preview:yay -Siia {1}'
|
|
||||||
--color 'pointer:green,marker:green'
|
--color 'pointer:green,marker:green'
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
echo -e "Unblocking bluetooth...\n"
|
|
||||||
rfkill unblock bluetooth
|
rfkill unblock bluetooth
|
||||||
rfkill list bluetooth
|
rfkill list bluetooth
|
||||||
|
|||||||
@@ -1,4 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
echo -e "Restarting pirewire audio service...\n"
|
|
||||||
systemctl --user restart pipewire.service
|
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
pkill walker
|
pkill walker
|
||||||
# FIXME: Just deal with the memory leak for now.
|
# FIXME: Reenable the walker service once the memory leak has been fixed
|
||||||
# See https://github.com/basecamp/omarchy/issues/698
|
# See https://github.com/basecamp/omarchy/issues/698
|
||||||
setsid uwsm app -- walker --gapplication-service &
|
# setsid uwsm app -- walker --gapplication-service &
|
||||||
echo # Always end in success so we don't terminate further running
|
echo # Always end in success so we don't terminate further running
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
echo -e "Unblocking wifi...\n"
|
|
||||||
rfkill unblock wifi
|
rfkill unblock wifi
|
||||||
rfkill list wifi
|
rfkill list wifi
|
||||||
|
|||||||
@@ -20,19 +20,52 @@ fi
|
|||||||
# Update theme symlinks
|
# Update theme symlinks
|
||||||
ln -nsf "$THEME_PATH" "$CURRENT_THEME_DIR"
|
ln -nsf "$THEME_PATH" "$CURRENT_THEME_DIR"
|
||||||
|
|
||||||
# Change background with theme
|
# Change gnome modes
|
||||||
omarchy-theme-bg-next
|
if [[ -f ~/.config/omarchy/current/theme/light.mode ]]; then
|
||||||
|
gsettings set org.gnome.desktop.interface color-scheme "prefer-light"
|
||||||
|
gsettings set org.gnome.desktop.interface gtk-theme "Adwaita"
|
||||||
|
else
|
||||||
|
gsettings set org.gnome.desktop.interface color-scheme "prefer-dark"
|
||||||
|
gsettings set org.gnome.desktop.interface gtk-theme "Adwaita-dark"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Change gnome icon theme color
|
||||||
|
if [[ -f ~/.config/omarchy/current/theme/icons.theme ]]; then
|
||||||
|
gsettings set org.gnome.desktop.interface icon-theme "$(<~/.config/omarchy/current/theme/icons.theme)"
|
||||||
|
else
|
||||||
|
gsettings set org.gnome.desktop.interface icon-theme "Yaru-blue"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Change browser colors via policies
|
||||||
|
if omarchy-cmd-present chromium || omarchy-cmd-present brave; then
|
||||||
|
if [[ -f ~/.config/omarchy/current/theme/chromium.theme ]]; then
|
||||||
|
rgb=$(<~/.config/omarchy/current/theme/chromium.theme)
|
||||||
|
THEME_HEX_COLOR=$(printf '#%02x%02x%02x' ${rgb//,/ })
|
||||||
|
else
|
||||||
|
# Use a default, neutral grey if theme doesn't have a color
|
||||||
|
THEME_HEX_COLOR="#1c2027"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if omarchy-cmd-present chromium; then
|
||||||
|
echo "{\"BrowserThemeColor\": \"$THEME_HEX_COLOR\"}" | tee "/etc/chromium/policies/managed/color.json" >/dev/null
|
||||||
|
chromium --refresh-platform-policy --no-startup-window
|
||||||
|
fi
|
||||||
|
|
||||||
|
if omarchy-cmd-present brave; then
|
||||||
|
echo "{\"BrowserThemeColor\": \"$THEME_HEX_COLOR\"}" | tee "/etc/brave/policies/managed/color.json" >/dev/null
|
||||||
|
brave --refresh-platform-policy --no-startup-window
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Trigger alacritty config reload
|
||||||
|
touch "$HOME/.config/alacritty/alacritty.toml"
|
||||||
|
|
||||||
# Restart components to apply new theme
|
# Restart components to apply new theme
|
||||||
|
pkill -SIGUSR2 btop
|
||||||
omarchy-restart-waybar
|
omarchy-restart-waybar
|
||||||
omarchy-restart-swayosd
|
omarchy-restart-swayosd
|
||||||
hyprctl reload
|
|
||||||
pkill -SIGUSR2 btop
|
|
||||||
makoctl reload
|
makoctl reload
|
||||||
|
hyprctl reload
|
||||||
|
|
||||||
# Change gnome, browser, vscode themes
|
# Set new background
|
||||||
omarchy-theme-set-terminal
|
omarchy-theme-bg-next
|
||||||
omarchy-theme-set-gnome
|
|
||||||
omarchy-theme-set-eza
|
|
||||||
omarchy-theme-set-browser
|
|
||||||
omarchy-theme-set-vscode
|
|
||||||
|
|||||||
@@ -1,23 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
CHROMIUM_THEME=~/.config/omarchy/current/theme/chromium.theme
|
|
||||||
|
|
||||||
if omarchy-cmd-present chromium || omarchy-cmd-present brave; then
|
|
||||||
if [[ -f $CHROMIUM_THEME ]]; then
|
|
||||||
rgb=$(<$CHROMIUM_THEME)
|
|
||||||
THEME_HEX_COLOR=$(printf '#%02x%02x%02x' ${rgb//,/ })
|
|
||||||
else
|
|
||||||
# Use a default, neutral grey if theme doesn't have a color
|
|
||||||
THEME_HEX_COLOR="#1c2027"
|
|
||||||
fi
|
|
||||||
|
|
||||||
if omarchy-cmd-present chromium; then
|
|
||||||
echo "{\"BrowserThemeColor\": \"$THEME_HEX_COLOR\"}" | tee "/etc/chromium/policies/managed/color.json" >/dev/null
|
|
||||||
chromium --refresh-platform-policy --no-startup-window
|
|
||||||
fi
|
|
||||||
|
|
||||||
if omarchy-cmd-present brave; then
|
|
||||||
echo "{\"BrowserThemeColor\": \"$THEME_HEX_COLOR\"}" | tee "/etc/brave/policies/managed/color.json" >/dev/null
|
|
||||||
brave --refresh-platform-policy --no-startup-window
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
@@ -1,7 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
if [ -f ~/.config/omarchy/current/theme/eza.yml ]; then
|
|
||||||
ln -snf ~/.config/omarchy/current/theme/eza.yml ~/.config/eza/theme.yml
|
|
||||||
else
|
|
||||||
rm -f ~/.config/eza/theme.yml
|
|
||||||
fi
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
# Change gnome modes
|
|
||||||
if [[ -f ~/.config/omarchy/current/theme/light.mode ]]; then
|
|
||||||
gsettings set org.gnome.desktop.interface color-scheme "prefer-light"
|
|
||||||
gsettings set org.gnome.desktop.interface gtk-theme "Adwaita"
|
|
||||||
else
|
|
||||||
gsettings set org.gnome.desktop.interface color-scheme "prefer-dark"
|
|
||||||
gsettings set org.gnome.desktop.interface gtk-theme "Adwaita-dark"
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Change gnome icon theme color
|
|
||||||
GNOME_ICONS_THEME=~/.config/omarchy/current/theme/icons.theme
|
|
||||||
if [[ -f $GNOME_ICONS_THEME ]]; then
|
|
||||||
gsettings set org.gnome.desktop.interface icon-theme "$(<$GNOME_ICONS_THEME)"
|
|
||||||
else
|
|
||||||
gsettings set org.gnome.desktop.interface icon-theme "Yaru-blue"
|
|
||||||
fi
|
|
||||||
@@ -1,7 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
case "$TERMINAL" in
|
|
||||||
"alacritty") touch ~/.config/alacritty/alacritty.toml ;;
|
|
||||||
"kitty") killall -SIGUSR1 kitty ;;
|
|
||||||
"ghostty") killall -SIGUSR2 ghostty ;;
|
|
||||||
esac
|
|
||||||
@@ -1,46 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
# Note: We cannot use `jq` to update settings.json because it’s JSONC (allows comments),
|
|
||||||
# which jq doesn’t support.
|
|
||||||
|
|
||||||
VS_CODE_THEME="$HOME/.config/omarchy/current/theme/vscode.json"
|
|
||||||
VS_CODE_SETTINGS="$HOME/.config/Code/User/settings.json"
|
|
||||||
VS_CODE_SKIP_FLAG="$HOME/.local/state/omarchy/toggles/skip-vscode-theme-changes"
|
|
||||||
|
|
||||||
if omarchy-cmd-present code && [[ ! -f "$VS_CODE_SKIP_FLAG" ]]; then
|
|
||||||
if [[ -f "$VS_CODE_THEME" ]]; then
|
|
||||||
theme_name=$(jq -r '.name' "$VS_CODE_THEME")
|
|
||||||
extension=$(jq -r '.extension' "$VS_CODE_THEME")
|
|
||||||
|
|
||||||
# Install VS Code theme extension
|
|
||||||
if [[ -n "$extension" ]] && ! code --list-extensions | grep -Fxq "$extension"; then
|
|
||||||
notify-send " Installing VS Code theme for $theme_name"
|
|
||||||
code --install-extension "$extension" >/dev/null
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Create config file if there isn't already one
|
|
||||||
mkdir -p "$(dirname "$VS_CODE_SETTINGS")"
|
|
||||||
if [[ ! -f "$VS_CODE_SETTINGS" ]]; then
|
|
||||||
printf '{\n}\n' > "$VS_CODE_SETTINGS"
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Create a `workbench.colorTheme` entry in settings.
|
|
||||||
if ! grep -q '"workbench.colorTheme"' "$VS_CODE_SETTINGS"; then
|
|
||||||
# Insert `"workbench.colorTheme": "",` immediately after the first `{`
|
|
||||||
# Use sed's first-match range (0,/{/) to only replace the first `{`
|
|
||||||
sed -i --follow-symlinks -E '0,/\{/{s/\{/{\
|
|
||||||
"workbench.colorTheme": "",/}' "$VS_CODE_SETTINGS"
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Update theme
|
|
||||||
sed -i --follow-symlinks -E \
|
|
||||||
"s/(\"workbench.colorTheme\"[[:space:]]*:[[:space:]]*\")[^\"]*(\")/\1$theme_name\2/" \
|
|
||||||
"$VS_CODE_SETTINGS"
|
|
||||||
else
|
|
||||||
# Remove theme from settings.json when the theme doesn't have vscode support
|
|
||||||
if [[ -f "$VS_CODE_SETTINGS" ]]; then
|
|
||||||
sed -i --follow-symlinks -E '/"workbench\.colorTheme"[[:space:]]*:[^,}]*,?/d' "$VS_CODE_SETTINGS"
|
|
||||||
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
@@ -43,7 +43,7 @@ cat >"$DESKTOP_FILE" <<EOF
|
|||||||
Version=1.0
|
Version=1.0
|
||||||
Name=$APP_NAME
|
Name=$APP_NAME
|
||||||
Comment=$APP_NAME
|
Comment=$APP_NAME
|
||||||
Exec=$TERMINAL --class $APP_CLASS -e $APP_EXEC
|
Exec=alacritty --class $APP_CLASS -e $APP_EXEC
|
||||||
Terminal=false
|
Terminal=false
|
||||||
Type=Application
|
Type=Application
|
||||||
Icon=$ICON_PATH
|
Icon=$ICON_PATH
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ DESKTOP_DIR="$HOME/.local/share/applications/"
|
|||||||
if [ "$#" -eq 0 ]; then
|
if [ "$#" -eq 0 ]; then
|
||||||
# Find all TUIs
|
# Find all TUIs
|
||||||
while IFS= read -r -d '' file; do
|
while IFS= read -r -d '' file; do
|
||||||
if grep -q '^Exec=.*$TERMINAL.*-e' "$file"; then
|
if grep -q '^Exec=.*alacritty.*-e' "$file"; then
|
||||||
TUIS+=("$(basename "${file%.desktop}")")
|
TUIS+=("$(basename "${file%.desktop}")")
|
||||||
fi
|
fi
|
||||||
done < <(find "$DESKTOP_DIR" -name '*.desktop' -print0)
|
done < <(find "$DESKTOP_DIR" -name '*.desktop' -print0)
|
||||||
|
|||||||
@@ -4,4 +4,7 @@ set -e
|
|||||||
|
|
||||||
omarchy-snapshot create || [ $? -eq 127 ]
|
omarchy-snapshot create || [ $? -eq 127 ]
|
||||||
omarchy-update-git
|
omarchy-update-git
|
||||||
omarchy-update-perform
|
omarchy-migrate
|
||||||
|
omarchy-update-system-pkgs
|
||||||
|
omarchy-update-restart
|
||||||
|
omarchy-update-available-reset
|
||||||
|
|||||||
@@ -1,33 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
set -e
|
|
||||||
|
|
||||||
if (($# == 0)); then
|
|
||||||
echo "Usage: omarchy-verion-branch-set [master|dev]"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
branch="$1"
|
|
||||||
|
|
||||||
# Snapshot before switching branch
|
|
||||||
omarchy-snapshot create || [ $? -eq 127 ]
|
|
||||||
|
|
||||||
if ! git -C "$OMARCHY_PATH" diff --quiet || ! git -C "$OMARCHY_PATH" diff --cached --quiet; then
|
|
||||||
stashed=true
|
|
||||||
git -C "$OMARCHY_PATH" stash push -u -m "Autostash before switching to $branch"
|
|
||||||
else
|
|
||||||
stashed=false
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Switch branches
|
|
||||||
git -C "$OMARCHY_PATH" switch "$branch"
|
|
||||||
|
|
||||||
# Reapply stash if we made one
|
|
||||||
if [[ $stashed == true ]]; then
|
|
||||||
if ! git -C "$OMARCHY_PATH" stash pop; then
|
|
||||||
echo "⚠️ Conflicts when applying stash — stash kept"
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Update the system from the new branch
|
|
||||||
omarchy-update-perform
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
set -e
|
|
||||||
|
|
||||||
omarchy-update-available-reset
|
|
||||||
omarchy-update-system-pkgs
|
|
||||||
omarchy-migrate
|
|
||||||
omarchy-update-restart
|
|
||||||
@@ -1,11 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
url="$1"
|
|
||||||
web_url="https://app.hey.com"
|
|
||||||
|
|
||||||
# Handle mailto: URLs
|
|
||||||
if [[ $url =~ ^mailto: ]]; then
|
|
||||||
email=$(echo "$url" | sed 's/mailto://')
|
|
||||||
web_url="https://app.hey.com/messages/new?to=$email"
|
|
||||||
fi
|
|
||||||
|
|
||||||
exec omarchy-launch-webapp "$web_url"
|
|
||||||
@@ -24,9 +24,7 @@ if [[ -z "$APP_NAME" || -z "$APP_URL" || -z "$ICON_REF" ]]; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# Refer to local icon or fetch remotely from URL
|
# Refer to local icon or fetch remotely from URL
|
||||||
ICON_DIR="$HOME/.local/share/applications/icons"
|
|
||||||
if [[ $ICON_REF =~ ^https?:// ]]; then
|
if [[ $ICON_REF =~ ^https?:// ]]; then
|
||||||
ICON_PATH="$ICON_DIR/$APP_NAME.png"
|
|
||||||
if curl -sL -o "$ICON_PATH" "$ICON_REF"; then
|
if curl -sL -o "$ICON_PATH" "$ICON_REF"; then
|
||||||
ICON_PATH="$ICON_DIR/$APP_NAME.png"
|
ICON_PATH="$ICON_DIR/$APP_NAME.png"
|
||||||
else
|
else
|
||||||
@@ -34,7 +32,7 @@ if [[ $ICON_REF =~ ^https?:// ]]; then
|
|||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
ICON_PATH="$ICON_DIR/$ICON_REF"
|
ICON_PATH="$HOME/.local/share/applications/icons/$ICON_REF"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Use custom exec if provided, otherwise default behavior
|
# Use custom exec if provided, otherwise default behavior
|
||||||
|
|||||||
2
boot.sh
2
boot.sh
@@ -29,7 +29,7 @@ git clone "https://github.com/${OMARCHY_REPO}.git" ~/.local/share/omarchy >/dev/
|
|||||||
# Use custom branch if instructed, otherwise default to master
|
# Use custom branch if instructed, otherwise default to master
|
||||||
OMARCHY_REF="${OMARCHY_REF:-master}"
|
OMARCHY_REF="${OMARCHY_REF:-master}"
|
||||||
if [[ $OMARCHY_REF != "master" ]]; then
|
if [[ $OMARCHY_REF != "master" ]]; then
|
||||||
echo -e "\e[32mUsing branch: $OMARCHY_REF\e[0m"
|
echo -e "\eUsing branch: $OMARCHY_REF"
|
||||||
cd ~/.local/share/omarchy
|
cd ~/.local/share/omarchy
|
||||||
git fetch origin "${OMARCHY_REF}" && git checkout "${OMARCHY_REF}"
|
git fetch origin "${OMARCHY_REF}" && git checkout "${OMARCHY_REF}"
|
||||||
cd -
|
cd -
|
||||||
|
|||||||
@@ -1,4 +1,3 @@
|
|||||||
--ozone-platform=wayland
|
--ozone-platform=wayland
|
||||||
--ozone-platform-hint=wayland
|
--ozone-platform-hint=wayland
|
||||||
--enable-features=TouchpadOverscrollHistoryNavigation
|
--enable-features=TouchpadOverscrollHistoryNavigation
|
||||||
--load-extension=~/.local/share/omarchy/default/chromium/extensions/copy-url
|
|
||||||
|
|||||||
@@ -1,21 +0,0 @@
|
|||||||
# Dynamic theme colors
|
|
||||||
config-file = ?"~/.config/omarchy/current/theme/ghostty.conf"
|
|
||||||
|
|
||||||
# Font
|
|
||||||
font-family = "CaskaydiaMono Nerd Font"
|
|
||||||
font-style = Regular
|
|
||||||
font-size = 9
|
|
||||||
|
|
||||||
# Window
|
|
||||||
window-padding-x = 14
|
|
||||||
window-padding-y = 14
|
|
||||||
confirm-close-surface=false
|
|
||||||
resize-overlay = never
|
|
||||||
|
|
||||||
# Cursor stlying
|
|
||||||
cursor-style = "block"
|
|
||||||
cursor-style-blink = false
|
|
||||||
shell-integration-features = no-cursor
|
|
||||||
|
|
||||||
# Keyboard bindings
|
|
||||||
keybind = f11=toggle_fullscreen
|
|
||||||
@@ -1,17 +1,17 @@
|
|||||||
# Application bindings
|
# Application bindings
|
||||||
$terminal = uwsm app -- $TERMINAL
|
$terminal = uwsm app -- alacritty
|
||||||
$browser = omarchy-launch-browser
|
$browser = omarchy-launch-browser
|
||||||
|
|
||||||
bindd = SUPER, return, Terminal, exec, $terminal --working-directory="$(omarchy-cmd-terminal-cwd)"
|
bindd = SUPER, return, Terminal, exec, $terminal --working-directory="$(omarchy-cmd-terminal-cwd)"
|
||||||
bindd = SUPER, F, File manager, exec, uwsm app -- nautilus --new-window
|
bindd = SUPER, F, File manager, exec, uwsm app -- nautilus --new-window
|
||||||
bindd = SUPER, B, Browser, exec, $browser
|
bindd = SUPER, B, Browser, exec, $browser
|
||||||
bindd = SUPER SHIFT, B, Browser (private), exec, $browser --private
|
bindd = SUPER SHIFT, B, Browser (private), exec, $browser --private
|
||||||
bindd = SUPER, M, Music, exec, omarchy-launch-or-focus spotify
|
bindd = SUPER, M, Music, exec, uwsm app -- spotify
|
||||||
bindd = SUPER, N, Editor, exec, omarchy-launch-editor
|
bindd = SUPER, N, Neovim, exec, $terminal -e nvim
|
||||||
bindd = SUPER, T, Activity, exec, $terminal -e btop
|
bindd = SUPER, T, Activity, exec, $terminal -e btop
|
||||||
bindd = SUPER, D, Docker, exec, $terminal -e lazydocker
|
bindd = SUPER, D, Docker, exec, $terminal -e lazydocker
|
||||||
bindd = SUPER, G, Signal, exec, omarchy-launch-or-focus signal "uwsm app -- signal-desktop"
|
bindd = SUPER, G, Signal, exec, uwsm app -- signal-desktop
|
||||||
bindd = SUPER, O, Obsidian, exec, omarchy-launch-or-focus obsidian "uwsm app -- obsidian -disable-gpu --enable-wayland-ime"
|
bindd = SUPER, O, Obsidian, exec, uwsm app -- obsidian -disable-gpu
|
||||||
bindd = SUPER, slash, Passwords, exec, uwsm app -- 1password
|
bindd = SUPER, slash, Passwords, exec, uwsm app -- 1password
|
||||||
|
|
||||||
# If your web app url contains #, type it as ## to prevent hyperland treat it as comments
|
# If your web app url contains #, type it as ## to prevent hyperland treat it as comments
|
||||||
@@ -19,9 +19,9 @@ bindd = SUPER, A, ChatGPT, exec, omarchy-launch-webapp "https://chatgpt.com"
|
|||||||
bindd = SUPER SHIFT, A, Grok, exec, omarchy-launch-webapp "https://grok.com"
|
bindd = SUPER SHIFT, A, Grok, exec, omarchy-launch-webapp "https://grok.com"
|
||||||
bindd = SUPER, C, Calendar, exec, omarchy-launch-webapp "https://app.hey.com/calendar/weeks/"
|
bindd = SUPER, C, Calendar, exec, omarchy-launch-webapp "https://app.hey.com/calendar/weeks/"
|
||||||
bindd = SUPER, E, Email, exec, omarchy-launch-webapp "https://app.hey.com"
|
bindd = SUPER, E, Email, exec, omarchy-launch-webapp "https://app.hey.com"
|
||||||
bindd = SUPER, Y, YouTube, exec, omarchy-launch-or-focus-webapp YouTube "https://youtube.com/"
|
bindd = SUPER, Y, YouTube, exec, omarchy-launch-webapp "https://youtube.com/"
|
||||||
bindd = SUPER SHIFT, G, WhatsApp, exec, omarchy-launch-or-focus-webapp WhatsApp "https://web.whatsapp.com/"
|
bindd = SUPER SHIFT, G, WhatsApp, exec, omarchy-launch-webapp "https://web.whatsapp.com/"
|
||||||
bindd = SUPER ALT, G, Google Messages, exec, omarchy-launch-or-focus-webapp "Google Messages" "https://messages.google.com/web/conversations"
|
bindd = SUPER ALT, G, Google Messages, exec, omarchy-launch-webapp "https://messages.google.com/web/conversations"
|
||||||
bindd = SUPER, X, X, exec, omarchy-launch-webapp "https://x.com/"
|
bindd = SUPER, X, X, exec, omarchy-launch-webapp "https://x.com/"
|
||||||
bindd = SUPER SHIFT, X, X Post, exec, omarchy-launch-webapp "https://x.com/compose/post"
|
bindd = SUPER SHIFT, X, X Post, exec, omarchy-launch-webapp "https://x.com/compose/post"
|
||||||
|
|
||||||
|
|||||||
@@ -1,2 +1,3 @@
|
|||||||
# Extra env variables
|
# Extra env variables
|
||||||
|
# Note: You must relaunch Hyprland after changing envs (use Super+Esc, then Relaunch)
|
||||||
# env = MY_GLOBAL_ENV,setting
|
# env = MY_GLOBAL_ENV,setting
|
||||||
|
|||||||
@@ -27,9 +27,8 @@ input {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
# Scroll nicely in the terminal
|
# Scroll faster in the terminal
|
||||||
windowrule = scrolltouchpad 1.5, class:(Alacritty|kitty)
|
windowrule = scrolltouchpad 1.5, class:Alacritty
|
||||||
windowrule = scrolltouchpad 0.2, class:com.mitchellh.ghostty
|
|
||||||
|
|
||||||
# Enable touchpad gestures for changing workspaces
|
# Enable touchpad gestures for changing workspaces
|
||||||
# See https://wiki.hyprland.org/Configuring/Gestures/
|
# See https://wiki.hyprland.org/Configuring/Gestures/
|
||||||
|
|||||||
@@ -1,30 +0,0 @@
|
|||||||
include ~/.config/omarchy/current/theme/kitty.conf
|
|
||||||
|
|
||||||
# Font
|
|
||||||
font_family CaskaydiaMono Nerd Font
|
|
||||||
bold_italic_font auto
|
|
||||||
font_size 9.0
|
|
||||||
|
|
||||||
# Window
|
|
||||||
window_padding_width 14
|
|
||||||
window_padding_height 14
|
|
||||||
hide_window_decorations yes
|
|
||||||
show_window_resize_notification no
|
|
||||||
confirm_os_window_close 0
|
|
||||||
|
|
||||||
# Keybindings
|
|
||||||
map F11 toggle_fullscreen
|
|
||||||
|
|
||||||
# Allow remote access
|
|
||||||
single_instance yes
|
|
||||||
allow_remote_control yes
|
|
||||||
|
|
||||||
# Aesthetics
|
|
||||||
cursor_shape block
|
|
||||||
enable_audio_bell no
|
|
||||||
|
|
||||||
# Minimal Tab bar styling
|
|
||||||
tab_bar_edge bottom
|
|
||||||
tab_bar_style powerline
|
|
||||||
tab_powerline_style slanted
|
|
||||||
tab_title_template {title}{' :{}:'.format(num_windows) if num_windows > 1 else ''}
|
|
||||||
@@ -1,4 +0,0 @@
|
|||||||
# Changes require a relaunch of Hyprland to take effect.
|
|
||||||
|
|
||||||
export TERMINAL=alacritty
|
|
||||||
export EDITOR=nvim
|
|
||||||
@@ -1,11 +1,7 @@
|
|||||||
# Changes require a relaunch of Hyprland to take effect.
|
|
||||||
|
|
||||||
# Ensure Omarchy bins are in the path
|
|
||||||
export OMARCHY_PATH=$HOME/.local/share/omarchy
|
export OMARCHY_PATH=$HOME/.local/share/omarchy
|
||||||
export PATH=$OMARCHY_PATH/bin/:$PATH
|
export PATH=$OMARCHY_PATH/bin/:$PATH
|
||||||
|
export TERMINAL=alacritty
|
||||||
|
|
||||||
# Set default terminal and editor
|
if command -v mise &> /dev/null; then
|
||||||
source ~/.config/uwsm/default
|
eval "$(mise activate bash)"
|
||||||
|
fi
|
||||||
# Activate mise if present on the system
|
|
||||||
omarchy-cmd-present mise && eval "$(mise activate bash)"
|
|
||||||
|
|||||||
@@ -55,7 +55,7 @@
|
|||||||
"cpu": {
|
"cpu": {
|
||||||
"interval": 5,
|
"interval": 5,
|
||||||
"format": "",
|
"format": "",
|
||||||
"on-click": "$TERMINAL -e btop"
|
"on-click": "alacritty -e btop"
|
||||||
},
|
},
|
||||||
"clock": {
|
"clock": {
|
||||||
"format": "{:L%A %H:%M}",
|
"format": "{:L%A %H:%M}",
|
||||||
@@ -74,7 +74,7 @@
|
|||||||
"tooltip-format-disconnected": "Disconnected",
|
"tooltip-format-disconnected": "Disconnected",
|
||||||
"interval": 3,
|
"interval": 3,
|
||||||
"spacing": 1,
|
"spacing": 1,
|
||||||
"on-click": "omarchy-launch-wifi"
|
"on-click": "alacritty --class=Impala -e impala"
|
||||||
},
|
},
|
||||||
"battery": {
|
"battery": {
|
||||||
"format": "{capacity}% {icon}",
|
"format": "{capacity}% {icon}",
|
||||||
@@ -104,7 +104,7 @@
|
|||||||
},
|
},
|
||||||
"pulseaudio": {
|
"pulseaudio": {
|
||||||
"format": "{icon}",
|
"format": "{icon}",
|
||||||
"on-click": "$TERMINAL --class=Wiremix -e wiremix",
|
"on-click": "alacritty --class=Wiremix -e wiremix",
|
||||||
"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,
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
# Editor used by CLI
|
# Editor used by CLI
|
||||||
|
export EDITOR="nvim"
|
||||||
export SUDO_EDITOR="$EDITOR"
|
export SUDO_EDITOR="$EDITOR"
|
||||||
export BAT_THEME=ansi
|
export BAT_THEME=ansi
|
||||||
|
|||||||
@@ -6,3 +6,9 @@ source ~/.local/share/omarchy/default/bash/rc
|
|||||||
#
|
#
|
||||||
# Make an alias for invoking commands you use constantly
|
# Make an alias for invoking commands you use constantly
|
||||||
# alias p='python'
|
# alias p='python'
|
||||||
|
#
|
||||||
|
# Use VSCode instead of neovim as your default editor
|
||||||
|
# export EDITOR="code"
|
||||||
|
#
|
||||||
|
# Set a custom prompt with the directory revealed (alternatively use https://starship.rs)
|
||||||
|
# PS1="\W \[\e]0;\w\a\]$PS1"
|
||||||
|
|||||||
@@ -1,21 +0,0 @@
|
|||||||
chrome.commands.onCommand.addListener((command) => {
|
|
||||||
if (command === 'copy-url') {
|
|
||||||
chrome.tabs.query({ active: true, currentWindow: true }, (tabs) => {
|
|
||||||
const currentTab = tabs[0];
|
|
||||||
|
|
||||||
chrome.scripting.executeScript({
|
|
||||||
target: { tabId: currentTab.id },
|
|
||||||
func: () => {
|
|
||||||
navigator.clipboard.writeText(window.location.href);
|
|
||||||
}
|
|
||||||
}).then(() => {
|
|
||||||
chrome.notifications.create({
|
|
||||||
type: 'basic',
|
|
||||||
iconUrl: 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mP8/5+hHgAHggJ/PchI7wAAAABJRU5ErkJggg==',
|
|
||||||
title: ' URL copied to clipboard',
|
|
||||||
message: ''
|
|
||||||
});
|
|
||||||
});
|
|
||||||
});
|
|
||||||
}
|
|
||||||
});
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../../icon.png
|
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
{
|
|
||||||
"manifest_version": 4,
|
|
||||||
"name": "Copy URL",
|
|
||||||
"version": "1.0",
|
|
||||||
"description": "Copy current URL to clipboard, this extension is installed by Omarchy",
|
|
||||||
"permissions": ["activeTab", "scripting", "notifications"],
|
|
||||||
"icons": {
|
|
||||||
"16": "icon.png",
|
|
||||||
"48": "icon.png",
|
|
||||||
"128": "icon.png"
|
|
||||||
},
|
|
||||||
"commands": {
|
|
||||||
"copy-url": {
|
|
||||||
"suggested_key": {"default": "Alt+Shift+L"},
|
|
||||||
"description": "Copy URL"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"background": {"service_worker": "background.js"}
|
|
||||||
}
|
|
||||||
@@ -4,11 +4,9 @@ source = ~/.local/share/omarchy/default/hypr/apps/bitwarden.conf
|
|||||||
source = ~/.local/share/omarchy/default/hypr/apps/browser.conf
|
source = ~/.local/share/omarchy/default/hypr/apps/browser.conf
|
||||||
source = ~/.local/share/omarchy/default/hypr/apps/hyprshot.conf
|
source = ~/.local/share/omarchy/default/hypr/apps/hyprshot.conf
|
||||||
source = ~/.local/share/omarchy/default/hypr/apps/jetbrains.conf
|
source = ~/.local/share/omarchy/default/hypr/apps/jetbrains.conf
|
||||||
source = ~/.local/share/omarchy/default/hypr/apps/localsend.conf
|
|
||||||
source = ~/.local/share/omarchy/default/hypr/apps/pip.conf
|
source = ~/.local/share/omarchy/default/hypr/apps/pip.conf
|
||||||
source = ~/.local/share/omarchy/default/hypr/apps/qemu.conf
|
source = ~/.local/share/omarchy/default/hypr/apps/qemu.conf
|
||||||
source = ~/.local/share/omarchy/default/hypr/apps/retroarch.conf
|
source = ~/.local/share/omarchy/default/hypr/apps/retroarch.conf
|
||||||
source = ~/.local/share/omarchy/default/hypr/apps/steam.conf
|
source = ~/.local/share/omarchy/default/hypr/apps/steam.conf
|
||||||
source = ~/.local/share/omarchy/default/hypr/apps/system.conf
|
source = ~/.local/share/omarchy/default/hypr/apps/system.conf
|
||||||
source = ~/.local/share/omarchy/default/hypr/apps/terminals.conf
|
|
||||||
source = ~/.local/share/omarchy/default/hypr/apps/walker.conf
|
source = ~/.local/share/omarchy/default/hypr/apps/walker.conf
|
||||||
|
|||||||
@@ -1,3 +0,0 @@
|
|||||||
# Float LocalSend and fzf file picker
|
|
||||||
windowrule = float, class:(Share|localsend)
|
|
||||||
windowrule = center, class:(Share|localsend)
|
|
||||||
@@ -4,7 +4,7 @@ windowrule = center, tag:floating-window
|
|||||||
windowrule = size 800 600, tag:floating-window
|
windowrule = size 800 600, tag:floating-window
|
||||||
|
|
||||||
windowrule = tag +floating-window, class:(blueberry.py|Impala|Wiremix|org.gnome.NautilusPreviewer|com.gabm.satty|Omarchy|About|TUI.float)
|
windowrule = tag +floating-window, class:(blueberry.py|Impala|Wiremix|org.gnome.NautilusPreviewer|com.gabm.satty|Omarchy|About|TUI.float)
|
||||||
windowrule = tag +floating-window, class:(xdg-desktop-portal-gtk|sublime_text|DesktopEditors|org.gnome.Nautilus), title:^(Open.*Files?|Open [F|f]older.*|Save.*Files?|Save.*As|Save|All Files)
|
windowrule = tag +floating-window, class:(xdg-desktop-portal-gtk|sublime_text|DesktopEditors|org.gnome.Nautilus), title:^(Open.*Files?|Open Folder|Save.*Files?|Save.*As|Save|All Files)
|
||||||
|
|
||||||
# Fullscreen screensaver
|
# Fullscreen screensaver
|
||||||
windowrule = fullscreen, class:Screensaver
|
windowrule = fullscreen, class:Screensaver
|
||||||
|
|||||||
@@ -1,2 +0,0 @@
|
|||||||
# Define terminal tag to style them uniformly
|
|
||||||
windowrule = tag +terminal, class:(Alacritty|kitty|com.mitchellh.ghostty)
|
|
||||||
@@ -4,7 +4,6 @@ exec-once = uwsm app -- waybar
|
|||||||
exec-once = uwsm app -- fcitx5
|
exec-once = uwsm app -- fcitx5
|
||||||
exec-once = uwsm app -- swaybg -i ~/.config/omarchy/current/background -m fill
|
exec-once = uwsm app -- swaybg -i ~/.config/omarchy/current/background -m fill
|
||||||
exec-once = uwsm app -- swayosd-server
|
exec-once = uwsm app -- swayosd-server
|
||||||
exec-once = uwsm app -- walker --gapplication-service &
|
|
||||||
exec-once = /usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1
|
exec-once = /usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1
|
||||||
exec-once = wl-clip-persist --clipboard regular --all-mime-type-regex '^(?!x-kde-passwordManagerHint).+'
|
exec-once = wl-clip-persist --clipboard regular --all-mime-type-regex '^(?!x-kde-passwordManagerHint).+'
|
||||||
exec-once = omarchy-cmd-first-run
|
exec-once = omarchy-cmd-first-run
|
||||||
|
|||||||
@@ -7,7 +7,6 @@ bindd = SUPER, J, Toggle split, togglesplit, # dwindle
|
|||||||
bindd = SUPER, P, Pseudo window, pseudo, # dwindle
|
bindd = SUPER, P, Pseudo window, pseudo, # dwindle
|
||||||
bindd = SUPER, V, Toggle floating, togglefloating,
|
bindd = SUPER, V, Toggle floating, togglefloating,
|
||||||
bindd = SHIFT, F11, Force full screen, fullscreen, 0
|
bindd = SHIFT, F11, Force full screen, fullscreen, 0
|
||||||
bindd = ALT, F11, Full width, fullscreen, 1
|
|
||||||
|
|
||||||
# Move focus with SUPER + arrow keys
|
# Move focus with SUPER + arrow keys
|
||||||
bindd = SUPER, left, Move focus left, movefocus, l
|
bindd = SUPER, left, Move focus left, movefocus, l
|
||||||
@@ -42,7 +41,6 @@ bindd = SUPER SHIFT, code:19, Move window to workspace 10, movetoworkspace, 10
|
|||||||
# Tab between workspaces
|
# Tab between workspaces
|
||||||
bindd = SUPER, TAB, Next workspace, workspace, e+1
|
bindd = SUPER, TAB, Next workspace, workspace, e+1
|
||||||
bindd = SUPER SHIFT, TAB, Previous workspace, workspace, e-1
|
bindd = SUPER SHIFT, TAB, Previous workspace, workspace, e-1
|
||||||
bindd = SUPER CTRL, TAB, Former workspace, workspace, previous
|
|
||||||
|
|
||||||
# Swap active window with the one next to it with SUPER + 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, left, Swap window to the left, swapwindow, l
|
||||||
|
|||||||
@@ -42,6 +42,3 @@ bindd = CTRL ALT SHIFT, PRINT, Screen record display with audio, exec, omarchy-c
|
|||||||
|
|
||||||
# Color picker
|
# Color picker
|
||||||
bindd = SUPER, PRINT, Color picker, exec, pkill hyprpicker || hyprpicker -a
|
bindd = SUPER, PRINT, Color picker, exec, pkill hyprpicker || hyprpicker -a
|
||||||
|
|
||||||
# File sharing
|
|
||||||
bindd = CTRL SUPER, S, Share, exec, omarchy-menu share
|
|
||||||
|
|||||||
@@ -87,8 +87,3 @@ misc {
|
|||||||
disable_splash_rendering = true
|
disable_splash_rendering = true
|
||||||
focus_on_activate = true
|
focus_on_activate = true
|
||||||
}
|
}
|
||||||
|
|
||||||
# https://wiki.hypr.land/Configuring/Variables/#cursor
|
|
||||||
cursor {
|
|
||||||
hide_on_key_press = true
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -16,7 +16,4 @@ invisible=false
|
|||||||
default-timeout=0
|
default-timeout=0
|
||||||
|
|
||||||
[summary~="Setup Wi-Fi"]
|
[summary~="Setup Wi-Fi"]
|
||||||
on-button-left=exec sh -c 'omarchy-notification-dismiss "Setup Wi-Fi"; omarchy-launch-wifi'
|
on-button-left=exec sh -c 'alacritty --class=Impala -e impala & makoctl dismiss -n "$id"'
|
||||||
|
|
||||||
[summary~="Update System"]
|
|
||||||
on-button-left=exec sh -c 'omarchy-notification-dismiss "Update System"; omarchy-launch-floating-terminal-with-presentation omarchy-update'
|
|
||||||
|
|||||||
@@ -9,8 +9,8 @@ run_logged $OMARCHY_INSTALL/config/increase-lockout-limit.sh
|
|||||||
run_logged $OMARCHY_INSTALL/config/ssh-flakiness.sh
|
run_logged $OMARCHY_INSTALL/config/ssh-flakiness.sh
|
||||||
run_logged $OMARCHY_INSTALL/config/detect-keyboard-layout.sh
|
run_logged $OMARCHY_INSTALL/config/detect-keyboard-layout.sh
|
||||||
run_logged $OMARCHY_INSTALL/config/xcompose.sh
|
run_logged $OMARCHY_INSTALL/config/xcompose.sh
|
||||||
|
run_logged $OMARCHY_INSTALL/config/mise-ruby.sh
|
||||||
run_logged $OMARCHY_INSTALL/config/mise-work.sh
|
run_logged $OMARCHY_INSTALL/config/mise-work.sh
|
||||||
run_logged $OMARCHY_INSTALL/config/fix-powerprofilesctl-shebang.sh
|
|
||||||
run_logged $OMARCHY_INSTALL/config/docker.sh
|
run_logged $OMARCHY_INSTALL/config/docker.sh
|
||||||
run_logged $OMARCHY_INSTALL/config/mimetypes.sh
|
run_logged $OMARCHY_INSTALL/config/mimetypes.sh
|
||||||
run_logged $OMARCHY_INSTALL/config/localdb.sh
|
run_logged $OMARCHY_INSTALL/config/localdb.sh
|
||||||
|
|||||||
@@ -1,2 +0,0 @@
|
|||||||
# Ensure we use system python3 and not mise's python3
|
|
||||||
sudo sed -i '/env python3/ c\#!/bin/python3' /usr/bin/powerprofilesctl
|
|
||||||
@@ -33,6 +33,3 @@ xdg-mime default mpv.desktop video/x-ms-asf
|
|||||||
xdg-mime default mpv.desktop video/x-ogm+ogg
|
xdg-mime default mpv.desktop video/x-ogm+ogg
|
||||||
xdg-mime default mpv.desktop video/x-theora+ogg
|
xdg-mime default mpv.desktop video/x-theora+ogg
|
||||||
xdg-mime default mpv.desktop application/ogg
|
xdg-mime default mpv.desktop application/ogg
|
||||||
|
|
||||||
# Use Hey for mailto: links
|
|
||||||
xdg-mime default HEY.desktop x-scheme-handler/mailto
|
|
||||||
|
|||||||
26
install/config/mise-ruby.sh
Normal file
26
install/config/mise-ruby.sh
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
# Install Ruby using gcc-14 for compatibility
|
||||||
|
mise settings set ruby.ruby_build_opts "CC=gcc-14 CXX=g++-14"
|
||||||
|
|
||||||
|
# Trust .ruby-version
|
||||||
|
mise settings add idiomatic_version_file_enable_tools ruby
|
||||||
|
|
||||||
|
# Install pre-built Ruby + Rails for x86_64
|
||||||
|
if [[ $(uname -m) == "x86_64" ]]; then
|
||||||
|
RUBY_VERSION="3.4.5"
|
||||||
|
RUBY_TARBALL="ruby-$RUBY_VERSION-rails-8.0.2.1-x86_64.tar.gz"
|
||||||
|
RUBY_URL="https://pkgs.omarchy.org/ruby/$RUBY_TARBALL"
|
||||||
|
MISE_RUBY_DIR="$HOME/.local/share/mise/installs/ruby"
|
||||||
|
OFFLINE_CACHE="/var/cache/omarchy/ruby"
|
||||||
|
|
||||||
|
mkdir -p "$MISE_RUBY_DIR"
|
||||||
|
|
||||||
|
if [[ -n ${OMARCHY_ONLINE_INSTALL:-} ]]; then
|
||||||
|
echo "Downloading pre-built Ruby $RUBY_VERSION..."
|
||||||
|
curl -fsSL "$RUBY_URL" | tar -xz -C "$MISE_RUBY_DIR"
|
||||||
|
else
|
||||||
|
echo "Installing Ruby from offline cache..."
|
||||||
|
tar -xzf "$OFFLINE_CACHE/$RUBY_TARBALL" -C "$MISE_RUBY_DIR"
|
||||||
|
fi
|
||||||
|
|
||||||
|
mise use --global "ruby@${RUBY_VERSION}"
|
||||||
|
fi
|
||||||
@@ -20,9 +20,6 @@ ln -snf ~/.config/omarchy/current/theme/btop.theme ~/.config/btop/themes/current
|
|||||||
mkdir -p ~/.config/mako
|
mkdir -p ~/.config/mako
|
||||||
ln -snf ~/.config/omarchy/current/theme/mako.ini ~/.config/mako/config
|
ln -snf ~/.config/omarchy/current/theme/mako.ini ~/.config/mako/config
|
||||||
|
|
||||||
mkdir -p ~/.config/eza
|
|
||||||
ln -snf ~/.config/omarchy/current/theme/eza.yml ~/.config/eza/theme.yml
|
|
||||||
|
|
||||||
# Add managed policy directories for Chromium and Brave for theme changes
|
# Add managed policy directories for Chromium and Brave for theme changes
|
||||||
sudo mkdir -p /etc/chromium/policies/managed
|
sudo mkdir -p /etc/chromium/policies/managed
|
||||||
sudo chmod a+rw /etc/chromium/policies/managed
|
sudo chmod a+rw /etc/chromium/policies/managed
|
||||||
|
|||||||
@@ -1,2 +1 @@
|
|||||||
notify-send " Update System" "When you have internet, click to update the system." -u critical
|
|
||||||
notify-send "👋 Welcome to Omarchy" "You're in for a great computing adventure. Have fun!" -t 30000
|
notify-send "👋 Welcome to Omarchy" "You're in for a great computing adventure. Have fun!" -t 30000
|
||||||
|
|||||||
@@ -126,11 +126,7 @@ catch_errors() {
|
|||||||
break
|
break
|
||||||
;;
|
;;
|
||||||
"View full log")
|
"View full log")
|
||||||
if command -v less &>/dev/null; then
|
|
||||||
less "$OMARCHY_INSTALL_LOG_FILE"
|
less "$OMARCHY_INSTALL_LOG_FILE"
|
||||||
else
|
|
||||||
tail "$OMARCHY_INSTALL_LOG_FILE"
|
|
||||||
fi
|
|
||||||
;;
|
;;
|
||||||
"Upload log for support")
|
"Upload log for support")
|
||||||
omarchy-upload-install-log
|
omarchy-upload-install-log
|
||||||
|
|||||||
@@ -98,8 +98,7 @@ fi
|
|||||||
|
|
||||||
# Add UKI entry to UEFI machines to skip bootloader showing on normal boot
|
# Add UKI entry to UEFI machines to skip bootloader showing on normal boot
|
||||||
if [[ -n $EFI ]] && efibootmgr &>/dev/null && ! efibootmgr | grep -q Omarchy &&
|
if [[ -n $EFI ]] && efibootmgr &>/dev/null && ! efibootmgr | grep -q Omarchy &&
|
||||||
! cat /sys/class/dmi/id/bios_vendor 2>/dev/null | grep -qi "American Megatrends" &&
|
! cat /sys/class/dmi/id/bios_vendor 2>/dev/null | grep -qi "American Megatrends"; then
|
||||||
! cat /sys/class/dmi/id/bios_vendor 2>/dev/null | grep -qi "Apple"; then
|
|
||||||
sudo efibootmgr --create \
|
sudo efibootmgr --create \
|
||||||
--disk "$(findmnt -n -o SOURCE /boot | sed 's/p\?[0-9]*$//')" \
|
--disk "$(findmnt -n -o SOURCE /boot | sed 's/p\?[0-9]*$//')" \
|
||||||
--part "$(findmnt -n -o SOURCE /boot | grep -o 'p\?[0-9]*$' | sed 's/^p//')" \
|
--part "$(findmnt -n -o SOURCE /boot | grep -o 'p\?[0-9]*$' | sed 's/^p//')" \
|
||||||
|
|||||||
@@ -31,6 +31,7 @@ fd
|
|||||||
ffmpegthumbnailer
|
ffmpegthumbnailer
|
||||||
fontconfig
|
fontconfig
|
||||||
fzf
|
fzf
|
||||||
|
gcc14
|
||||||
github-cli
|
github-cli
|
||||||
gnome-calculator
|
gnome-calculator
|
||||||
gnome-keyring
|
gnome-keyring
|
||||||
@@ -56,7 +57,6 @@ kvantum-qt5
|
|||||||
lazydocker
|
lazydocker
|
||||||
lazygit
|
lazygit
|
||||||
less
|
less
|
||||||
libyaml
|
|
||||||
libqalculate
|
libqalculate
|
||||||
libreoffice
|
libreoffice
|
||||||
llvm
|
llvm
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
omarchy-webapp-install "HEY" https://app.hey.com HEY.png "omarchy-webapp-handler-hey %u" "x-scheme-handler/mailto"
|
omarchy-webapp-install "HEY" https://app.hey.com HEY.png
|
||||||
omarchy-webapp-install "Basecamp" https://launchpad.37signals.com Basecamp.png
|
omarchy-webapp-install "Basecamp" https://launchpad.37signals.com Basecamp.png
|
||||||
omarchy-webapp-install "WhatsApp" https://web.whatsapp.com/ WhatsApp.png
|
omarchy-webapp-install "WhatsApp" https://web.whatsapp.com/ WhatsApp.png
|
||||||
omarchy-webapp-install "Google Photos" https://photos.google.com/ "Google Photos.png"
|
omarchy-webapp-install "Google Photos" https://photos.google.com/ "Google Photos.png"
|
||||||
|
|||||||
@@ -16,8 +16,6 @@ if [[ -f $OMARCHY_INSTALL_LOG_FILE ]] && grep -q "Total:" "$OMARCHY_INSTALL_LOG_
|
|||||||
if [ -n "$TOTAL_TIME" ]; then
|
if [ -n "$TOTAL_TIME" ]; then
|
||||||
echo_in_style "Installed in $TOTAL_TIME"
|
echo_in_style "Installed in $TOTAL_TIME"
|
||||||
fi
|
fi
|
||||||
else
|
|
||||||
echo_in_style "Finished installing"
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if sudo test -f /etc/sudoers.d/99-omarchy-installer; then
|
if sudo test -f /etc/sudoers.d/99-omarchy-installer; then
|
||||||
|
|||||||
3
migrations/1754265453.sh
Normal file
3
migrations/1754265453.sh
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
echo "Add chromium-flags.conf"
|
||||||
|
|
||||||
|
omarchy-refresh-config chromium-flags.conf
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
echo "Add eza themeing"
|
|
||||||
|
|
||||||
mkdir -p ~/.config/eza
|
|
||||||
|
|
||||||
if [ -f ~/.config/omarchy/current/theme/eza.yml ]; then
|
|
||||||
ln -snf ~/.config/omarchy/current/theme/eza.yml ~/.config/eza/theme.yml
|
|
||||||
fi
|
|
||||||
|
|
||||||
@@ -1,5 +1,3 @@
|
|||||||
echo "Remove opacity from alacritty.toml so Hyprland can control fully"
|
echo "Remove opacity from alacritty.toml so Hyprland can control fully"
|
||||||
|
|
||||||
if [[ -f ~/.config/alacritty/alacritty.toml ]]; then
|
|
||||||
sed -i '/opacity = 0.98/d' ~/.config/alacritty/alacritty.toml
|
sed -i '/opacity = 0.98/d' ~/.config/alacritty/alacritty.toml
|
||||||
fi
|
|
||||||
|
|||||||
@@ -1,3 +0,0 @@
|
|||||||
echo "Install Copy URL extension for Chromium"
|
|
||||||
|
|
||||||
omarchy-refresh-config chromium-flags.conf
|
|
||||||
4
migrations/1757273064.sh
Normal file
4
migrations/1757273064.sh
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
echo "Allow Image Viewer to see all images in directory and use arrow keys to navigate"
|
||||||
|
|
||||||
|
cp -f "$HOME/.local/share/omarchy/applications/imv.desktop" "$HOME/.local/share/applications/imv.desktop"
|
||||||
|
|
||||||
@@ -1,7 +0,0 @@
|
|||||||
echo "Obsidian should be using Wayland IME for better compatibility with fcitx5 and other languages"
|
|
||||||
|
|
||||||
if [[ -f ~/.config/hypr/bindings.conf ]]; then
|
|
||||||
sed -i '/^bindd = SUPER, O, Obsidian, exec, uwsm app -- obsidian -disable-gpu/{
|
|
||||||
/--enable-wayland-ime/! s/$/ --enable-wayland-ime/
|
|
||||||
}' ~/.config/hypr/bindings.conf
|
|
||||||
fi
|
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
echo "Switch select bindings to launch or focus mode"
|
|
||||||
|
|
||||||
if [[ -f ~/.config/hypr/bindings.conf ]]; then
|
|
||||||
sed -i '/SUPER, M, Music, exec/ c\bindd = SUPER, M, Music, exec, omarchy-launch-or-focus spotify' ~/.config/hypr/bindings.conf
|
|
||||||
sed -i '/SUPER, O, Obsidian, exec/ c\bindd = SUPER, O, Obsidian, exec, omarchy-launch-or-focus obsidian "uwsm app -- obsidian -disable-gpu --enable-wayland-ime"' ~/.config/hypr/bindings.conf
|
|
||||||
|
|
||||||
sed -i '/SUPER, G, Signal, exec/ c\bindd = SUPER, G, Signal, exec, omarchy-launch-or-focus signal "uwsm app -- signal-desktop"' ~/.config/hypr/bindings.conf
|
|
||||||
sed -i '/SUPER SHIFT, G, WhatsApp, exec/ c\bindd = SUPER SHIFT, G, WhatsApp, exec, omarchy-launch-or-focus-webapp WhatsApp "https://web.whatsapp.com/"' ~/.config/hypr/bindings.conf
|
|
||||||
sed -i '/SUPER ALT, G, Google Messages, exec/ c\bindd = SUPER ALT, G, Google Messages, exec, omarchy-launch-or-focus-webapp "Google Messages" "https://messages.google.com/web/conversations"' ~/.config/hypr/bindings.conf
|
|
||||||
fi
|
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
echo "Ensure .config/hypr/looknfeel.conf is available and included"
|
|
||||||
|
|
||||||
if [[ ! -f ~/.config/hypr/looknfeel.conf ]]; then
|
|
||||||
cp $OMARCHY_PATH/config/hypr/looknfeel.conf ~/.config/hypr/looknfeel.conf
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [[ -f ~/.config/hypr/hyprland.conf ]]; then
|
|
||||||
grep -qx 'source = ~/.config/hypr/looknfeel.conf' ~/.config/hypr/hyprland.conf ||
|
|
||||||
sed -i '/^source = ~\/.config\/hypr\/envs\.conf$/a source = ~/.config/hypr/looknfeel.conf' ~/.config/hypr/hyprland.conf
|
|
||||||
fi
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
echo "Set \$TERMINAL and \$EDITOR in ~/.config/uwsm/default so entire system can rely on it"
|
|
||||||
|
|
||||||
# Set terminal and editor default in uwsm
|
|
||||||
omarchy-refresh-config uwsm/default
|
|
||||||
omarchy-refresh-config uwsm/env
|
|
||||||
omarchy-state set relaunch-required
|
|
||||||
|
|
||||||
# Ensure scrolltouchpad setting applies to all terminals
|
|
||||||
if grep -q "scrolltouchpad 1.5, class:Alacritty" ~/.config/hypr/input.conf; then
|
|
||||||
sed -i 's/windowrule = scrolltouchpad 1\.5, class:Alacritty/windowrule = scrolltouchpad 1.5, tag:terminal/' ~/.config/hypr/input.conf
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Use default editor for keybinding
|
|
||||||
if grep -q "bindd = SUPER, N, Neovim" ~/.config/hypr/bindings.conf; then
|
|
||||||
sed -i '/SUPER, N, Neovim, exec/ c\bindd = SUPER, N, Editor, exec, omarchy-launch-editor' ~/.config/hypr/bindings.conf
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Use default terminal for keybinding
|
|
||||||
if grep -q "terminal = uwsm app" ~/.config/hypr/bindings.conf; then
|
|
||||||
sed -i '/terminal = uwsm app -- alacritty/ c\$terminal = uwsm app -- $TERMINAL' ~/.config/hypr/bindings.conf
|
|
||||||
fi
|
|
||||||
@@ -1,11 +0,0 @@
|
|||||||
echo "Copy configs for ghostty + kitty so they're available as alternative terminal options"
|
|
||||||
|
|
||||||
if [[ ! -f ~/.config/ghostty/config ]]; then
|
|
||||||
mkdir -p ~/.config/ghostty
|
|
||||||
cp -Rpf $OMARCHY_PATH/config/ghostty/config ~/.config/ghostty/config
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [[ ! -f ~/.config/kitty/kitty.conf ]]; then
|
|
||||||
mkdir -p ~/.config/kitty
|
|
||||||
cp -Rpf $OMARCHY_PATH/config/kitty/kitty.conf ~/.config/kitty/kitty.conf
|
|
||||||
fi
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
echo "Prevent powerprofilesctl from using Mise python and not working"
|
|
||||||
|
|
||||||
bash $OMARCHY_PATH/install/config/fix-powerprofilesctl-shebang.sh
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
echo "Remove Ruby build options to force GCC14 now that GCC15 is compatible"
|
|
||||||
|
|
||||||
mise settings unset ruby.ruby_build_opts
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
echo "Ensure libyaml is available for installing Ruby"
|
|
||||||
|
|
||||||
omarchy-pkg-add libyaml
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
theme = Catppuccin Latte
|
|
||||||
@@ -1,78 +0,0 @@
|
|||||||
## name: Catppuccin Latte 🐑
|
|
||||||
## author: Pocco81 (https://github.com/Pocco81)
|
|
||||||
## license: MIT
|
|
||||||
## upstream: https://github.com/catppuccin/kitty/blob/main/latte.conf
|
|
||||||
## blurb: Soothing pastel theme for the high-spirited!
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# The basic colors
|
|
||||||
foreground #4C4F69
|
|
||||||
background #EFF1F5
|
|
||||||
selection_foreground #EFF1F5
|
|
||||||
selection_background #DC8A78
|
|
||||||
|
|
||||||
# Cursor colors
|
|
||||||
cursor #DC8A78
|
|
||||||
cursor_text_color #EFF1F5
|
|
||||||
|
|
||||||
# URL underline color when hovering with mouse
|
|
||||||
url_color #7287FD
|
|
||||||
|
|
||||||
# Kitty window border colors
|
|
||||||
active_border_color #8839EF
|
|
||||||
inactive_border_color #7C7F93
|
|
||||||
bell_border_color #E64553
|
|
||||||
|
|
||||||
# OS Window titlebar colors
|
|
||||||
wayland_titlebar_color system
|
|
||||||
macos_titlebar_color system
|
|
||||||
|
|
||||||
# Tab bar colors
|
|
||||||
active_tab_foreground #EFF1F5
|
|
||||||
active_tab_background #8839EF
|
|
||||||
inactive_tab_foreground #4C4F69
|
|
||||||
inactive_tab_background #9CA0B0
|
|
||||||
tab_bar_background #BCC0CC
|
|
||||||
|
|
||||||
# Colors for marks (marked text in the terminal)
|
|
||||||
mark1_foreground #EFF1F5
|
|
||||||
mark1_background #1E66F5
|
|
||||||
mark2_foreground #EFF1F5
|
|
||||||
mark2_background #8839EF
|
|
||||||
mark3_foreground #EFF1F5
|
|
||||||
mark3_background #209FB5
|
|
||||||
|
|
||||||
# The 16 terminal colors
|
|
||||||
|
|
||||||
# black
|
|
||||||
color0 #4C4F69
|
|
||||||
color8 #6C6F85
|
|
||||||
|
|
||||||
# red
|
|
||||||
color1 #D20F39
|
|
||||||
color9 #D20F39
|
|
||||||
|
|
||||||
# green
|
|
||||||
color2 #40A02B
|
|
||||||
color10 #40A02B
|
|
||||||
|
|
||||||
# yellow
|
|
||||||
color3 #DF8E1D
|
|
||||||
color11 #DF8E1D
|
|
||||||
|
|
||||||
# blue
|
|
||||||
color4 #1E66F5
|
|
||||||
color12 #1E66F5
|
|
||||||
|
|
||||||
# magenta
|
|
||||||
color5 #EA76CB
|
|
||||||
color13 #EA76CB
|
|
||||||
|
|
||||||
# cyan
|
|
||||||
color6 #179299
|
|
||||||
color14 #179299
|
|
||||||
|
|
||||||
# white
|
|
||||||
color7 #ACB0BE
|
|
||||||
color15 #ACB0BE
|
|
||||||
@@ -1,4 +0,0 @@
|
|||||||
{
|
|
||||||
"name": "Catppuccin Latte",
|
|
||||||
"extension": "catppuccin.catppuccin-vsc"
|
|
||||||
}
|
|
||||||
@@ -1,104 +0,0 @@
|
|||||||
# see https://github.com/eza-community/eza-themes/blob/main/themes/catppuccin.yml
|
|
||||||
|
|
||||||
colourful: true
|
|
||||||
|
|
||||||
filekinds:
|
|
||||||
normal: {foreground: "#BAC2DE"}
|
|
||||||
directory: {foreground: "#89B4FA"}
|
|
||||||
symlink: {foreground: "#89DCEB"}
|
|
||||||
pipe: {foreground: "#7F849C"}
|
|
||||||
block_device: {foreground: "#EBA0AC"}
|
|
||||||
char_device: {foreground: "#EBA0AC"}
|
|
||||||
socket: {foreground: "#585B70"}
|
|
||||||
special: {foreground: "#CBA6F7"}
|
|
||||||
executable: {foreground: "#A6E3A1"}
|
|
||||||
mount_point: {foreground: "#74C7EC"}
|
|
||||||
|
|
||||||
perms:
|
|
||||||
user_read: {foreground: "#CDD6F4"}
|
|
||||||
user_write: {foreground: "#F9E2AF"}
|
|
||||||
user_execute_file: {foreground: "#A6E3A1"}
|
|
||||||
user_execute_other: {foreground: "#A6E3A1"}
|
|
||||||
group_read: {foreground: "#BAC2DE"}
|
|
||||||
group_write: {foreground: "#F9E2AF"}
|
|
||||||
group_execute: {foreground: "#A6E3A1"}
|
|
||||||
other_read: {foreground: "#A6ADC8"}
|
|
||||||
other_write: {foreground: "#F9E2AF"}
|
|
||||||
other_execute: {foreground: "#A6E3A1"}
|
|
||||||
special_user_file: {foreground: "#CBA6F7"}
|
|
||||||
special_other: {foreground: "#585B70"}
|
|
||||||
attribute: {foreground: "#A6ADC8"}
|
|
||||||
|
|
||||||
size:
|
|
||||||
major: {foreground: "#A6ADC8"}
|
|
||||||
minor: {foreground: "#89DCEB"}
|
|
||||||
number_byte: {foreground: "#CDD6F4"}
|
|
||||||
number_kilo: {foreground: "#BAC2DE"}
|
|
||||||
number_mega: {foreground: "#89B4FA"}
|
|
||||||
number_giga: {foreground: "#CBA6F7"}
|
|
||||||
number_huge: {foreground: "#CBA6F7"}
|
|
||||||
unit_byte: {foreground: "#A6ADC8"}
|
|
||||||
unit_kilo: {foreground: "#89B4FA"}
|
|
||||||
unit_mega: {foreground: "#CBA6F7"}
|
|
||||||
unit_giga: {foreground: "#CBA6F7"}
|
|
||||||
unit_huge: {foreground: "#74C7EC"}
|
|
||||||
|
|
||||||
users:
|
|
||||||
user_you: {foreground: "#CDD6F4"}
|
|
||||||
user_root: {foreground: "#F38BA8"}
|
|
||||||
user_other: {foreground: "#CBA6F7"}
|
|
||||||
group_yours: {foreground: "#BAC2DE"}
|
|
||||||
group_other: {foreground: "#7F849C"}
|
|
||||||
group_root: {foreground: "#F38BA8"}
|
|
||||||
|
|
||||||
links:
|
|
||||||
normal: {foreground: "#89DCEB"}
|
|
||||||
multi_link_file: {foreground: "#74C7EC"}
|
|
||||||
|
|
||||||
git:
|
|
||||||
new: {foreground: "#A6E3A1"}
|
|
||||||
modified: {foreground: "#F9E2AF"}
|
|
||||||
deleted: {foreground: "#F38BA8"}
|
|
||||||
renamed: {foreground: "#94E2D5"}
|
|
||||||
typechange: {foreground: "#F5C2E7"}
|
|
||||||
ignored: {foreground: "#7F849C"}
|
|
||||||
conflicted: {foreground: "#EBA0AC"}
|
|
||||||
|
|
||||||
git_repo:
|
|
||||||
branch_main: {foreground: "#CDD6F4"}
|
|
||||||
branch_other: {foreground: "#CBA6F7"}
|
|
||||||
git_clean: {foreground: "#A6E3A1"}
|
|
||||||
git_dirty: {foreground: "#F38BA8"}
|
|
||||||
|
|
||||||
security_context:
|
|
||||||
colon: {foreground: "#7F849C"}
|
|
||||||
user: {foreground: "#BAC2DE"}
|
|
||||||
role: {foreground: "#CBA6F7"}
|
|
||||||
typ: {foreground: "#585B70"}
|
|
||||||
range: {foreground: "#CBA6F7"}
|
|
||||||
|
|
||||||
file_type:
|
|
||||||
image: {foreground: "#F9E2AF"}
|
|
||||||
video: {foreground: "#F38BA8"}
|
|
||||||
music: {foreground: "#A6E3A1"}
|
|
||||||
lossless: {foreground: "#94E2D5"}
|
|
||||||
crypto: {foreground: "#585B70"}
|
|
||||||
document: {foreground: "#CDD6F4"}
|
|
||||||
compressed: {foreground: "#F5C2E7"}
|
|
||||||
temp: {foreground: "#EBA0AC"}
|
|
||||||
compiled: {foreground: "#74C7EC"}
|
|
||||||
build: {foreground: "#585B70"}
|
|
||||||
source: {foreground: "#89B4FA"}
|
|
||||||
|
|
||||||
punctuation: {foreground: "#7F849C"}
|
|
||||||
date: {foreground: "#F9E2AF"}
|
|
||||||
inode: {foreground: "#A6ADC8"}
|
|
||||||
blocks: {foreground: "#9399B2"}
|
|
||||||
header: {foreground: "#CDD6F4"}
|
|
||||||
octal: {foreground: "#94E2D5"}
|
|
||||||
flags: {foreground: "#CBA6F7"}
|
|
||||||
|
|
||||||
symlink_path: {foreground: "#89DCEB"}
|
|
||||||
control_char: {foreground: "#74C7EC"}
|
|
||||||
broken_symlink: {foreground: "#F38BA8"}
|
|
||||||
broken_path_overlay: {foreground: "#585B70"}
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
theme = Catppuccin Mocha
|
|
||||||
@@ -1,78 +0,0 @@
|
|||||||
## name: Catppuccin Mocha 🌿
|
|
||||||
## author: Pocco81 (https://github.com/Pocco81)
|
|
||||||
## license: MIT
|
|
||||||
## upstream: https://github.com/catppuccin/kitty/blob/main/mocha.conf
|
|
||||||
## blurb: Soothing pastel theme for the high-spirited!
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# The basic colors
|
|
||||||
foreground #CDD6F4
|
|
||||||
background #1E1E2E
|
|
||||||
selection_foreground #1E1E2E
|
|
||||||
selection_background #F5E0DC
|
|
||||||
|
|
||||||
# Cursor colors
|
|
||||||
cursor #F5E0DC
|
|
||||||
cursor_text_color #1E1E2E
|
|
||||||
|
|
||||||
# URL underline color when hovering with mouse
|
|
||||||
url_color #B4BEFE
|
|
||||||
|
|
||||||
# Kitty window border colors
|
|
||||||
active_border_color #CBA6F7
|
|
||||||
inactive_border_color #8E95B3
|
|
||||||
bell_border_color #EBA0AC
|
|
||||||
|
|
||||||
# OS Window titlebar colors
|
|
||||||
wayland_titlebar_color system
|
|
||||||
macos_titlebar_color system
|
|
||||||
|
|
||||||
# Tab bar colors
|
|
||||||
active_tab_foreground #11111B
|
|
||||||
active_tab_background #CBA6F7
|
|
||||||
inactive_tab_foreground #CDD6F4
|
|
||||||
inactive_tab_background #181825
|
|
||||||
tab_bar_background #11111B
|
|
||||||
|
|
||||||
# Colors for marks (marked text in the terminal)
|
|
||||||
mark1_foreground #1E1E2E
|
|
||||||
mark1_background #87B0F9
|
|
||||||
mark2_foreground #1E1E2E
|
|
||||||
mark2_background #CBA6F7
|
|
||||||
mark3_foreground #1E1E2E
|
|
||||||
mark3_background #74C7EC
|
|
||||||
|
|
||||||
# The 16 terminal colors
|
|
||||||
|
|
||||||
# black
|
|
||||||
color0 #43465A
|
|
||||||
color8 #43465A
|
|
||||||
|
|
||||||
# red
|
|
||||||
color1 #F38BA8
|
|
||||||
color9 #F38BA8
|
|
||||||
|
|
||||||
# green
|
|
||||||
color2 #A6E3A1
|
|
||||||
color10 #A6E3A1
|
|
||||||
|
|
||||||
# yellow
|
|
||||||
color3 #F9E2AF
|
|
||||||
color11 #F9E2AF
|
|
||||||
|
|
||||||
# blue
|
|
||||||
color4 #87B0F9
|
|
||||||
color12 #87B0F9
|
|
||||||
|
|
||||||
# magenta
|
|
||||||
color5 #F5C2E7
|
|
||||||
color13 #F5C2E7
|
|
||||||
|
|
||||||
# cyan
|
|
||||||
color6 #94E2D5
|
|
||||||
color14 #94E2D5
|
|
||||||
|
|
||||||
# white
|
|
||||||
color7 #CDD6F4
|
|
||||||
color15 #A1A8C9
|
|
||||||
@@ -1,4 +0,0 @@
|
|||||||
{
|
|
||||||
"name": "Catppuccin Macchiato",
|
|
||||||
"extension": "catppuccin.catppuccin-vsc"
|
|
||||||
}
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
theme = Everforest Dark Hard
|
|
||||||
@@ -1,69 +0,0 @@
|
|||||||
## name: Everforest Dark Hard
|
|
||||||
## author: Sainnhe Park
|
|
||||||
## license: MIT
|
|
||||||
## upstream: https://github.com/ewal/kitty-everforest/blob/master/themes/everforest_dark_hard.conf
|
|
||||||
## blurb: A green based color scheme designed to be warm and soft
|
|
||||||
|
|
||||||
foreground #d3c6aa
|
|
||||||
background #272e33
|
|
||||||
selection_foreground #9da9a0
|
|
||||||
selection_background #464e53
|
|
||||||
|
|
||||||
cursor #d3c6aa
|
|
||||||
cursor_text_color #2e383c
|
|
||||||
|
|
||||||
url_color #7fbbb3
|
|
||||||
|
|
||||||
active_border_color #a7c080
|
|
||||||
inactive_border_color #4f5b58
|
|
||||||
bell_border_color #e69875
|
|
||||||
visual_bell_color none
|
|
||||||
|
|
||||||
wayland_titlebar_color system
|
|
||||||
macos_titlebar_color system
|
|
||||||
|
|
||||||
active_tab_background #272e33
|
|
||||||
active_tab_foreground #d3c6aa
|
|
||||||
inactive_tab_background #374145
|
|
||||||
inactive_tab_foreground #9da9a0
|
|
||||||
tab_bar_background #2e383c
|
|
||||||
tab_bar_margin_color none
|
|
||||||
|
|
||||||
mark1_foreground #272e33
|
|
||||||
mark1_background #7fbbb3
|
|
||||||
mark2_foreground #272e33
|
|
||||||
mark2_background #d3c6aa
|
|
||||||
mark3_foreground #272e33
|
|
||||||
mark3_background #d699b6
|
|
||||||
|
|
||||||
#: black
|
|
||||||
color0 #343f44
|
|
||||||
color8 #868d80
|
|
||||||
|
|
||||||
#: red
|
|
||||||
color1 #e67e80
|
|
||||||
color9 #e67e80
|
|
||||||
|
|
||||||
#: green
|
|
||||||
color2 #a7c080
|
|
||||||
color10 #a7c080
|
|
||||||
|
|
||||||
#: yellow
|
|
||||||
color3 #dbbc7f
|
|
||||||
color11 #dbbc7f
|
|
||||||
|
|
||||||
#: blue
|
|
||||||
color4 #7fbbb3
|
|
||||||
color12 #7fbbb3
|
|
||||||
|
|
||||||
#: magenta
|
|
||||||
color5 #d699b6
|
|
||||||
color13 #d699b6
|
|
||||||
|
|
||||||
#: cyan
|
|
||||||
color6 #83c092
|
|
||||||
color14 #83c092
|
|
||||||
|
|
||||||
#: white
|
|
||||||
color7 #859289
|
|
||||||
color15 #9da9a0
|
|
||||||
@@ -1,4 +0,0 @@
|
|||||||
{
|
|
||||||
"name": "Everforest Dark",
|
|
||||||
"extension": "sainnhe.everforest"
|
|
||||||
}
|
|
||||||
@@ -1,104 +0,0 @@
|
|||||||
# see https://github.com/eza-community/eza-themes/blob/main/themes/gruvbox-dark.yml
|
|
||||||
|
|
||||||
colourful: true
|
|
||||||
|
|
||||||
filekinds:
|
|
||||||
normal: {foreground: "#ebdbb2"}
|
|
||||||
directory: {foreground: "#83a598"}
|
|
||||||
symlink: {foreground: "#8ec07c"}
|
|
||||||
pipe: {foreground: "#928374"}
|
|
||||||
block_device: {foreground: "#fb4934"}
|
|
||||||
char_device: {foreground: "#fb4934"}
|
|
||||||
socket: {foreground: "#665c54"}
|
|
||||||
special: {foreground: "#d3869b"}
|
|
||||||
executable: {foreground: "#b8bb26"}
|
|
||||||
mount_point: {foreground: "#fe8019"}
|
|
||||||
|
|
||||||
perms:
|
|
||||||
user_read: {foreground: "#ebdbb2"}
|
|
||||||
user_write: {foreground: "#fabd2f"}
|
|
||||||
user_execute_file: {foreground: "#b8bb26"}
|
|
||||||
user_execute_other: {foreground: "#b8bb26"}
|
|
||||||
group_read: {foreground: "#ebdbb2"}
|
|
||||||
group_write: {foreground: "#fabd2f"}
|
|
||||||
group_execute: {foreground: "#b8bb26"}
|
|
||||||
other_read: {foreground: "#bdae93"}
|
|
||||||
other_write: {foreground: "#fabd2f"}
|
|
||||||
other_execute: {foreground: "#b8bb26"}
|
|
||||||
special_user_file: {foreground: "#d3869b"}
|
|
||||||
special_other: {foreground: "#928374"}
|
|
||||||
attribute: {foreground: "#bdae93"}
|
|
||||||
|
|
||||||
size:
|
|
||||||
major: {foreground: "#bdae93"}
|
|
||||||
minor: {foreground: "#8ec07c"}
|
|
||||||
number_byte: {foreground: "#ebdbb2"}
|
|
||||||
number_kilo: {foreground: "#ebdbb2"}
|
|
||||||
number_mega: {foreground: "#83a598"}
|
|
||||||
number_giga: {foreground: "#d3869b"}
|
|
||||||
number_huge: {foreground: "#d3869b"}
|
|
||||||
unit_byte: {foreground: "#bdae93"}
|
|
||||||
unit_kilo: {foreground: "#83a598"}
|
|
||||||
unit_mega: {foreground: "#d3869b"}
|
|
||||||
unit_giga: {foreground: "#d3869b"}
|
|
||||||
unit_huge: {foreground: "#fe8019"}
|
|
||||||
|
|
||||||
users:
|
|
||||||
user_you: {foreground: "#ebdbb2"}
|
|
||||||
user_root: {foreground: "#fb4934"}
|
|
||||||
user_other: {foreground: "#d3869b"}
|
|
||||||
group_yours: {foreground: "#ebdbb2"}
|
|
||||||
group_other: {foreground: "#928374"}
|
|
||||||
group_root: {foreground: "#fb4934"}
|
|
||||||
|
|
||||||
links:
|
|
||||||
normal: {foreground: "#8ec07c"}
|
|
||||||
multi_link_file: {foreground: "#fe8019"}
|
|
||||||
|
|
||||||
git:
|
|
||||||
new: {foreground: "#b8bb26"}
|
|
||||||
modified: {foreground: "#fabd2f"}
|
|
||||||
deleted: {foreground: "#fb4934"}
|
|
||||||
renamed: {foreground: "#8ec07c"}
|
|
||||||
typechange: {foreground: "#d3869b"}
|
|
||||||
ignored: {foreground: "#928374"}
|
|
||||||
conflicted: {foreground: "#cc241d"}
|
|
||||||
|
|
||||||
git_repo:
|
|
||||||
branch_main: {foreground: "#ebdbb2"}
|
|
||||||
branch_other: {foreground: "#d3869b"}
|
|
||||||
git_clean: {foreground: "#b8bb26"}
|
|
||||||
git_dirty: {foreground: "#fb4934"}
|
|
||||||
|
|
||||||
security_context:
|
|
||||||
colon: {foreground: "#928374"}
|
|
||||||
user: {foreground: "#ebdbb2"}
|
|
||||||
role: {foreground: "#d3869b"}
|
|
||||||
typ: {foreground: "#665c54"}
|
|
||||||
range: {foreground: "#d3869b"}
|
|
||||||
|
|
||||||
file_type:
|
|
||||||
image: {foreground: "#fabd2f"}
|
|
||||||
video: {foreground: "#fb4934"}
|
|
||||||
music: {foreground: "#b8bb26"}
|
|
||||||
lossless: {foreground: "#8ec07c"}
|
|
||||||
crypto: {foreground: "#928374"}
|
|
||||||
document: {foreground: "#ebdbb2"}
|
|
||||||
compressed: {foreground: "#d3869b"}
|
|
||||||
temp: {foreground: "#cc241d"}
|
|
||||||
compiled: {foreground: "#83a598"}
|
|
||||||
build: {foreground: "#928374"}
|
|
||||||
source: {foreground: "#83a598"}
|
|
||||||
|
|
||||||
punctuation: {foreground: "#928374"}
|
|
||||||
date: {foreground: "#fabd2f"}
|
|
||||||
inode: {foreground: "#bdae93"}
|
|
||||||
blocks: {foreground: "#a89984"}
|
|
||||||
header: {foreground: "#ebdbb2"}
|
|
||||||
octal: {foreground: "#8ec07c"}
|
|
||||||
flags: {foreground: "#d3869b"}
|
|
||||||
|
|
||||||
symlink_path: {foreground: "#8ec07c"}
|
|
||||||
control_char: {foreground: "#83a598"}
|
|
||||||
broken_symlink: {foreground: "#fb4934"}
|
|
||||||
broken_path_overlay: {foreground: "#928374"}
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
theme = Gruvbox Dark
|
|
||||||
@@ -1,40 +0,0 @@
|
|||||||
## name: Gruvbox Dark
|
|
||||||
## author: Pavel Pertsev
|
|
||||||
## license: MIT/X11
|
|
||||||
## upstream: https://raw.githubusercontent.com/gruvbox-community/gruvbox-contrib/master/kitty/gruvbox-dark.conf
|
|
||||||
|
|
||||||
selection_foreground #ebdbb2
|
|
||||||
selection_background #d65d0e
|
|
||||||
|
|
||||||
background #282828
|
|
||||||
foreground #ebdbb2
|
|
||||||
|
|
||||||
color0 #3c3836
|
|
||||||
color1 #cc241d
|
|
||||||
color2 #98971a
|
|
||||||
color3 #d79921
|
|
||||||
color4 #458588
|
|
||||||
color5 #b16286
|
|
||||||
color6 #689d6a
|
|
||||||
color7 #a89984
|
|
||||||
color8 #928374
|
|
||||||
color9 #fb4934
|
|
||||||
color10 #b8bb26
|
|
||||||
color11 #fabd2f
|
|
||||||
color12 #83a598
|
|
||||||
color13 #d3869b
|
|
||||||
color14 #8ec07c
|
|
||||||
color15 #fbf1c7
|
|
||||||
|
|
||||||
cursor #bdae93
|
|
||||||
cursor_text_color #665c54
|
|
||||||
|
|
||||||
url_color #458588
|
|
||||||
|
|
||||||
# START_AUTOGENERATED_TAB_STYLE
|
|
||||||
# Feel free to update these colors manually and remove these comments.
|
|
||||||
active_tab_foreground #eeeeee
|
|
||||||
active_tab_background #d65d0e
|
|
||||||
inactive_tab_foreground #ebdbb2
|
|
||||||
inactive_tab_background #202020
|
|
||||||
# END_AUTOGENERATED_TAB_STYLE
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user