mirror of
https://github.com/basecamp/omarchy.git
synced 2026-02-17 15:25:37 +00:00
Compare commits
10 Commits
allow-cust
...
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,13 +1,9 @@
|
|||||||
#!/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 "$TERMINAL --class Screensaver" 2>/dev/null
|
pkill -f "alacritty --class Screensaver" 2>/dev/null
|
||||||
exit 0
|
exit 0
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -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,15 +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
|
|
||||||
|
|
||||||
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,3 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
exec setsid uwsm app -- "$TERMINAL" --class=Omarchy -o font.size=9 -e bash -c 'fastfetch; read -n 1 -s'
|
|
||||||
@@ -1,13 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
case "$EDITOR" in
|
|
||||||
nvim | vim | nano | micro | hx)
|
|
||||||
exec setsid uwsm app -- "$TERMINAL" -e "$EDITOR" "$@"
|
|
||||||
;;
|
|
||||||
code | codium | subl | gedit | kate | zeditor)
|
|
||||||
exec setsid uwsm app -- "$EDITOR" "$@"
|
|
||||||
;;
|
|
||||||
*)
|
|
||||||
exec setsid uwsm app -- "$TERMINAL" -e nvim "$@"
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
cmd="$*"
|
cmd="$*"
|
||||||
exec setsid uwsm app -- "$TERMINAL" --class=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+" "+.title)|test($p;"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'"
|
|
||||||
@@ -6,7 +6,7 @@ if ! command -v tte &>/dev/null; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# Exit early if screensave is already running
|
# Exit early if screensave is already running
|
||||||
pgrep -f "$TERMINAL --class Screensaver" && exit 0
|
pgrep -f "alacritty --class Screensaver" && exit 0
|
||||||
|
|
||||||
# Allow screensaver to be turned off but also force started
|
# Allow screensaver to be turned off but also force started
|
||||||
if [[ -f ~/.local/state/omarchy/toggles/screensaver-off ]] && [[ $1 != "force" ]]; then
|
if [[ -f ~/.local/state/omarchy/toggles/screensaver-off ]] && [[ $1 != "force" ]]; then
|
||||||
@@ -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"
|
||||||
|
|||||||
159
bin/omarchy-menu
159
bin/omarchy-menu
@@ -37,16 +37,16 @@ menu() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
terminal() {
|
terminal() {
|
||||||
$TERMINAL --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() {
|
||||||
@@ -81,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
|
||||||
}
|
}
|
||||||
@@ -167,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
|
||||||
}
|
}
|
||||||
@@ -207,26 +188,18 @@ 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 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 ;;
|
||||||
@@ -369,7 +342,7 @@ show_remove_menu() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
show_update_menu() {
|
show_update_menu() {
|
||||||
case $(menu "Update" " Omarchy\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 ;;
|
||||||
*Config*) show_update_config_menu ;;
|
*Config*) show_update_config_menu ;;
|
||||||
*Themes*) present_terminal omarchy-theme-update ;;
|
*Themes*) present_terminal omarchy-theme-update ;;
|
||||||
@@ -435,25 +408,25 @@ show_system_menu() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
show_main_menu() {
|
show_main_menu() {
|
||||||
go_to_menu "$(menu "Go" " Apps\n Trigger\n Style\n Setup\n Install\n Remove\n Update\n Learn\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…" ;;
|
||||||
*trigger*) show_trigger_menu ;;
|
*learn*) show_learn_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 ;;
|
||||||
*learn*) show_learn_menu ;;
|
*about*) alacritty --class Omarchy -o font.size=9 -e bash -c 'fastfetch; read -n 1 -s' ;;
|
||||||
*about*) omarchy-launch-about ;;
|
|
||||||
*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'
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
@@ -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,6 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
case "$TERMINAL" in
|
|
||||||
"alacritty") touch ~/.config/alacritty/alacritty.toml ;;
|
|
||||||
"kitty") pkill -USR1 kitty ;;
|
|
||||||
esac
|
|
||||||
@@ -1,25 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
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
|
|
||||||
# Install VS Code theme extension
|
|
||||||
extension=$(jq -r '.extension' "$VS_CODE_THEME")
|
|
||||||
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
|
|
||||||
|
|
||||||
# Update theme in settings.json
|
|
||||||
theme_name=$(jq -r '.name' "$VS_CODE_THEME")
|
|
||||||
jq -n --arg t "$theme_name" '(input? // {}) | .["workbench.colorTheme"] = $t' "$VS_CODE_SETTINGS" >"${VS_CODE_SETTINGS}.new"
|
|
||||||
else
|
|
||||||
# Remove theme from settings.json when the theme doesn't have vscode support
|
|
||||||
jq 'del(.["workbench.colorTheme"])' "$VS_CODE_SETTINGS" >"${VS_CODE_SETTINGS}.new"
|
|
||||||
fi
|
|
||||||
|
|
||||||
mv "${VS_CODE_SETTINGS}.new" "$VS_CODE_SETTINGS"
|
|
||||||
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,8 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
set -e
|
|
||||||
|
|
||||||
omarchy-update-available-reset
|
|
||||||
omarchy-update-system-pkgs
|
|
||||||
omarchy-migrate
|
|
||||||
omarchy-update-restart
|
|
||||||
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,6 +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
|
|
||||||
--oauth2-client-id=77185425430.apps.googleusercontent.com
|
|
||||||
--oauth2-client-secret=OTJgUOQcT7lO7GsGZq2G4IlT
|
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
@@ -28,7 +28,7 @@ input {
|
|||||||
}
|
}
|
||||||
|
|
||||||
# Scroll faster in the terminal
|
# Scroll faster in the terminal
|
||||||
windowrule = scrolltouchpad 1.5, tag:terminal
|
windowrule = scrolltouchpad 1.5, class:Alacritty
|
||||||
|
|
||||||
# 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,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)
|
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
# Define terminal tag to style them uniformly
|
|
||||||
windowrule = tag +terminal, class:(Alacritty|kitty|ghostty)
|
|
||||||
@@ -41,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
|
|
||||||
|
|||||||
@@ -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'
|
|
||||||
|
|||||||
@@ -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." -t 30000
|
|
||||||
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
|
||||||
|
|||||||
@@ -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//')" \
|
||||||
|
|||||||
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,3 +0,0 @@
|
|||||||
echo "Refresh chromium-flags.conf to add option of logging in to Google account for settings sync"
|
|
||||||
|
|
||||||
omarchy-refresh-config chromium-flags.conf
|
|
||||||
@@ -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,16 +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
|
|
||||||
@@ -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,4 +0,0 @@
|
|||||||
{
|
|
||||||
"name": "Catppuccin Macchiato",
|
|
||||||
"extension": "catppuccin.catppuccin-vsc"
|
|
||||||
}
|
|
||||||
@@ -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,4 +0,0 @@
|
|||||||
{
|
|
||||||
"name": "Gruvbox Dark Medium",
|
|
||||||
"extension": "jdinhlife.gruvbox"
|
|
||||||
}
|
|
||||||
@@ -3,4 +3,4 @@ general {
|
|||||||
}
|
}
|
||||||
|
|
||||||
# Kanagawa backdrop is too strong for detault opacity
|
# Kanagawa backdrop is too strong for detault opacity
|
||||||
windowrule = opacity 0.98 0.95, tag:terminal
|
windowrule = opacity 0.98 0.95, class:Alacritty
|
||||||
|
|||||||
@@ -1,4 +0,0 @@
|
|||||||
{
|
|
||||||
"name": "Kanagawa",
|
|
||||||
"extension": "qufiwefefwoyn.kanagawa"
|
|
||||||
}
|
|
||||||
@@ -1,4 +0,0 @@
|
|||||||
{
|
|
||||||
"name": "Matte Black Theme",
|
|
||||||
"extension": "cleanthemes.matte-black-theme"
|
|
||||||
}
|
|
||||||
@@ -1,4 +0,0 @@
|
|||||||
{
|
|
||||||
"name": "Nord",
|
|
||||||
"extension": "arcticicestudio.nord-visual-studio-code"
|
|
||||||
}
|
|
||||||
@@ -1,4 +0,0 @@
|
|||||||
{
|
|
||||||
"name": "Ocean Green: Dark",
|
|
||||||
"extension": "jovejonovski.ocean-green"
|
|
||||||
}
|
|
||||||
@@ -1,4 +0,0 @@
|
|||||||
{
|
|
||||||
"name": "Monokai Pro (Filter Ristretto)",
|
|
||||||
"extension": "monokai.theme-monokai-pro-vscode"
|
|
||||||
}
|
|
||||||
@@ -1,123 +0,0 @@
|
|||||||
# see https://github.com/eza-community/eza-themes/blob/main/themes/rose-pine.yml
|
|
||||||
|
|
||||||
colourful: true
|
|
||||||
|
|
||||||
# Colors are in format of:
|
|
||||||
# color/paletteRef (Description) #color code
|
|
||||||
|
|
||||||
# Gold (Terminal Yellow) #f6c177
|
|
||||||
# Love (Terminal Red) #eb6f92
|
|
||||||
# Rose (Terminal Cyan) #ebbcba
|
|
||||||
# Base (Primary Background) #191724
|
|
||||||
# Iris (Terminal Magenta) #c4a7e7
|
|
||||||
# Foam (Terminal Blue) #9ccfd8
|
|
||||||
# Pine (Terminal Green) #31748f
|
|
||||||
# Muted (Low Contrast Foreground) #6e6a86
|
|
||||||
# Surface (Secondary Background Atop Base) #1f1d2e
|
|
||||||
# Overlay (Tertiary Background Atop Surface) #26233a
|
|
||||||
# Subtle (Medium Contrast Foreground) #908caa
|
|
||||||
# Text (High Contrast Foreground) #e0def4
|
|
||||||
# Highlight Low (Low Contrast Highlight) #21202e
|
|
||||||
# Highlight Med (Medium Contrast Highlight) #403d52
|
|
||||||
# Highlight High (High Contrast Highlight) #524f67
|
|
||||||
|
|
||||||
filekinds:
|
|
||||||
normal: {foreground: "#e0def4"}
|
|
||||||
directory: {foreground: "#9ccfd8"}
|
|
||||||
symlink: {foreground: "#524f67"}
|
|
||||||
pipe: {foreground: "#908caa"}
|
|
||||||
block_device: {foreground: "#ebbcba"}
|
|
||||||
char_device: {foreground: "#f6c177"}
|
|
||||||
socket: {foreground: "#21202e"}
|
|
||||||
special: {foreground: "#c4a7e7"}
|
|
||||||
executable: {foreground: "#c4a7e7"}
|
|
||||||
mount_point: {foreground: "#403d52"}
|
|
||||||
|
|
||||||
perms:
|
|
||||||
user_read: {foreground: "#908caa"}
|
|
||||||
user_write: {foreground: "#403d52"}
|
|
||||||
user_execute_file: {foreground: "#c4a7e7"}
|
|
||||||
user_execute_other: {foreground: "#c4a7e7"}
|
|
||||||
group_read: {foreground: "#908caa"}
|
|
||||||
group_write: {foreground: "#403d52"}
|
|
||||||
group_execute: {foreground: "#c4a7e7"}
|
|
||||||
other_read: {foreground: "#908caa"}
|
|
||||||
other_write: {foreground: "#403d52"}
|
|
||||||
other_execute: {foreground: "#c4a7e7"}
|
|
||||||
special_user_file: {foreground: "#c4a7e7"}
|
|
||||||
special_other: {foreground: "#403d52"}
|
|
||||||
attribute: {foreground: "#908caa"}
|
|
||||||
|
|
||||||
size:
|
|
||||||
major: {foreground: "#908caa"}
|
|
||||||
minor: {foreground: "#9ccfd8"}
|
|
||||||
number_byte: {foreground: "#908caa"}
|
|
||||||
number_kilo: {foreground: "#524f67"}
|
|
||||||
number_mega: {foreground: "#31748f"}
|
|
||||||
number_giga: {foreground: "#c4a7e7"}
|
|
||||||
number_huge: {foreground: "#c4a7e7"}
|
|
||||||
unit_byte: {foreground: "#908caa"}
|
|
||||||
unit_kilo: {foreground: "#31748f"}
|
|
||||||
unit_mega: {foreground: "#c4a7e7"}
|
|
||||||
unit_giga: {foreground: "#c4a7e7"}
|
|
||||||
unit_huge: {foreground: "#9ccfd8"}
|
|
||||||
|
|
||||||
users:
|
|
||||||
user_you: {foreground: "#f6c177"}
|
|
||||||
user_root: {foreground: "#eb6f92"}
|
|
||||||
user_other: {foreground: "#c4a7e7"}
|
|
||||||
group_yours: {foreground: "#524f67"}
|
|
||||||
group_other: {foreground: "#6e6a86"}
|
|
||||||
group_root: {foreground: "#eb6f92"}
|
|
||||||
|
|
||||||
links:
|
|
||||||
normal: {foreground: "#9ccfd8"}
|
|
||||||
multi_link_file: {foreground: "#31748f"}
|
|
||||||
|
|
||||||
git:
|
|
||||||
new: {foreground: "#9ccfd8"}
|
|
||||||
modified: {foreground: "#f6c177"}
|
|
||||||
deleted: {foreground: "#eb6f92"}
|
|
||||||
renamed: {foreground: "#31748f"}
|
|
||||||
typechange: {foreground: "#c4a7e7"}
|
|
||||||
ignored: {foreground: "#6e6a86"}
|
|
||||||
conflicted: {foreground: "#ebbcba"}
|
|
||||||
|
|
||||||
git_repo:
|
|
||||||
branch_main: {foreground: "#908caa"}
|
|
||||||
branch_other: {foreground: "#c4a7e7"}
|
|
||||||
git_clean: {foreground: "#9ccfd8"}
|
|
||||||
git_dirty: {foreground: "#eb6f92"}
|
|
||||||
|
|
||||||
security_context:
|
|
||||||
colon: {foreground: "#908caa"}
|
|
||||||
user: {foreground: "#9ccfd8"}
|
|
||||||
role: {foreground: "#c4a7e7"}
|
|
||||||
typ: {foreground: "#6e6a86"}
|
|
||||||
range: {foreground: "#c4a7e7"}
|
|
||||||
|
|
||||||
file_type:
|
|
||||||
image: {foreground: "#f6c177"}
|
|
||||||
video: {foreground: "#eb6f92"}
|
|
||||||
music: {foreground: "#9ccfd8"}
|
|
||||||
lossless: {foreground: "#6e6a86"}
|
|
||||||
crypto: {foreground: "#403d52"}
|
|
||||||
document: {foreground: "#908caa"}
|
|
||||||
compressed: {foreground: "#c4a7e7"}
|
|
||||||
temp: {foreground: "#ebbcba"}
|
|
||||||
compiled: {foreground: "#31748f"}
|
|
||||||
build: {foreground: "#6e6a86"}
|
|
||||||
source: {foreground: "#ebbcba"}
|
|
||||||
|
|
||||||
punctuation: {foreground: "#524f67"}
|
|
||||||
date: {foreground: "#31748f"}
|
|
||||||
inode: {foreground: "#908caa"}
|
|
||||||
blocks: {foreground: "#6e6a86"}
|
|
||||||
header: {foreground: "#908caa"}
|
|
||||||
octal: {foreground: "#9ccfd8"}
|
|
||||||
flags: {foreground: "#c4a7e7"}
|
|
||||||
|
|
||||||
symlink_path: {foreground: "#9ccfd8"}
|
|
||||||
control_char: {foreground: "#31748f"}
|
|
||||||
broken_symlink: {foreground: "#eb6f92"}
|
|
||||||
broken_path_overlay: {foreground: "#524f67"}
|
|
||||||
@@ -1,4 +0,0 @@
|
|||||||
{
|
|
||||||
"name": "Rosé Pine Dawn",
|
|
||||||
"extension": "mvllow.rose-pine"
|
|
||||||
}
|
|
||||||
@@ -1,104 +0,0 @@
|
|||||||
# see https://github.com/eza-community/eza-themes/blob/main/themes/tokyonight.yml
|
|
||||||
|
|
||||||
colourful: true
|
|
||||||
|
|
||||||
filekinds:
|
|
||||||
normal: { foreground: "#c0caf5" }
|
|
||||||
directory: { foreground: "#7aa2f7" }
|
|
||||||
symlink: { foreground: "#2ac3de" }
|
|
||||||
pipe: { foreground: "#414868" }
|
|
||||||
block_device: { foreground: "#e0af68" }
|
|
||||||
char_device: { foreground: "#e0af68" }
|
|
||||||
socket: { foreground: "#414868" }
|
|
||||||
special: { foreground: "#9d7cd8" }
|
|
||||||
executable: { foreground: "#9ece6a" }
|
|
||||||
mount_point: { foreground: "#b4f9f8" }
|
|
||||||
|
|
||||||
perms:
|
|
||||||
user_read: { foreground: "#2ac3de" }
|
|
||||||
user_write: { foreground: "#bb9af7" }
|
|
||||||
user_execute_file: { foreground: "#9ece6a" }
|
|
||||||
user_execute_other: { foreground: "#9ece6a" }
|
|
||||||
group_read: { foreground: "#2ac3de" }
|
|
||||||
group_write: { foreground: "#ff9e64" }
|
|
||||||
group_execute: { foreground: "#9ece6a" }
|
|
||||||
other_read: { foreground: "#2ac3de" }
|
|
||||||
other_write: { foreground: "#ff007c" }
|
|
||||||
other_execute: { foreground: "#9ece6a" }
|
|
||||||
special_user_file: { foreground: "#ff007c" }
|
|
||||||
special_other: { foreground: "#db4b4b" }
|
|
||||||
attribute: { foreground: "#737aa2" }
|
|
||||||
|
|
||||||
size:
|
|
||||||
major: { foreground: "#2ac3de" }
|
|
||||||
minor: { foreground: "#9d7cd8" }
|
|
||||||
number_byte: { foreground: "#a9b1d6" }
|
|
||||||
number_kilo: { foreground: "#89ddff" }
|
|
||||||
number_mega: { foreground: "#2ac3de" }
|
|
||||||
number_giga: { foreground: "#ff9e64" }
|
|
||||||
number_huge: { foreground: "#ff007c" }
|
|
||||||
unit_byte: { foreground: "#a9b1d6" }
|
|
||||||
unit_kilo: { foreground: "#89ddff" }
|
|
||||||
unit_mega: { foreground: "#2ac3de" }
|
|
||||||
unit_giga: { foreground: "#ff9e64" }
|
|
||||||
unit_huge: { foreground: "#ff007c" }
|
|
||||||
|
|
||||||
users:
|
|
||||||
user_you: { foreground: "#3d59a1" }
|
|
||||||
user_root: { foreground: "#bb9af7" }
|
|
||||||
user_other: { foreground: "#2ac3de" }
|
|
||||||
group_yours: { foreground: "#89ddff" }
|
|
||||||
group_root: { foreground: "#bb9af7" }
|
|
||||||
group_other: { foreground: "#c0caf5" }
|
|
||||||
|
|
||||||
links:
|
|
||||||
normal: { foreground: "#89ddff" }
|
|
||||||
multi_link_file: { foreground: "#2ac3de" }
|
|
||||||
|
|
||||||
git:
|
|
||||||
new: { foreground: "#9ece6a" }
|
|
||||||
modified: { foreground: "#bb9af7" }
|
|
||||||
deleted: { foreground: "#db4b4b" }
|
|
||||||
renamed: { foreground: "#2ac3de" }
|
|
||||||
typechange: { foreground: "#2ac3de" }
|
|
||||||
ignored: { foreground: "#545c7e" }
|
|
||||||
conflicted: { foreground: "#ff9e64" }
|
|
||||||
|
|
||||||
git_repo:
|
|
||||||
branch_main: { foreground: "#737aa2" }
|
|
||||||
branch_other: { foreground: "#b4f9f8" }
|
|
||||||
git_clean: { foreground: "#292e42" }
|
|
||||||
git_dirty: { foreground: "#bb9af7" }
|
|
||||||
|
|
||||||
security_context:
|
|
||||||
colon: { foreground: "#545c7e" }
|
|
||||||
user: { foreground: "#737aa2" }
|
|
||||||
role: { foreground: "#2ac3de" }
|
|
||||||
typ: { foreground: "#3d59a1" }
|
|
||||||
range: { foreground: "#9d7cd8" }
|
|
||||||
|
|
||||||
file_type:
|
|
||||||
image: { foreground: "#89ddff" }
|
|
||||||
video: { foreground: "#b4f9f8" }
|
|
||||||
music: { foreground: "#73daca" }
|
|
||||||
lossless: { foreground: "#41a6b5" }
|
|
||||||
crypto: { foreground: "#db4b4b" }
|
|
||||||
document: { foreground: "#a9b1d6" }
|
|
||||||
compressed: { foreground: "#ff9e64" }
|
|
||||||
temp: { foreground: "#737aa2" }
|
|
||||||
compiled: { foreground: "#737aa2" }
|
|
||||||
build: { foreground: "#1abc9c" }
|
|
||||||
source: { foreground: "#bb9af7" }
|
|
||||||
|
|
||||||
punctuation: { foreground: "#414868" }
|
|
||||||
date: { foreground: "#e0af68" }
|
|
||||||
inode: { foreground: "#737aa2" }
|
|
||||||
blocks: { foreground: "#737aa2" }
|
|
||||||
header: { foreground: "#a9b1d6" }
|
|
||||||
octal: { foreground: "#ff9e64" }
|
|
||||||
flags: { foreground: "#9d7cd8" }
|
|
||||||
|
|
||||||
symlink_path: { foreground: "#89ddff" }
|
|
||||||
control_char: { foreground: "#ff9e64" }
|
|
||||||
broken_symlink: { foreground: "#ff007c" }
|
|
||||||
broken_path_overlay: { foreground: "#ff007c" }
|
|
||||||
@@ -1,4 +0,0 @@
|
|||||||
{
|
|
||||||
"name": "Tokyo Night",
|
|
||||||
"extension": "enkia.tokyo-night"
|
|
||||||
}
|
|
||||||
Reference in New Issue
Block a user