mirror of
https://github.com/basecamp/omarchy.git
synced 2025-07-28 12:49:25 +00:00
Compare commits
1 Commits
df13763d42
...
first-run
Author | SHA1 | Date | |
---|---|---|---|
36c8f17749 |
10
applications/blueberry.desktop
Normal file
10
applications/blueberry.desktop
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
[Desktop Entry]
|
||||||
|
Name=Bluetooth
|
||||||
|
Comment=Configure Bluetooth settings
|
||||||
|
Icon=bluetooth
|
||||||
|
Exec=env GTK_THEME=Adwaita-dark blueberry
|
||||||
|
Terminal=false
|
||||||
|
Type=Application
|
||||||
|
Categories=GTK;GNOME;Settings;HardwareSettings;X-XFCE-SettingsDialog;X-XFCE-HardwareSettings;
|
||||||
|
StartupNotify=true
|
||||||
|
NotShowIn=GNOME;KDE;Unity;
|
@ -2,7 +2,7 @@
|
|||||||
Name=Neovim
|
Name=Neovim
|
||||||
GenericName=Text Editor
|
GenericName=Text Editor
|
||||||
Comment=Edit text files
|
Comment=Edit text files
|
||||||
Exec=alacritty --class=nvim --title=nvim -e nvim -- %F
|
Exec=alacritty -e nvim -- %F
|
||||||
Terminal=false
|
Terminal=false
|
||||||
Type=Application
|
Type=Application
|
||||||
Keywords=Text;editor;
|
Keywords=Text;editor;
|
||||||
|
10
applications/org.pulseaudio.pavucontrol.desktop
Normal file
10
applications/org.pulseaudio.pavucontrol.desktop
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
[Desktop Entry]
|
||||||
|
Version=1.0
|
||||||
|
Name=Volume Control
|
||||||
|
Comment=Adjust the volume level
|
||||||
|
Exec=env GTK_THEME=Adwaita-dark pavucontrol
|
||||||
|
Icon=multimedia-volume-control
|
||||||
|
StartupNotify=true
|
||||||
|
Type=Application
|
||||||
|
Categories=AudioVideo;Audio;Mixer;GTK;Settings;X-XFCE-SettingsDialog;X-XFCE-HardwareSettings;
|
||||||
|
Keywords=pavucontrol;PulseAudio;Microphone;Volume;Fade;Balance;Headset;Speakers;Headphones;Audio;Mixer;Output;Input;Devices;Playback;Recording;System Sounds;Sound Card;Settings;Preferences;
|
@ -1,7 +0,0 @@
|
|||||||
[Desktop Entry]
|
|
||||||
Name=Audio Settings
|
|
||||||
Comment=Using Wiremix
|
|
||||||
Exec=alacritty --class=Wiremix --title=Wiremix -e wiremix
|
|
||||||
Icon=audio-card
|
|
||||||
Type=Application
|
|
||||||
Terminal=false
|
|
14
bin/omarchy
14
bin/omarchy
@ -62,9 +62,8 @@ update_menu() {
|
|||||||
|
|
||||||
theme_menu() {
|
theme_menu() {
|
||||||
show_ascii_art
|
show_ascii_art
|
||||||
local menu=("Pick" "Install" "Remove" "Back")
|
local menu=("Install" "Remove" "Back")
|
||||||
local commands=(
|
local commands=(
|
||||||
"omarchy-theme-menu"
|
|
||||||
"install_theme_prompt"
|
"install_theme_prompt"
|
||||||
"remove_theme_prompt"
|
"remove_theme_prompt"
|
||||||
"main_menu"
|
"main_menu"
|
||||||
@ -105,12 +104,9 @@ remove_theme_prompt() {
|
|||||||
|
|
||||||
setup_menu() {
|
setup_menu() {
|
||||||
show_ascii_art
|
show_ascii_art
|
||||||
local menu=("Add fingerprint sensor" "Remove fingerprint sensor" "Add Fido2 device" "Remove Fido2 device" "Back")
|
local menu=("Fingerprint sensor" "Back")
|
||||||
local commands=(
|
local commands=(
|
||||||
"omarchy-setup-fingerprint"
|
"omarchy-fingerprint-setup"
|
||||||
"omarchy-setup-fingerprint --remove"
|
|
||||||
"omarchy-setup-fido2"
|
|
||||||
"omarchy-setup-fido2 --remove"
|
|
||||||
"main_menu"
|
"main_menu"
|
||||||
)
|
)
|
||||||
local choice
|
local choice
|
||||||
@ -130,8 +126,7 @@ setup_menu() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
open_manual() {
|
open_manual() {
|
||||||
setsid chromium --new-window --ozone-platform=wayland --app="https://manuals.omamix.org/2/the-omarchy-manual" >/dev/null 2>&1 &
|
xdg-open "https://manuals.omamix.org/2/the-omarchy-manual"
|
||||||
clear
|
|
||||||
}
|
}
|
||||||
|
|
||||||
ack_command() {
|
ack_command() {
|
||||||
@ -139,3 +134,4 @@ ack_command() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
main_menu
|
main_menu
|
||||||
|
|
||||||
|
@ -4,5 +4,5 @@
|
|||||||
ln -nsf ~/.local/share/omarchy/config/hypr/hyprland.conf ~/.config/hypr/
|
ln -nsf ~/.local/share/omarchy/config/hypr/hyprland.conf ~/.config/hypr/
|
||||||
ln -nsf ~/.local/share/omarchy/config/hypr/hypridle.conf ~/.config/hypr/
|
ln -nsf ~/.local/share/omarchy/config/hypr/hypridle.conf ~/.config/hypr/
|
||||||
ln -nsf ~/.local/share/omarchy/config/hypr/hyprlock.conf ~/.config/hypr/
|
ln -nsf ~/.local/share/omarchy/config/hypr/hyprlock.conf ~/.config/hypr/
|
||||||
ln -nsf ~/.local/share/omarchy/config/waybar/config.jsonc ~/.config/waybar/
|
ln -nsf ~/.local/share/omarchy/config/waybar/config ~/.config/waybar/
|
||||||
ln -nsf ~/.local/share/omarchy/config/wofi/config ~/.config/wofi/
|
ln -nsf ~/.local/share/omarchy/config/wofi/config ~/.config/wofi/
|
||||||
|
36
bin/omarchy-fingerprint-setup
Executable file
36
bin/omarchy-fingerprint-setup
Executable file
@ -0,0 +1,36 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
yay -S --noconfirm --needed fprintd usbutils
|
||||||
|
|
||||||
|
if ! lsusb | grep -Eiq 'fingerprint|synaptics|goodix'; then
|
||||||
|
echo -e "\e[31m\nNo fingerprint sensor detected.\e[0m"
|
||||||
|
else
|
||||||
|
# Add fingerprint authentication as an option for sudo
|
||||||
|
if ! grep -q pam_fprintd.so /etc/pam.d/sudo; then
|
||||||
|
sudo sed -i '1i auth sufficient pam_fprintd.so' /etc/pam.d/sudo
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Add fingerprint authentication as an option for hyprpolkitagent
|
||||||
|
if [ ! -f /etc/pam.d/polkit-1 ] || ! grep -q pam_fprintd.so /etc/pam.d/polkit-1; then
|
||||||
|
sudo tee /etc/pam.d/polkit-1 >/dev/null <<'EOF'
|
||||||
|
auth required pam_unix.so
|
||||||
|
auth optional pam_fprintd.so
|
||||||
|
|
||||||
|
account required pam_unix.so
|
||||||
|
password required pam_unix.so
|
||||||
|
session required pam_unix.so
|
||||||
|
EOF
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Enroll the first finger
|
||||||
|
echo -e "\e[32m\nLet's setup your right index finger as the first fingerprint.\nKeep moving the finger around on sensor until the process completes.\n\e[0m"
|
||||||
|
sudo fprintd-enroll $USER
|
||||||
|
|
||||||
|
echo -e "\e[32m\nNow let's verify that it's working correctly.\e[0m\n"
|
||||||
|
|
||||||
|
if fprintd-verify; then
|
||||||
|
echo -e "\e[32m\nPerfect! Now you can use your fingerprint on the lock screen (Super + Escape).\e[0m"
|
||||||
|
else
|
||||||
|
echo -e "\e[31m\nSomething went wrong. Maybe try again?\e[0m"
|
||||||
|
fi
|
||||||
|
fi
|
7
bin/omarchy-first-run
Executable file
7
bin/omarchy-first-run
Executable file
@ -0,0 +1,7 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
if [[ ! -f ~/.local/state/omarchy/first-run.marker ]]; then
|
||||||
|
chromium --new-window --app=file://$HOME/.local/share/omarchy/first-run/index.html
|
||||||
|
mkdir -p ~/.local/state/omarchy
|
||||||
|
touch ~/.local/state/omarchy/first-run.marker
|
||||||
|
fi
|
@ -1,14 +1,16 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Power menu for Omarchy
|
||||||
|
# Provides power off, restart, and sleep options
|
||||||
|
|
||||||
|
# Function to show power menu. The first characters are invisible sort keys.
|
||||||
show_power_menu() {
|
show_power_menu() {
|
||||||
# The first characters are invisible sort keys.
|
|
||||||
local menu_options="\u200B Lock
|
local menu_options="\u200B Lock
|
||||||
\u200C Suspend
|
\u200C Suspend
|
||||||
\u200D Relaunch
|
\u200D Relaunch
|
||||||
\u2060 Restart
|
\u2060 Restart
|
||||||
\u2063 Shutdown"
|
\u2063 Shutdown"
|
||||||
|
local selection=$(echo -e "$menu_options" | wofi --show dmenu --prompt "Power Options" --width 150 --height 195 -O alphabetical --style ~/.local/share/omarchy/default/wofi/select.css)
|
||||||
local selection=$(echo -e "$menu_options" | wofi --show dmenu --width 150 --height 195 -O alphabetical --style ~/.config/wofi/select.css)
|
|
||||||
|
|
||||||
case "$selection" in
|
case "$selection" in
|
||||||
*Lock*) hyprlock ;;
|
*Lock*) hyprlock ;;
|
||||||
@ -19,4 +21,5 @@ show_power_menu() {
|
|||||||
esac
|
esac
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# Main execution
|
||||||
show_power_menu
|
show_power_menu
|
@ -1,5 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
# Overwrite local Hyprlock settings with the latest in Omarchy, but create a backup
|
|
||||||
cp -f ~/.config/hypr/hyprlock.conf ~/.config/hypr/hyprlock.conf.bak 2>/dev/null
|
|
||||||
cp -f ~/.local/share/omarchy/config/hypr/hyprlock.conf ~/.config/hypr/ 2>/dev/null
|
|
@ -1,6 +1,6 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
if [[ "$1" == "-y" ]] || gum confirm "Refresh Plymouth theme? This will replace your current startup screen with Omarchy defaults."; then
|
if gum confirm "Refresh Plymouth theme? This will replace your current startup screen with Omarchy defaults."; then
|
||||||
sudo cp ~/.local/share/omarchy/default/plymouth/* /usr/share/plymouth/themes/omarchy/
|
sudo cp ~/.local/share/omarchy/default/plymouth/* /usr/share/plymouth/themes/omarchy/
|
||||||
sudo plymouth-set-default-theme -R omarchy
|
sudo plymouth-set-default-theme -R omarchy
|
||||||
fi
|
fi
|
||||||
|
@ -2,9 +2,10 @@
|
|||||||
|
|
||||||
if gum confirm "Refresh Waybar config? This will replace your current settings with Omarchy defaults."; then
|
if gum confirm "Refresh Waybar config? This will replace your current settings with Omarchy defaults."; then
|
||||||
# Overwrite local waybar settings with the latest in Omarchy
|
# Overwrite local waybar settings with the latest in Omarchy
|
||||||
cp -f ~/.local/share/omarchy/config/waybar/config.jsonc ~/.config/waybar/ 2>/dev/null
|
cp -f ~/.local/share/omarchy/config/waybar/config ~/.config/waybar/ 2>/dev/null
|
||||||
cp -f ~/.local/share/omarchy/config/waybar/style.css ~/.config/waybar/ 2>/dev/null
|
cp -f ~/.local/share/omarchy/config/waybar/style.css ~/.config/waybar/ 2>/dev/null
|
||||||
|
|
||||||
# Restart waybar
|
# Restart waybar
|
||||||
pkill -SIGUSR2 waybar
|
pkill waybar &>/dev/null
|
||||||
|
setsid waybar &>/dev/null &
|
||||||
fi
|
fi
|
||||||
|
@ -1,8 +1,7 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
if [[ "$1" == "-y" ]] || gum confirm "Refresh Wofi config? This will replace your current settings with Omarchy defaults."; then
|
if gum confirm "Refresh Wofi config? This will replace your current settings with Omarchy defaults."; then
|
||||||
# Overwrite local waybar settings with the latest in Omarchy
|
# Overwrite local waybar settings with the latest in Omarchy
|
||||||
cp -f ~/.local/share/omarchy/config/wofi/config ~/.config/wofi/ 2>/dev/null
|
cp -f ~/.local/share/omarchy/config/wofi/config ~/.config/wofi/ 2>/dev/null
|
||||||
cp -f ~/.local/share/omarchy/config/wofi/style.css ~/.config/wofi/ 2>/dev/null
|
cp -f ~/.local/share/omarchy/config/wofi/style.css ~/.config/wofi/ 2>/dev/null
|
||||||
cp -f ~/.local/share/omarchy/config/wofi/select.css ~/.config/wofi/ 2>/dev/null
|
|
||||||
fi
|
fi
|
||||||
|
@ -1,20 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
screenrecording() {
|
|
||||||
notify-send "Screen recording starting..." -t 1000
|
|
||||||
sleep 1
|
|
||||||
wl-screenrec \
|
|
||||||
-f "$HOME/Videos/screenrecording-$(date +'%Y-%m-%d_%H-%M-%S').mp4" \
|
|
||||||
--ffmpeg-encoder-options="-c:v libx264 -crf 23 -preset medium -movflags +faststart" \
|
|
||||||
"$@"
|
|
||||||
}
|
|
||||||
|
|
||||||
if pgrep -x wl-screenrec >/dev/null; then
|
|
||||||
pkill -x wl-screenrec
|
|
||||||
notify-send "Screen recording saved to ~/Videos" -t 2000
|
|
||||||
elif [[ "$1" == "output" ]]; then
|
|
||||||
screenrecording -o ""
|
|
||||||
else
|
|
||||||
region=$(slurp) || exit 1
|
|
||||||
screenrecording -g "$region"
|
|
||||||
fi
|
|
@ -1,9 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
hyprshot -m ${1:-region} --raw |
|
|
||||||
satty --filename - \
|
|
||||||
--output-filename ~/Pictures/screenshot-$(date +'%Y-%m-%d_%H-%M-%S').png \
|
|
||||||
--early-exit \
|
|
||||||
--actions-on-enter save-to-clipboard \
|
|
||||||
--save-after-copy \
|
|
||||||
--copy-command 'wl-copy'
|
|
@ -1,33 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
if [[ "--remove" == "$1" ]]; then
|
|
||||||
yay -Rns --noconfirm libfido2 pam-u2f
|
|
||||||
sudo rm -rf /etc/fido2
|
|
||||||
sudo sed -i '\|^auth[[:space:]]\+sufficient[[:space:]]\+pam_u2f\.so[[:space:]]\+cue[[:space:]]\+authfile=/etc/fido2/fido2$|d' /etc/pam.d/sudo
|
|
||||||
echo -e "\e[32m\nYou've successfully removed the fido2 device setup.\e[0m"
|
|
||||||
else
|
|
||||||
yay -S --noconfirm --needed libfido2 pam-u2f
|
|
||||||
|
|
||||||
tokens=$(fido2-token -L)
|
|
||||||
|
|
||||||
if [ -z "$tokens" ]; then
|
|
||||||
echo -e "\e[31m\nNo fido2 device detected. Plug it in, you may have to unlock it as well\e[0m"
|
|
||||||
else
|
|
||||||
# Create the pamu2fcfg file
|
|
||||||
if [ ! -f /etc/fido2/fido2 ]; then
|
|
||||||
sudo mkdir -p /etc/fido2
|
|
||||||
echo -e "\e[32m\nLet's setup your device by confirming on the device now.\e[0m"
|
|
||||||
pamu2fcfg >/tmp/fido2 # This needs to run as the user
|
|
||||||
sudo mv /tmp/fido2 /etc/fido2/fido2
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Add fido2 auth as an option for sudo
|
|
||||||
if ! grep -q pam_u2f.so /etc/pam.d/sudo; then
|
|
||||||
sudo sed -i '1i auth sufficient pam_u2f.so cue authfile=/etc/fido2/fido2' /etc/pam.d/sudo
|
|
||||||
fi
|
|
||||||
|
|
||||||
if ! sudo echo -e "\e[32m\nPerfect! Now you can use your fido2 device for sudo.\e[0m"; then
|
|
||||||
echo -e "\e[31m\nSomething went wrong. Maybe try again?\e[0m"
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
fi
|
|
@ -1,43 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
if [[ "--remove" == "$1" ]]; then
|
|
||||||
yay -Rns --noconfirm fprintd
|
|
||||||
sudo rm -rf /etc/pam.d/polkit-1
|
|
||||||
sudo sed -i '/pam_fprintd\.so/d' /etc/pam.d/sudo
|
|
||||||
echo -e "\e[32mYou've successfully removed the fingerprint setup.\e[0m"
|
|
||||||
else
|
|
||||||
yay -S --noconfirm --needed fprintd usbutils
|
|
||||||
|
|
||||||
if ! lsusb | grep -Eiq 'fingerprint|synaptics|goodix'; then
|
|
||||||
echo -e "\e[31m\nNo fingerprint sensor detected.\e[0m"
|
|
||||||
else
|
|
||||||
# Add fingerprint authentication as an option for sudo
|
|
||||||
if ! grep -q pam_fprintd.so /etc/pam.d/sudo; then
|
|
||||||
sudo sed -i '1i auth sufficient pam_fprintd.so' /etc/pam.d/sudo
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Add fingerprint authentication as an option for hyprpolkitagent
|
|
||||||
if [ ! -f /etc/pam.d/polkit-1 ] || ! grep -q pam_fprintd.so /etc/pam.d/polkit-1; then
|
|
||||||
sudo tee /etc/pam.d/polkit-1 >/dev/null <<'EOF'
|
|
||||||
auth required pam_unix.so
|
|
||||||
auth optional pam_fprintd.so
|
|
||||||
|
|
||||||
account required pam_unix.so
|
|
||||||
password required pam_unix.so
|
|
||||||
session required pam_unix.so
|
|
||||||
EOF
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Enroll the first finger
|
|
||||||
echo -e "\e[32m\nLet's setup your right index finger as the first fingerprint.\nKeep moving the finger around on sensor until the process completes.\n\e[0m"
|
|
||||||
sudo fprintd-enroll $USER
|
|
||||||
|
|
||||||
echo -e "\e[32m\nNow let's verify that it's working correctly.\e[0m\n"
|
|
||||||
|
|
||||||
if fprintd-verify; then
|
|
||||||
echo -e "\e[32m\nPerfect! Now you can use your fingerprint on the lock screen (Super + Escape).\e[0m"
|
|
||||||
else
|
|
||||||
echo -e "\e[31m\nSomething went wrong. Maybe try again?\e[0m"
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
fi
|
|
@ -56,4 +56,4 @@ grep -h '^[[:space:]]*bind' $USER_HYPRLAND_CONF $OMARCHY_BINDINGS_CONF |
|
|||||||
printf "%-35s → %s\n", key_combo, action;
|
printf "%-35s → %s\n", key_combo, action;
|
||||||
}
|
}
|
||||||
}' |
|
}' |
|
||||||
wofi -dmenu -i --width 60% --height 70% -p 'Hyprland Keybindings' -O alphabetical
|
flock --nonblock /tmp/.wofi.lock -c "wofi -dmenu -i --width 60% --height 70% -p 'Hyprland Keybindings' -O alphabetical --style=\"$HOME/.local/share/omarchy/default/wofi/search.css\""
|
@ -5,24 +5,19 @@
|
|||||||
BACKGROUNDS_DIR="$HOME/.config/omarchy/current/backgrounds/"
|
BACKGROUNDS_DIR="$HOME/.config/omarchy/current/backgrounds/"
|
||||||
CURRENT_BACKGROUND_LINK="$HOME/.config/omarchy/current/background"
|
CURRENT_BACKGROUND_LINK="$HOME/.config/omarchy/current/background"
|
||||||
|
|
||||||
mapfile -d '' -t BACKGROUNDS < <(find "$BACKGROUNDS_DIR" -type f -print0 | sort -z)
|
BACKGROUNDS=($(find "$BACKGROUNDS_DIR" -type f | sort))
|
||||||
TOTAL=${#BACKGROUNDS[@]}
|
TOTAL=${#BACKGROUNDS[@]}
|
||||||
|
|
||||||
if [[ $TOTAL -eq 0 ]]; then
|
|
||||||
notify-send "No background was found for theme" -t 2000
|
|
||||||
pkill -x swaybg
|
|
||||||
uwsm app -- swaybg --color '#000000' >/dev/null 2>&1 &
|
|
||||||
else
|
|
||||||
# Get current background from symlink
|
# Get current background from symlink
|
||||||
if [[ -L "$CURRENT_BACKGROUND_LINK" ]]; then
|
if [[ -L "$CURRENT_BACKGROUND_LINK" ]]; then
|
||||||
CURRENT_BACKGROUND=$(readlink "$CURRENT_BACKGROUND_LINK")
|
CURRENT_BACKGROUND=$(readlink "$CURRENT_BACKGROUND_LINK")
|
||||||
else
|
else
|
||||||
# Default to first background if no symlink exists
|
# Default to first background if no symlink exists
|
||||||
CURRENT_BACKGROUND=""
|
CURRENT_BACKGROUND=${BACKGROUNDS[0]}
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Find current background index
|
# Find current background index
|
||||||
INDEX=-1
|
INDEX=0
|
||||||
for i in "${!BACKGROUNDS[@]}"; do
|
for i in "${!BACKGROUNDS[@]}"; do
|
||||||
if [[ "${BACKGROUNDS[$i]}" == "$CURRENT_BACKGROUND" ]]; then
|
if [[ "${BACKGROUNDS[$i]}" == "$CURRENT_BACKGROUND" ]]; then
|
||||||
INDEX=$i
|
INDEX=$i
|
||||||
@ -31,18 +26,12 @@ else
|
|||||||
done
|
done
|
||||||
|
|
||||||
# Get next background (wrap around)
|
# Get next background (wrap around)
|
||||||
if [[ $INDEX -eq -1 ]]; then
|
|
||||||
# Use the first background when no match was found
|
|
||||||
NEW_BACKGROUND="${BACKGROUNDS[0]}"
|
|
||||||
else
|
|
||||||
NEXT_INDEX=$(((INDEX + 1) % TOTAL))
|
NEXT_INDEX=$(((INDEX + 1) % TOTAL))
|
||||||
NEW_BACKGROUND="${BACKGROUNDS[$NEXT_INDEX]}"
|
NEW_BACKGROUND=${BACKGROUNDS[$NEXT_INDEX]}
|
||||||
fi
|
|
||||||
|
|
||||||
# Set new background symlink
|
# Set new background symlink
|
||||||
ln -nsf "$NEW_BACKGROUND" "$CURRENT_BACKGROUND_LINK"
|
ln -nsf "$NEW_BACKGROUND" "$CURRENT_BACKGROUND_LINK"
|
||||||
|
|
||||||
# Relaunch swaybg
|
# Relaunch swaybg
|
||||||
pkill -x swaybg
|
pkill -x swaybg
|
||||||
uwsm app -- swaybg -i "$NEW_BACKGROUND" -m fill >/dev/null 2>&1 &
|
setsid swaybg -i "$NEW_BACKGROUND" -m fill >/dev/null 2>&2 &
|
||||||
fi
|
|
||||||
|
@ -10,7 +10,7 @@ fi
|
|||||||
|
|
||||||
REPO_URL="$1"
|
REPO_URL="$1"
|
||||||
THEMES_DIR="$HOME/.config/omarchy/themes"
|
THEMES_DIR="$HOME/.config/omarchy/themes"
|
||||||
THEME_NAME=$(basename "$REPO_URL" .git | sed -E 's/^omarchy-//; s/-theme$//')
|
THEME_NAME=$(basename "$REPO_URL" .git)
|
||||||
THEME_PATH="$THEMES_DIR/$THEME_NAME"
|
THEME_PATH="$THEMES_DIR/$THEME_NAME"
|
||||||
THEME_BACKGROUND_PATH="$THEME_PATH/backgrounds"
|
THEME_BACKGROUND_PATH="$THEME_PATH/backgrounds"
|
||||||
BACKGROUNDS_PATH="$HOME/.config/omarchy/backgrounds"
|
BACKGROUNDS_PATH="$HOME/.config/omarchy/backgrounds"
|
||||||
@ -27,10 +27,12 @@ if ! git clone "$REPO_URL" "$THEME_PATH"; then
|
|||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Link backgrounds if present
|
# Copy backgrounds if present
|
||||||
if [ -d $THEME_BACKGROUND_PATH ]; then
|
if [ -d $THEME_BACKGROUND_PATH ]; then
|
||||||
ln -snf $THEME_BACKGROUND_PATH $BACKGROUNDS_THEME_PATH
|
mkdir -p $BACKGROUNDS_THEME_PATH
|
||||||
|
cp $THEME_BACKGROUND_PATH/* $BACKGROUNDS_THEME_PATH/
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Apply the new theme with omarchy-theme-set
|
# Apply the new theme with omarchy-theme-set
|
||||||
omarchy-theme-set $THEME_NAME
|
omarchy-theme-set $THEME_NAME
|
||||||
|
|
||||||
|
@ -22,10 +22,10 @@ mapfile -t themes < <(
|
|||||||
selection=$(printf '%s\n' "${themes[@]}" | wofi \
|
selection=$(printf '%s\n' "${themes[@]}" | wofi \
|
||||||
--show dmenu \
|
--show dmenu \
|
||||||
--allow-markup \
|
--allow-markup \
|
||||||
--width 200 \
|
--width 150 \
|
||||||
--height 400 \
|
--height 300 \
|
||||||
-O alphabetical \
|
-O alphabetical \
|
||||||
--style ~/.config/wofi/select.css 2>/dev/null)
|
--style ~/.local/share/omarchy/default/wofi/select.css)
|
||||||
|
|
||||||
# Remove any Pango markup before converting back to filename
|
# Remove any Pango markup before converting back to filename
|
||||||
clean_selection=$(echo "$selection" | sed -E 's/<[^>]+>//g')
|
clean_selection=$(echo "$selection" | sed -E 's/<[^>]+>//g')
|
||||||
@ -35,3 +35,4 @@ selected_theme=$(echo "$clean_selection" | tr '[:upper:]' '[:lower:]' | tr ' ' '
|
|||||||
|
|
||||||
# Apply the selected theme
|
# Apply the selected theme
|
||||||
"$HOME/.local/share/omarchy/bin/omarchy-theme-set" "$selected_theme"
|
"$HOME/.local/share/omarchy/bin/omarchy-theme-set" "$selected_theme"
|
||||||
|
|
||||||
|
@ -30,5 +30,5 @@ NEXT_INDEX=$(((INDEX + 1) % TOTAL))
|
|||||||
NEW_THEME=${THEMES[$NEXT_INDEX]}
|
NEW_THEME=${THEMES[$NEXT_INDEX]}
|
||||||
NEW_THEME_NAME=$(basename "$NEW_THEME")
|
NEW_THEME_NAME=$(basename "$NEW_THEME")
|
||||||
|
|
||||||
"$HOME/.local/share/omarchy/bin/omarchy-theme-set" $NEW_THEME_NAME
|
omarchy-theme-set $NEW_THEME_NAME
|
||||||
notify-send "Theme changed to $NEW_THEME_NAME" -t 2000
|
notify-send "Theme changed to $NEW_THEME_NAME" -t 2000
|
||||||
|
@ -13,12 +13,7 @@ CURRENT_THEME_DIR="$HOME/.config/omarchy/current/theme"
|
|||||||
|
|
||||||
THEME_NAME="$1"
|
THEME_NAME="$1"
|
||||||
THEME_PATH="$THEMES_DIR/$THEME_NAME"
|
THEME_PATH="$THEMES_DIR/$THEME_NAME"
|
||||||
|
|
||||||
if [[ -d "$HOME/.config/omarchy/themes/$THEME_NAME/backgrounds" ]]; then
|
|
||||||
BACKGROUND_PATH="$HOME/.config/omarchy/themes/$THEME_NAME/backgrounds"
|
|
||||||
else
|
|
||||||
BACKGROUND_PATH="$HOME/.config/omarchy/backgrounds/$THEME_NAME"
|
BACKGROUND_PATH="$HOME/.config/omarchy/backgrounds/$THEME_NAME"
|
||||||
fi
|
|
||||||
|
|
||||||
# Check if the theme entered exists
|
# Check if the theme entered exists
|
||||||
if [[ ! -d "$THEME_PATH" ]]; then
|
if [[ ! -d "$THEME_PATH" ]]; then
|
||||||
@ -30,25 +25,18 @@ fi
|
|||||||
ln -nsf "$BACKGROUND_PATH" "$HOME/.config/omarchy/current/backgrounds"
|
ln -nsf "$BACKGROUND_PATH" "$HOME/.config/omarchy/current/backgrounds"
|
||||||
ln -nsf "$THEME_PATH" "$CURRENT_THEME_DIR"
|
ln -nsf "$THEME_PATH" "$CURRENT_THEME_DIR"
|
||||||
|
|
||||||
# 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
|
|
||||||
|
|
||||||
# Trigger alacritty config reload
|
# Trigger alacritty config reload
|
||||||
touch "$HOME/.config/alacritty/alacritty.toml"
|
touch "$HOME/.config/alacritty/alacritty.toml"
|
||||||
|
|
||||||
# Trigger btop config reload
|
|
||||||
pkill -SIGUSR2 btop
|
|
||||||
|
|
||||||
# Restart components to apply new theme
|
# Restart components to apply new theme
|
||||||
pkill -SIGUSR2 waybar
|
pkill -SIGUSR2 waybar
|
||||||
makoctl reload
|
makoctl reload
|
||||||
hyprctl reload
|
hyprctl reload
|
||||||
|
|
||||||
# Set new background
|
# Set new background
|
||||||
"$HOME/.local/share/omarchy/bin/omarchy-theme-bg-next"
|
first_bg=$(find "$HOME/.config/omarchy/current/backgrounds/" -type f | head -n 1)
|
||||||
|
if [[ -n "$first_bg" ]]; then
|
||||||
|
ln -nsf "$first_bg" "$HOME/.config/omarchy/current/background"
|
||||||
|
pkill -x swaybg
|
||||||
|
setsid swaybg -i "$HOME/.config/omarchy/current/background" -m fill >/dev/null &
|
||||||
|
fi
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
#!/bin/bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
if pgrep -x hypridle > /dev/null; then
|
if pgrep -x hypridle > /dev/null; then
|
||||||
pkill -x hypridle
|
pkill -x hypridle
|
||||||
notify-send "Stop locking computer when idle"
|
notify-send "Stop locking computer when idle"
|
||||||
else
|
else
|
||||||
uwsm app -- hypridle >/dev/null 2>&1 &
|
setsid hypridle &> /dev/null &
|
||||||
notify-send "Now locking computer when idle"
|
notify-send "Now locking computer when idle"
|
||||||
fi
|
fi
|
||||||
|
@ -10,9 +10,8 @@ else
|
|||||||
last_updated_at=$(git log -1 --format=%cd --date=unix)
|
last_updated_at=$(git log -1 --format=%cd --date=unix)
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Get the latest while trying to preserve any modifications
|
# Get the latest
|
||||||
git pull --autostash
|
git pull
|
||||||
git diff --check || git reset --merge
|
|
||||||
|
|
||||||
# Run any pending migrations
|
# Run any pending migrations
|
||||||
for file in migrations/*.sh; do
|
for file in migrations/*.sh; do
|
||||||
@ -28,5 +27,5 @@ done
|
|||||||
# Back to where we came from
|
# Back to where we came from
|
||||||
cd - >/dev/null
|
cd - >/dev/null
|
||||||
|
|
||||||
echo -e ""
|
echo -e "\e[32m\nUpdating system packages\e[0m"
|
||||||
gum confirm "Update system packages too?" && yay -Syu --noconfirm
|
yay -Syu --noconfirm
|
||||||
|
2
boot.sh
Executable file → Normal file
2
boot.sh
Executable file → Normal file
@ -1,5 +1,3 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
ascii_art=' ▄██████▄ ▄▄▄▄███▄▄▄▄ ▄████████ ▄████████ ▄████████ ▄█ █▄ ▄██ ▄
|
ascii_art=' ▄██████▄ ▄▄▄▄███▄▄▄▄ ▄████████ ▄████████ ▄████████ ▄█ █▄ ▄██ ▄
|
||||||
███ ███ ▄██▀▀▀███▀▀▀██▄ ███ ███ ███ ███ ███ ███ ███ ███ ███ ██▄
|
███ ███ ▄██▀▀▀███▀▀▀██▄ ███ ███ ███ ███ ███ ███ ███ ███ ███ ██▄
|
||||||
███ ███ ███ ███ ███ ███ ███ ███ ███ ███ █▀ ███ ███ ███▄▄▄███
|
███ ███ ███ ███ ███ ███ ███ ███ ███ ███ █▀ ███ ███ ███▄▄▄███
|
||||||
|
@ -19,20 +19,20 @@ source = ~/.local/share/omarchy/default/hypr/windows.conf
|
|||||||
source = ~/.config/omarchy/current/theme/hyprland.conf
|
source = ~/.config/omarchy/current/theme/hyprland.conf
|
||||||
|
|
||||||
# Application bindings
|
# Application bindings
|
||||||
$terminal = uwsm app -- alacritty
|
$terminal = alacritty
|
||||||
$browser = uwsm app -- chromium --new-window --ozone-platform=wayland
|
$browser = chromium --new-window --ozone-platform=wayland
|
||||||
$webapp = $browser --app
|
$webapp = $browser --app
|
||||||
|
|
||||||
bind = SUPER, return, exec, $terminal
|
bind = SUPER, return, exec, $terminal
|
||||||
bind = SUPER, F, exec, uwsm app -- nautilus --new-window
|
bind = SUPER, F, exec, nautilus --new-window
|
||||||
bind = SUPER, B, exec, $browser
|
bind = SUPER, B, exec, $browser
|
||||||
bind = SUPER, M, exec, uwsm app -- spotify
|
bind = SUPER, M, exec, spotify
|
||||||
bind = SUPER, N, exec, $terminal -e nvim
|
bind = SUPER, N, exec, $terminal -e nvim
|
||||||
bind = SUPER, T, exec, $terminal -e btop
|
bind = SUPER, T, exec, $terminal -e btop
|
||||||
bind = SUPER, D, exec, $terminal -e lazydocker
|
bind = SUPER, D, exec, $terminal -e lazydocker
|
||||||
bind = SUPER, G, exec, uwsm app -- signal-desktop
|
bind = SUPER, G, exec, signal-desktop
|
||||||
bind = SUPER, O, exec, uwsm app -- obsidian -disable-gpu
|
bind = SUPER, O, exec, obsidian -disable-gpu
|
||||||
bind = SUPER, slash, exec, uwsm app -- 1password
|
bind = SUPER, slash, exec, 1password
|
||||||
|
|
||||||
bind = SUPER, A, exec, $webapp="https://chatgpt.com"
|
bind = SUPER, A, exec, $webapp="https://chatgpt.com"
|
||||||
bind = SUPER SHIFT, A, exec, $webapp="https://grok.com"
|
bind = SUPER SHIFT, A, exec, $webapp="https://grok.com"
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
# ────────────────────────────────────────────────────────────
|
||||||
|
# Hyprlock — minimal blur with ringed input
|
||||||
|
# ────────────────────────────────────────────────────────────
|
||||||
|
|
||||||
source = ~/.config/omarchy/current/theme/hyprlock.conf
|
source = ~/.config/omarchy/current/theme/hyprlock.conf
|
||||||
|
|
||||||
general {
|
general {
|
||||||
@ -32,7 +36,7 @@ input-field {
|
|||||||
placeholder_color = $placeholder_color
|
placeholder_color = $placeholder_color
|
||||||
placeholder_text = Enter Password
|
placeholder_text = Enter Password
|
||||||
check_color = $check_color
|
check_color = $check_color
|
||||||
fail_text = <i>$PAMFAIL ($ATTEMPTS)</i>
|
fail_text = Wrong
|
||||||
|
|
||||||
rounding = 0
|
rounding = 0
|
||||||
shadow_passes = 0
|
shadow_passes = 0
|
||||||
|
@ -92,11 +92,11 @@
|
|||||||
"format-disabled": "",
|
"format-disabled": "",
|
||||||
"format-connected": "",
|
"format-connected": "",
|
||||||
"tooltip-format": "Devices connected: {num_connections}",
|
"tooltip-format": "Devices connected: {num_connections}",
|
||||||
"on-click": "blueberry"
|
"on-click": "GTK_THEME=Adwaita-dark blueberry"
|
||||||
},
|
},
|
||||||
"pulseaudio": {
|
"pulseaudio": {
|
||||||
"format": "{icon}",
|
"format": "{icon}",
|
||||||
"on-click": "alacritty --class=Wiremix -e wiremix",
|
"on-click": "GTK_THEME=Adwaita-dark pavucontrol",
|
||||||
"on-click-right": "pamixer -t",
|
"on-click-right": "pamixer -t",
|
||||||
"tooltip-format": "Playing at {volume}%",
|
"tooltip-format": "Playing at {volume}%",
|
||||||
"scroll-step": 5,
|
"scroll-step": 5,
|
||||||
@ -124,4 +124,66 @@
|
|||||||
"icon-size": 12,
|
"icon-size": 12,
|
||||||
"spacing": 12
|
"spacing": 12
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"cpu": {
|
||||||
|
"interval": 5,
|
||||||
|
"format": "",
|
||||||
|
"on-click": "alacritty -e btop"
|
||||||
|
},
|
||||||
|
"clock": {
|
||||||
|
"format": "{:%A %H:%M}",
|
||||||
|
"format-alt": "{:%d %B W%V %Y}",
|
||||||
|
"tooltip": false
|
||||||
|
},
|
||||||
|
"network": {
|
||||||
|
"format-icons": ["","","","",""],
|
||||||
|
"format" : "{icon}",
|
||||||
|
"format-wifi" : "{icon}",
|
||||||
|
"format-ethernet" : "",
|
||||||
|
"format-disconnected" : "",
|
||||||
|
"tooltip-format-wifi": "{essid} ({frequency} GHz)\n⇣{bandwidthDownBytes} ⇡{bandwidthUpBytes}",
|
||||||
|
"tooltip-format-ethernet": "⇣{bandwidthDownBytes} ⇡{bandwidthUpBytes}",
|
||||||
|
"tooltip-format-disconnected": "Disconnected",
|
||||||
|
"interval": 3,
|
||||||
|
"nospacing": 1,
|
||||||
|
"on-click": "alacritty --class=Impala -e impala"
|
||||||
|
},
|
||||||
|
"battery": {
|
||||||
|
"format": "{capacity}% {icon}",
|
||||||
|
"format-discharging": "{icon}",
|
||||||
|
"format-charging": "{icon}",
|
||||||
|
"format-plugged": "",
|
||||||
|
"format-icons": {
|
||||||
|
"charging": [
|
||||||
|
"", "", "", "", "", "", "", "", "", ""
|
||||||
|
],
|
||||||
|
"default": [
|
||||||
|
"", "", "", "", "", "", "", "", "", ""
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"format-full": "",
|
||||||
|
"tooltip-format-discharging": "{power:>1.0f}W↓ {capacity}%",
|
||||||
|
"tooltip-format-charging": "{power:>1.0f}W↑ {capacity}%",
|
||||||
|
"interval": 5,
|
||||||
|
"states": {
|
||||||
|
"warning": 20,
|
||||||
|
"critical": 10
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"bluetooth": {
|
||||||
|
"format": "",
|
||||||
|
"format-disabled": "",
|
||||||
|
"format-connected": "",
|
||||||
|
"tooltip-format": "Devices connected: {num_connections}",
|
||||||
|
"on-click": "GTK_THEME=Adwaita-dark blueberry"
|
||||||
|
},
|
||||||
|
"pulseaudio": {
|
||||||
|
"format": "",
|
||||||
|
"format-muted": "",
|
||||||
|
"scroll-step": 5,
|
||||||
|
"on-click": "GTK_THEME=Adwaita-dark pavucontrol",
|
||||||
|
"tooltip-format": "Playing at {volume}%",
|
||||||
|
"on-click-right": "pamixer -t",
|
||||||
|
"ignored-sinks": ["Easy Effects Sink"]
|
||||||
|
}
|
||||||
}
|
}
|
@ -1,4 +1,4 @@
|
|||||||
/* Colors are defined by theme file and can be referenced via @base, @text, @selected-text, and @border */
|
/* Colors are defined by theme files and can be referenced via @base, @text, @selected-text, and @border */
|
||||||
|
|
||||||
* {
|
* {
|
||||||
font-family: 'CaskaydiaMono Nerd Font', monospace;
|
font-family: 'CaskaydiaMono Nerd Font', monospace;
|
||||||
@ -71,4 +71,3 @@ window {
|
|||||||
-gtk-icon-transform: scale(0.7);
|
-gtk-icon-transform: scale(0.7);
|
||||||
}
|
}
|
||||||
|
|
||||||
@import ".config/omarchy/current/theme/wofi.css";
|
|
||||||
|
@ -15,7 +15,7 @@ zd() {
|
|||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
open() {
|
open() {
|
||||||
xdg-open "$@" >/dev/null 2>&1 &
|
xdg-open "$@" >/dev/null 2>&1
|
||||||
}
|
}
|
||||||
|
|
||||||
# Directories
|
# Directories
|
||||||
|
@ -69,5 +69,5 @@ web2app-remove() {
|
|||||||
# Ensure changes to ~/.XCompose are immediately available
|
# Ensure changes to ~/.XCompose are immediately available
|
||||||
refresh-xcompose() {
|
refresh-xcompose() {
|
||||||
pkill fcitx5
|
pkill fcitx5
|
||||||
uwsm app -- fcitx5 >/dev/null 2>&1 &
|
setsid fcitx5 &>/dev/null &
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,5 @@
|
|||||||
exec-once = uwsm app -- hypridle
|
exec-once = hypridle & mako & waybar & fcitx5
|
||||||
exec-once = uwsm app -- mako
|
exec-once = swaybg -i ~/.config/omarchy/current/background -m fill
|
||||||
exec-once = uwsm app -- waybar
|
|
||||||
exec-once = uwsm app -- fcitx5
|
|
||||||
exec-once = uwsm app -- swaybg -i ~/.config/omarchy/current/background -m fill
|
|
||||||
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 = ~/.local/share/omarchy/bin/omarchy-first-run
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
# Launching
|
# Launching
|
||||||
bind = SUPER, space, exec, pkill wofi || wofi --show drun -O alphabetical
|
bind = SUPER, space, exec, pkill wofi || wofi --show drun --sort-order=alphabetical --style="$HOME/.local/share/omarchy/default/wofi/search.css"
|
||||||
bind = SUPER, K, exec, pkill wofi || ~/.local/share/omarchy/bin/omarchy-menu-keybindings
|
bind = SUPER, K, exec, ~/.local/share/omarchy/bin/omarchy-show-keybindings
|
||||||
|
|
||||||
# Aesthetics
|
# Aesthetics
|
||||||
bind = SUPER SHIFT, SPACE, exec, pkill -SIGUSR1 waybar
|
bind = SUPER SHIFT, SPACE, exec, pkill -SIGUSR1 waybar
|
||||||
bind = SUPER CTRL, SPACE, exec, ~/.local/share/omarchy/bin/omarchy-theme-bg-next
|
bind = SUPER CTRL, SPACE, exec, ~/.local/share/omarchy/bin/omarchy-theme-bg-next
|
||||||
bind = SUPER SHIFT CTRL, SPACE, exec, pkill wofi || ~/.local/share/omarchy/bin/omarchy-theme-menu
|
bind = SUPER SHIFT CTRL, SPACE, exec, ~/.local/share/omarchy/bin/omarchy-theme-menu
|
||||||
|
|
||||||
# Notifications
|
# Notifications
|
||||||
bind = SUPER, comma, exec, makoctl dismiss
|
bind = SUPER, comma, exec, makoctl dismiss
|
||||||
@ -13,7 +13,7 @@ bind = SUPER SHIFT, comma, exec, makoctl dismiss --all
|
|||||||
bind = SUPER CTRL, comma, exec, makoctl mode -t do-not-disturb && makoctl mode | grep -q 'do-not-disturb' && notify-send "Silenced notifications" || notify-send "Enabled notifications"
|
bind = SUPER CTRL, comma, exec, makoctl mode -t do-not-disturb && makoctl mode | grep -q 'do-not-disturb' && notify-send "Silenced notifications" || notify-send "Enabled notifications"
|
||||||
|
|
||||||
# Power menu controls lock, suspend, relaunch, restart, shutdown
|
# Power menu controls lock, suspend, relaunch, restart, shutdown
|
||||||
bind = SUPER, ESCAPE, exec, pkill wofi || ~/.local/share/omarchy/bin/omarchy-menu-power
|
bind = SUPER, ESCAPE, exec, ~/.local/share/omarchy/bin/omarchy-power-menu
|
||||||
|
|
||||||
# Toggle idling
|
# Toggle idling
|
||||||
bind = SUPER CTRL, I, exec, ~/.local/share/omarchy/bin/omarchy-toggle-idle
|
bind = SUPER CTRL, I, exec, ~/.local/share/omarchy/bin/omarchy-toggle-idle
|
||||||
@ -24,13 +24,9 @@ bind = CTRL, F2, exec, ~/.local/share/omarchy/bin/omarchy-apple-display-brightne
|
|||||||
bind = SHIFT CTRL, F2, exec, ~/.local/share/omarchy/bin/omarchy-apple-display-brightness +60000
|
bind = SHIFT CTRL, F2, exec, ~/.local/share/omarchy/bin/omarchy-apple-display-brightness +60000
|
||||||
|
|
||||||
# Screenshots
|
# Screenshots
|
||||||
bind = , PRINT, exec, omarchy-screenshot
|
bind = , PRINT, exec, hyprshot -m region
|
||||||
bind = SHIFT, PRINT, exec, omarchy-screenshot window
|
bind = SHIFT, PRINT, exec, hyprshot -m window
|
||||||
bind = CTRL, PRINT, exec, omarchy-screenshot output
|
bind = CTRL, PRINT, exec, hyprshot -m output
|
||||||
|
|
||||||
# Screenshots
|
|
||||||
bind = ALT, PRINT, exec, omarchy-screenrecord
|
|
||||||
bind = CTRL ALT, PRINT, exec, omarchy-screenrecord output
|
|
||||||
|
|
||||||
# Color picker
|
# Color picker
|
||||||
bind = SUPER, PRINT, exec, hyprpicker -a
|
bind = SUPER, PRINT, exec, hyprpicker -a
|
||||||
|
@ -5,10 +5,10 @@ windowrule = suppressevent maximize, class:.*
|
|||||||
windowrule = tile, class:^(Chromium)$
|
windowrule = tile, class:^(Chromium)$
|
||||||
|
|
||||||
# Float and center settings and previews
|
# Float and center settings and previews
|
||||||
windowrule = float, class:^(blueberry.py|Impala|Wiremix|org.gnome.NautilusPreviewer|Omarchy)$
|
windowrule = float, class:^(org.pulseaudio.pavucontrol|blueberry.py|Impala|org.gnome.NautilusPreviewer|Omarchy)$
|
||||||
windowrule = size 800 600, class:^(blueberry.py|Impala|Wiremix|org.gnome.NautilusPreviewer)$
|
windowrule = size 800 600, class:^(org.pulseaudio.pavucontrol|blueberry.py|Impala|org.gnome.NautilusPreviewer)$
|
||||||
windowrule = size 645 350, class:Omarchy
|
windowrule = size 645 350, class:Omarchy
|
||||||
windowrule = center, class:^(blueberry.py|Impala|Wiremix|org.gnome.NautilusPreviewer|Omarchy)$
|
windowrule = center, class:^(org.pulseaudio.pavucontrol|blueberry.py|Impala|org.gnome.NautilusPreviewer|Omarchy)$
|
||||||
|
|
||||||
# Float and center file pickers
|
# Float and center file pickers
|
||||||
windowrule = float, class:xdg-desktop-portal-gtk, title:^(Open.*Files?|Save.*Files?|All Files|Save)
|
windowrule = float, class:xdg-desktop-portal-gtk, title:^(Open.*Files?|Save.*Files?|All Files|Save)
|
||||||
@ -22,7 +22,7 @@ windowrule = fullscreen, class:^(com.libretro.RetroArch)$
|
|||||||
windowrule = opacity 0.97 0.9, class:.*
|
windowrule = opacity 0.97 0.9, class:.*
|
||||||
windowrule = opacity 1 0.97, class:^(Chromium|chromium|google-chrome|google-chrome-unstable)$
|
windowrule = opacity 1 0.97, class:^(Chromium|chromium|google-chrome|google-chrome-unstable)$
|
||||||
windowrule = opacity 1 1, initialTitle:^(youtube.com_/)$ # Youtube
|
windowrule = opacity 1 1, initialTitle:^(youtube.com_/)$ # Youtube
|
||||||
windowrule = opacity 1 1, class:^(zoom|vlc|mpv|org.kde.kdenlive|com.obsproject.Studio|com.github.PintaProject.Pinta|imv|org.gnome.NautilusPreviewer)$
|
windowrule = opacity 1 1, class:^(zoom|vlc|mpv|org.kde.kdenlive|com.obsproject.Studio|com.github.PintaProject.Pinta|imv)$
|
||||||
windowrule = opacity 1 1, class:^(com.libretro.RetroArch|steam)$
|
windowrule = opacity 1 1, class:^(com.libretro.RetroArch|steam)$
|
||||||
|
|
||||||
# Fix some dragging issues with XWayland
|
# Fix some dragging issues with XWayland
|
||||||
|
73
default/wofi/search.css
Normal file
73
default/wofi/search.css
Normal file
@ -0,0 +1,73 @@
|
|||||||
|
@import ".config/omarchy/current/theme/wofi.css";
|
||||||
|
@import ".config/wofi/style.css";
|
||||||
|
|
||||||
|
* {
|
||||||
|
font-family: 'CaskaydiaMono Nerd Font', monospace;
|
||||||
|
font-size: 18px;
|
||||||
|
}
|
||||||
|
|
||||||
|
window {
|
||||||
|
margin: 0px;
|
||||||
|
padding: 20px;
|
||||||
|
background-color: @base;
|
||||||
|
opacity: 0.95;
|
||||||
|
}
|
||||||
|
|
||||||
|
#inner-box {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
border: none;
|
||||||
|
background-color: @base;
|
||||||
|
}
|
||||||
|
|
||||||
|
#outer-box {
|
||||||
|
margin: 0;
|
||||||
|
padding: 20px;
|
||||||
|
border: none;
|
||||||
|
background-color: @base;
|
||||||
|
border: 2px solid @border;
|
||||||
|
}
|
||||||
|
|
||||||
|
#scroll {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
border: none;
|
||||||
|
background-color: @base;
|
||||||
|
}
|
||||||
|
|
||||||
|
#input {
|
||||||
|
margin: 0;
|
||||||
|
padding: 10px;
|
||||||
|
border: none;
|
||||||
|
background-color: @base;
|
||||||
|
color: @text;
|
||||||
|
}
|
||||||
|
|
||||||
|
#input:focus {
|
||||||
|
outline: none;
|
||||||
|
box-shadow: none;
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#text {
|
||||||
|
margin: 5px;
|
||||||
|
border: none;
|
||||||
|
color: @text;
|
||||||
|
}
|
||||||
|
|
||||||
|
#entry {
|
||||||
|
background-color: @base;
|
||||||
|
}
|
||||||
|
|
||||||
|
#entry:selected {
|
||||||
|
outline: none;
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#entry:selected #text {
|
||||||
|
color: @selected-text;
|
||||||
|
}
|
||||||
|
|
||||||
|
#entry image {
|
||||||
|
-gtk-icon-transform: scale(0.7);
|
||||||
|
}
|
@ -1,11 +1,8 @@
|
|||||||
/* Use by power menu, theme selector, and other menus without visible search bar */
|
@import ".config/omarchy/current/theme/wofi.css";
|
||||||
|
@import ".local/share/omarchy/default/wofi/search.css";
|
||||||
@import ".config/wofi/style.css";
|
|
||||||
|
|
||||||
#input {
|
#input {
|
||||||
display: none;
|
display: none;
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
margin-top: -200px;
|
margin-top: -200px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@import ".config/omarchy/current/theme/wofi.css";
|
|
8
first-run/index.html
Normal file
8
first-run/index.html
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>Hello</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<h1>Hello!</h1>
|
||||||
|
</body>
|
||||||
|
</html>
|
10
install.sh
Executable file → Normal file
10
install.sh
Executable file → Normal file
@ -1,16 +1,8 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
# Exit immediately if a command exits with a non-zero status
|
# Exit immediately if a command exits with a non-zero status
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Give people a chance to retry running the installation
|
# Give people a chance to retry running the installation
|
||||||
catch_errors() {
|
trap 'echo "Omarchy installation failed! You can retry by running: source ~/.local/share/omarchy/install.sh"' ERR
|
||||||
echo -e "\n\e[31mOmarchy installation failed!\e[0m"
|
|
||||||
echo "You can retry by running: bash ~/.local/share/omarchy/install.sh"
|
|
||||||
echo "Get help from the community: https://discord.gg/tXFUdasqhY"
|
|
||||||
}
|
|
||||||
|
|
||||||
trap catch_errors ERR
|
|
||||||
|
|
||||||
# Install everything
|
# Install everything
|
||||||
for f in ~/.local/share/omarchy/install/*.sh; do
|
for f in ~/.local/share/omarchy/install/*.sh; do
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
sudo pacman -S --needed --noconfirm base-devel
|
sudo pacman -S --needed --noconfirm base-devel
|
||||||
|
|
||||||
if ! command -v yay &>/dev/null; then
|
if ! command -v yay &>/dev/null; then
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
# Need gum to query for input
|
# Need gum to query for input
|
||||||
yay -S --noconfirm --needed gum
|
yay -S --noconfirm --needed gum
|
||||||
|
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
yay -S --noconfirm --needed \
|
yay -S --noconfirm --needed \
|
||||||
wget curl unzip inetutils impala \
|
wget curl unzip inetutils impala \
|
||||||
fd eza fzf ripgrep zoxide bat \
|
fd eza fzf ripgrep zoxide bat \
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
# Copy over Omarchy configs
|
# Copy over Omarchy configs
|
||||||
cp -R ~/.local/share/omarchy/config/* ~/.config/
|
cp -R ~/.local/share/omarchy/config/* ~/.config/
|
||||||
|
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
# Install asdcontrol for controlling brightness on Apple Displays
|
# Install asdcontrol for controlling brightness on Apple Displays
|
||||||
if [ -z "$OMARCHY_BARE" ] && ! command -v asdcontrol &>/dev/null; then
|
if [ -z "$OMARCHY_BARE" ] && ! command -v asdcontrol &>/dev/null; then
|
||||||
git clone https://github.com/nikosdion/asdcontrol.git /tmp/asdcontrol
|
git clone https://github.com/nikosdion/asdcontrol.git /tmp/asdcontrol
|
||||||
|
9
install/backgrounds.sh
Normal file
9
install/backgrounds.sh
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
BACKGROUNDS_DIR=~/.config/omarchy/backgrounds/
|
||||||
|
|
||||||
|
download_background_image() {
|
||||||
|
local url="$1"
|
||||||
|
local path="$2"
|
||||||
|
gum spin --title "Downloading $url as $path..." -- curl -sL -o "$BACKGROUNDS_DIR/$path" "$url"
|
||||||
|
}
|
||||||
|
|
||||||
|
for t in ~/.local/share/omarchy/themes/*; do source "$t/backgrounds.sh"; done
|
@ -1,5 +1,3 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
# Install bluetooth controls
|
# Install bluetooth controls
|
||||||
yay -S --noconfirm --needed blueberry
|
yay -S --noconfirm --needed blueberry
|
||||||
|
|
||||||
|
@ -1,9 +1,6 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
yay -S --noconfirm --needed \
|
yay -S --noconfirm --needed \
|
||||||
brightnessctl playerctl pamixer wiremix wireplumber \
|
brightnessctl playerctl pamixer pavucontrol wireplumber \
|
||||||
fcitx5 fcitx5-gtk fcitx5-qt wl-clip-persist \
|
fcitx5 fcitx5-gtk fcitx5-qt fcitx5-configtool wl-clip-persist \
|
||||||
nautilus sushi ffmpegthumbnailer \
|
nautilus sushi ffmpegthumbnailer \
|
||||||
slurp wl-screenrec satty \
|
|
||||||
mpv evince imv \
|
mpv evince imv \
|
||||||
chromium
|
chromium
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
yay -S --noconfirm --needed \
|
yay -S --noconfirm --needed \
|
||||||
cargo clang llvm mise \
|
cargo clang llvm mise \
|
||||||
imagemagick \
|
imagemagick \
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
#!/bin/bash
|
yay -S --noconfirm --needed docker docker-compose
|
||||||
|
|
||||||
yay -S --noconfirm --needed docker docker-compose docker-buildx
|
|
||||||
|
|
||||||
# Limit log size to avoid running out of disk
|
# Limit log size to avoid running out of disk
|
||||||
sudo mkdir -p /etc/docker
|
sudo mkdir -p /etc/docker
|
||||||
@ -11,12 +9,3 @@ sudo systemctl enable docker
|
|||||||
|
|
||||||
# Give this user privileged Docker access
|
# Give this user privileged Docker access
|
||||||
sudo usermod -aG docker ${USER}
|
sudo usermod -aG docker ${USER}
|
||||||
|
|
||||||
# Prevent Docker from preventing boot for network-online.target
|
|
||||||
sudo mkdir -p /etc/systemd/system/docker.service.d
|
|
||||||
sudo tee /etc/systemd/system/docker.service.d/no-block-boot.conf <<'EOF'
|
|
||||||
[Unit]
|
|
||||||
DefaultDependencies=no
|
|
||||||
EOF
|
|
||||||
|
|
||||||
sudo systemctl daemon-reload
|
|
||||||
|
@ -1,26 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
if ! command -v ufw &>/dev/null; then
|
|
||||||
yay -Sy --noconfirm --needed ufw ufw-docker
|
|
||||||
|
|
||||||
# Allow nothing in, everything out
|
|
||||||
sudo ufw default deny incoming
|
|
||||||
sudo ufw default allow outgoing
|
|
||||||
|
|
||||||
# Allow ports for LocalSend
|
|
||||||
sudo ufw allow 53317/udp
|
|
||||||
sudo ufw allow 53317/tcp
|
|
||||||
|
|
||||||
# Allow SSH in
|
|
||||||
sudo ufw allow 22/tcp
|
|
||||||
|
|
||||||
# Allow Docker containers to use DNS on host
|
|
||||||
sudo ufw allow in on docker0 to any port 53
|
|
||||||
|
|
||||||
# Turn on the firewall
|
|
||||||
sudo ufw enable
|
|
||||||
|
|
||||||
# Turn on Docker protections
|
|
||||||
sudo ufw-docker install
|
|
||||||
sudo ufw reload
|
|
||||||
fi
|
|
@ -1,5 +1,3 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
if [[ ! -f /etc/modprobe.d/hid_apple.conf ]]; then
|
if [[ ! -f /etc/modprobe.d/hid_apple.conf ]]; then
|
||||||
echo "options hid_apple fnmode=2" | sudo tee /etc/modprobe.d/hid_apple.conf
|
echo "options hid_apple fnmode=2" | sudo tee /etc/modprobe.d/hid_apple.conf
|
||||||
|
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
if [ -z "$OMARCHY_BARE" ]; then
|
if [ -z "$OMARCHY_BARE" ]; then
|
||||||
yay -Sy --noconfirm --needed ttf-font-awesome noto-fonts noto-fonts-emoji noto-fonts-cjk noto-fonts-extra
|
yay -Sy --noconfirm --needed ttf-font-awesome noto-fonts noto-fonts-emoji noto-fonts-cjk noto-fonts-extra
|
||||||
else
|
else
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
yay -S --noconfirm --needed \
|
yay -S --noconfirm --needed \
|
||||||
hyprland hyprshot hyprpicker hyprlock hypridle polkit-gnome hyprland-qtutils \
|
hyprland hyprshot hyprpicker hyprlock hypridle polkit-gnome hyprland-qtutils \
|
||||||
wofi waybar mako swaybg \
|
wofi waybar mako swaybg \
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
# Hyprland launched via UWSM and login directly as user, rely on disk encryption + hyprlock for security
|
# Hyprland launched via UWSM and login directly as user, rely on disk encryption + hyprlock for security
|
||||||
yay -S --noconfirm --needed uwsm
|
yay -S --noconfirm --needed uwsm
|
||||||
|
|
||||||
@ -109,16 +108,6 @@ PAMName=login
|
|||||||
WantedBy=graphical.target
|
WantedBy=graphical.target
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
# Make plymouth remain until graphical.target
|
|
||||||
sudo mkdir -p /etc/systemd/system/plymouth-quit.service.d
|
|
||||||
sudo tee /etc/systemd/system/plymouth-quit.service.d/wait-for-graphical.conf <<'EOF'
|
|
||||||
[Unit]
|
|
||||||
After=multi-user.target
|
|
||||||
EOF
|
|
||||||
|
|
||||||
# Prevent plymouth-quit-wait.service
|
|
||||||
sudo systemctl mask plymouth-quit-wait.service
|
|
||||||
|
|
||||||
sudo systemctl daemon-reload
|
sudo systemctl daemon-reload
|
||||||
sudo systemctl enable omarchy-seamless-login.service
|
sudo systemctl enable omarchy-seamless-login.service
|
||||||
|
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
update-desktop-database ~/.local/share/applications
|
update-desktop-database ~/.local/share/applications
|
||||||
|
|
||||||
# Open all images with imv
|
# Open all images with imv
|
||||||
|
@ -1,8 +1,6 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
# Install iwd explicitly if it wasn't included in archinstall
|
# Install iwd explicitly if it wasn't included in archinstall
|
||||||
# This can happen if archinstall used ethernet
|
# This can happen if archinstall used ethernet
|
||||||
if ! command -v iwctl &>/dev/null; then
|
if ! command -v iwd &>/dev/null; then
|
||||||
yay -S --noconfirm --needed iwd
|
yay -S --noconfirm --needed iwd
|
||||||
sudo systemctl enable --now iwd.service
|
sudo systemctl enable --now iwd.service
|
||||||
fi
|
fi
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
# ==============================================================================
|
# ==============================================================================
|
||||||
# Hyprland NVIDIA Setup Script for Arch Linux
|
# Hyprland NVIDIA Setup Script for Arch Linux
|
||||||
# ==============================================================================
|
# ==============================================================================
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
if ! command -v nvim &>/dev/null; then
|
if ! command -v nvim &>/dev/null; then
|
||||||
yay -S --noconfirm --needed nvim luarocks tree-sitter-cli
|
yay -S --noconfirm --needed nvim luarocks tree-sitter-cli
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/bin/bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
if ! command -v plymouth &>/dev/null; then
|
if ! command -v plymouth &>/dev/null; then
|
||||||
yay -S --noconfirm --needed plymouth
|
yay -S --noconfirm --needed plymouth
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
# Setting the performance profile can make a big difference. By default, most systems seem to start in balanced mode,
|
# Setting the performance profile can make a big difference. By default, most systems seem to start in balanced mode,
|
||||||
# even if they're not running off a battery. So let's make sure that's changed to performance.
|
# even if they're not running off a battery. So let's make sure that's changed to performance.
|
||||||
yay -S --noconfirm power-profiles-daemon
|
yay -S --noconfirm power-profiles-daemon
|
||||||
|
@ -1,4 +1,2 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
sudo pacman -S --noconfirm cups cups-pdf cups-filters system-config-printer
|
sudo pacman -S --noconfirm cups cups-pdf cups-filters system-config-printer
|
||||||
sudo systemctl enable --now cups.service
|
sudo systemctl enable --now cups.service
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
# Install Ruby using gcc-14 for compatibility
|
# Install Ruby using gcc-14 for compatibility
|
||||||
yay -S --noconfirm --needed gcc14
|
yay -S --noconfirm --needed gcc14
|
||||||
mise settings set ruby.ruby_build_opts "CC=gcc-14 CXX=g++-14"
|
mise settings set ruby.ruby_build_opts "CC=gcc-14 CXX=g++-14"
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
# Use dark mode for QT apps too (like kdenlive)
|
# Use dark mode for QT apps too (like kdenlive)
|
||||||
sudo pacman -S --noconfirm kvantum-qt5
|
sudo pacman -S --noconfirm kvantum-qt5
|
||||||
|
|
||||||
@ -15,13 +13,13 @@ for f in ~/.local/share/omarchy/themes/*; do ln -s "$f" ~/.config/omarchy/themes
|
|||||||
# Set initial theme
|
# Set initial theme
|
||||||
mkdir -p ~/.config/omarchy/current
|
mkdir -p ~/.config/omarchy/current
|
||||||
ln -snf ~/.config/omarchy/themes/tokyo-night ~/.config/omarchy/current/theme
|
ln -snf ~/.config/omarchy/themes/tokyo-night ~/.config/omarchy/current/theme
|
||||||
ln -snf ~/.config/omarchy/current/theme/backgrounds/1-Pawel-Czerwinski-Abstract-Purple-Blue.jpg ~/.config/omarchy/current/background
|
source ~/.local/share/omarchy/themes/tokyo-night/backgrounds.sh
|
||||||
|
ln -snf ~/.config/omarchy/backgrounds/tokyo-night ~/.config/omarchy/current/backgrounds
|
||||||
|
ln -snf ~/.config/omarchy/current/backgrounds/1-Pawel-Czerwinski-Abstract-Purple-Blue.jpg ~/.config/omarchy/current/background
|
||||||
|
|
||||||
# Set specific app links for current theme
|
# Set specific app links for current theme
|
||||||
ln -snf ~/.config/omarchy/current/theme/neovim.lua ~/.config/nvim/lua/plugins/theme.lua
|
ln -snf ~/.config/omarchy/current/theme/neovim.lua ~/.config/nvim/lua/plugins/theme.lua
|
||||||
|
|
||||||
mkdir -p ~/.config/btop/themes
|
mkdir -p ~/.config/btop/themes
|
||||||
ln -snf ~/.config/omarchy/current/theme/btop.theme ~/.config/btop/themes/current.theme
|
ln -snf ~/.config/omarchy/current/theme/btop.theme ~/.config/btop/themes/current.theme
|
||||||
|
|
||||||
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
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
if [ -z "$OMARCHY_BARE" ]; then
|
if [ -z "$OMARCHY_BARE" ]; then
|
||||||
source ~/.local/share/omarchy/default/bash/functions
|
source ~/.local/share/omarchy/default/bash/functions
|
||||||
web2app "HEY" https://app.hey.com https://www.hey.com/assets/images/general/hey.png
|
web2app "HEY" https://app.hey.com https://www.hey.com/assets/images/general/hey.png
|
||||||
|
@ -1,26 +1,15 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
if [ -z "$OMARCHY_BARE" ]; then
|
if [ -z "$OMARCHY_BARE" ]; then
|
||||||
yay -S --noconfirm --needed \
|
yay -S --noconfirm --needed \
|
||||||
gnome-calculator gnome-keyring signal-desktop \
|
gnome-calculator gnome-keyring signal-desktop \
|
||||||
obsidian-bin libreoffice obs-studio kdenlive \
|
obsidian-bin libreoffice obs-studio kdenlive \
|
||||||
xournalpp localsend-bin
|
pinta xournalpp localsend-bin
|
||||||
|
|
||||||
yay -S --noconfirm --needed pinta ||
|
|
||||||
echo -e "\e[31mFailed to install Pinta. Continuing without!\e[0m"
|
|
||||||
|
|
||||||
yay -S --noconfirm --needed typora ||
|
yay -S --noconfirm --needed typora ||
|
||||||
echo -e "\e[31mFailed to install Typora. Continuing without!\e[0m"
|
echo -e "\e[31mFailed to install Typora. Continuing without!\e[0m"
|
||||||
|
|
||||||
yay -S --noconfirm --needed dropbox libappindicator-gtk3 python-gpgme nautilus-dropbox ||
|
yay -S --noconfirm --needed spotify dropbox-cli 1password-beta 1password-cli ||
|
||||||
echo -e "\e[31mFailed to install Dropbox. Continuing without!\e[0m"
|
echo -e "\e[31mFailed to install Spotify, Dropbox, and/or 1password because of a keyserver problem. Continuing without!\e[0m"
|
||||||
|
|
||||||
yay -S --noconfirm --needed spotify ||
|
|
||||||
echo -e "\e[31mFailed to install Spotify (likely because of a keyserver problem). Continuing without!\e[0m"
|
|
||||||
|
|
||||||
yay -S --noconfirm --needed 1password-beta 1password-cli ||
|
|
||||||
echo -e "\e[31mFailed to install 1password (likely because of a keyserver problem). Continuing without!\e[0m"
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Copy over Omarchy applications
|
# Copy over Omarchy applications
|
||||||
source ~/.local/share/omarchy/bin/omarchy-refresh-applications || true
|
source ~/.local/share/omarchy/bin/omarchy-sync-applications || true
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
echo "Fixing persistent workspaces in waybar config"
|
echo "Fixing persistent workspaces in waybar config"
|
||||||
sed -i 's/"persistent_workspaces":/"persistent-workspaces":/' ~/.config/waybar/config
|
sed -i 's/"persistent_workspaces":/"persistent-workspaces":/' ~/.config/waybar/config
|
||||||
pkill waybar
|
pkill -SIGUSR2 waybar
|
||||||
setsid waybar >/dev/null 2>&1 &
|
|
||||||
|
@ -13,6 +13,6 @@ if [ -f "$HOME/.config/environment.d/fcitx.conf" ]; then
|
|||||||
sed -i 's/^GTK_IM_MODULE=fcitx$//' "$HOME/.config/environment.d/fcitx.conf"
|
sed -i 's/^GTK_IM_MODULE=fcitx$//' "$HOME/.config/environment.d/fcitx.conf"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
omarchy-refresh-plymouth -y
|
omarchy-refresh-plymouth
|
||||||
|
|
||||||
source ~/.local/share/omarchy/install/login.sh
|
source ~/.local/share/omarchy/install/login.sh
|
||||||
|
@ -2,5 +2,4 @@ echo "Make wofi stylesheet user editable"
|
|||||||
if [[ -L "$HOME/.config/wofi/style.css" ]]; then
|
if [[ -L "$HOME/.config/wofi/style.css" ]]; then
|
||||||
rm "$HOME/.config/wofi/style.css"
|
rm "$HOME/.config/wofi/style.css"
|
||||||
cp ~/.local/share/omarchy/config/wofi/style.css ~/.config/wofi/
|
cp ~/.local/share/omarchy/config/wofi/style.css ~/.config/wofi/
|
||||||
cp ~/.local/share/omarchy/config/wofi/search.css ~/.config/wofi/
|
|
||||||
fi
|
fi
|
||||||
|
@ -1,2 +0,0 @@
|
|||||||
echo "Make all wofi stylesheets user editable"
|
|
||||||
omarchy-refresh-wofi -y
|
|
@ -1,2 +0,0 @@
|
|||||||
echo "Use latest Omarchy Waybar configuration"
|
|
||||||
omarchy-refresh-waybar
|
|
@ -1,2 +0,0 @@
|
|||||||
echo "Install missing docker-buildx package for out-of-the-box Kamal compatibility"
|
|
||||||
yay -S --noconfirm --needed docker-buildx
|
|
@ -1,2 +0,0 @@
|
|||||||
echo "Enable ufw firewall"
|
|
||||||
source ~/.local/share/omarchy/install/firewall.sh
|
|
@ -1,15 +0,0 @@
|
|||||||
echo "Make light themes possible"
|
|
||||||
if [[ -f ~/.local/share/applications/blueberry.desktop ]]; then
|
|
||||||
rm -f ~/.local/share/applications/blueberry.desktop
|
|
||||||
rm -f ~/.local/share/applications/org.pulseaudio.pavucontrol.desktop
|
|
||||||
update-desktop-database ~/.local/share/applications/
|
|
||||||
|
|
||||||
gsettings set org.gnome.desktop.interface color-scheme "prefer-dark"
|
|
||||||
gsettings set org.gnome.desktop.interface gtk-theme "Adwaita-dark"
|
|
||||||
|
|
||||||
omarchy-refresh-waybar
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [[ ! -L "~/.config/omarchy/themes/rose-pine" ]]; then
|
|
||||||
ln -snf ~/.local/share/omarchy/themes/rose-pine ~/.config/omarchy/themes/
|
|
||||||
fi
|
|
@ -1,4 +0,0 @@
|
|||||||
echo "Rename waybar config file for syntax highlighting"
|
|
||||||
if [[ -f ~/.config/waybar/config ]]; then
|
|
||||||
mv ~/.config/waybar/config ~/.config/waybar/config.jsonc
|
|
||||||
fi
|
|
@ -1,15 +0,0 @@
|
|||||||
echo "Prevent docker from requiring network readiness on boot"
|
|
||||||
sudo mkdir -p /etc/systemd/system/docker.service.d/
|
|
||||||
sudo tee /etc/systemd/system/docker.service.d/no-block-boot.conf <<'EOF'
|
|
||||||
[Unit]
|
|
||||||
DefaultDependencies=no
|
|
||||||
EOF
|
|
||||||
|
|
||||||
sudo mkdir -p /etc/systemd/system/plymouth-quit.service.d/
|
|
||||||
sudo tee /etc/systemd/system/plymouth-quit.service.d/wait-for-graphical.conf <<'EOF'
|
|
||||||
[Unit]
|
|
||||||
After=multi-user.target
|
|
||||||
EOF
|
|
||||||
|
|
||||||
sudo systemctl daemon-reload
|
|
||||||
sudo systemctl mask plymouth-quit-wait.service
|
|
@ -1,4 +0,0 @@
|
|||||||
echo "Add Catppuccin Latte light theme"
|
|
||||||
if [[ ! -L "~/.config/omarchy/themes/catppuccin-latte" ]]; then
|
|
||||||
ln -snf ~/.local/share/omarchy/themes/catppuccin-latte ~/.config/omarchy/themes/
|
|
||||||
fi
|
|
@ -1,2 +0,0 @@
|
|||||||
echo "Install slurp + wl-screenrec for new ALT+PrintScreen screen recorder"
|
|
||||||
yay -S --noconfirm --needed slurp wl-screenrec
|
|
@ -1,9 +0,0 @@
|
|||||||
echo "Replace volume control GUI with a TUI"
|
|
||||||
|
|
||||||
if ! command -v wiremix &>/dev/null; then
|
|
||||||
yay -S --noconfirm --needed wiremix
|
|
||||||
yay -Rns --noconfirm pavucontrol
|
|
||||||
|
|
||||||
omarchy-refresh-applications
|
|
||||||
omarchy-refresh-waybar
|
|
||||||
fi
|
|
@ -1,4 +0,0 @@
|
|||||||
echo "Remove needless fcitx5-configtool package"
|
|
||||||
if command -v fcitx5-configtool &>/dev/null; then
|
|
||||||
yay -Rns --noconfirm fcitx5-configtool
|
|
||||||
fi
|
|
@ -1,2 +0,0 @@
|
|||||||
echo "Update .config/hypr/hyprlock.conf to include failed attempt counter"
|
|
||||||
omarchy-refresh-hyprlock
|
|
@ -1,2 +0,0 @@
|
|||||||
echo "Install satty for the new screenshot flow"
|
|
||||||
yay -S --noconfirm --needed satty
|
|
@ -1,2 +0,0 @@
|
|||||||
echo "Add missing libappindicator-gtk3 for Dropbox icon tray to work right"
|
|
||||||
yay -S --noconfirm --needed libappindicator-gtk3
|
|
@ -1,67 +0,0 @@
|
|||||||
# https://raw.githubusercontent.com/catppuccin/alacritty/main/catppuccin-latte.toml
|
|
||||||
|
|
||||||
[colors.primary]
|
|
||||||
background = "#eff1f5"
|
|
||||||
foreground = "#4c4f69"
|
|
||||||
dim_foreground = "#8c8fa1"
|
|
||||||
bright_foreground = "#4c4f69"
|
|
||||||
|
|
||||||
[colors.cursor]
|
|
||||||
text = "#eff1f5"
|
|
||||||
cursor = "#dc8a78"
|
|
||||||
|
|
||||||
[colors.vi_mode_cursor]
|
|
||||||
text = "#eff1f5"
|
|
||||||
cursor = "#7287fd"
|
|
||||||
|
|
||||||
[colors.search.matches]
|
|
||||||
foreground = "#eff1f5"
|
|
||||||
background = "#6c6f85"
|
|
||||||
|
|
||||||
[colors.search.focused_match]
|
|
||||||
foreground = "#eff1f5"
|
|
||||||
background = "#40a02b"
|
|
||||||
|
|
||||||
[colors.footer_bar]
|
|
||||||
foreground = "#eff1f5"
|
|
||||||
background = "#6c6f85"
|
|
||||||
|
|
||||||
[colors.hints.start]
|
|
||||||
foreground = "#eff1f5"
|
|
||||||
background = "#df8e1d"
|
|
||||||
|
|
||||||
[colors.hints.end]
|
|
||||||
foreground = "#eff1f5"
|
|
||||||
background = "#6c6f85"
|
|
||||||
|
|
||||||
[colors.selection]
|
|
||||||
text = "#eff1f5"
|
|
||||||
background = "#dc8a78"
|
|
||||||
|
|
||||||
[colors.normal]
|
|
||||||
black = "#bcc0cc"
|
|
||||||
red = "#d20f39"
|
|
||||||
green = "#40a02b"
|
|
||||||
yellow = "#df8e1d"
|
|
||||||
blue = "#1e66f5"
|
|
||||||
magenta = "#ea76cb"
|
|
||||||
cyan = "#179299"
|
|
||||||
white = "#5c5f77"
|
|
||||||
|
|
||||||
[colors.bright]
|
|
||||||
black = "#acb0be"
|
|
||||||
red = "#d20f39"
|
|
||||||
green = "#40a02b"
|
|
||||||
yellow = "#df8e1d"
|
|
||||||
blue = "#1e66f5"
|
|
||||||
magenta = "#ea76cb"
|
|
||||||
cyan = "#179299"
|
|
||||||
white = "#6c6f85"
|
|
||||||
|
|
||||||
[[colors.indexed_colors]]
|
|
||||||
index = 16
|
|
||||||
color = "#fe640b"
|
|
||||||
|
|
||||||
[[colors.indexed_colors]]
|
|
||||||
index = 17
|
|
||||||
color = "#dc8a78"
|
|
Binary file not shown.
Before Width: | Height: | Size: 652 KiB |
@ -1,84 +0,0 @@
|
|||||||
# https://github.com/catppuccin/btop/blob/main/themes/catppuccin_latte.theme
|
|
||||||
# Main background, empty for terminal default, need to be empty if you want transparent background
|
|
||||||
theme[main_bg]="#eff1f5"
|
|
||||||
|
|
||||||
# Main text color
|
|
||||||
theme[main_fg]="#4c4f69"
|
|
||||||
|
|
||||||
# Title color for boxes
|
|
||||||
theme[title]="#4c4f69"
|
|
||||||
|
|
||||||
# Highlight color for keyboard shortcuts
|
|
||||||
theme[hi_fg]="#1e66f5"
|
|
||||||
|
|
||||||
# Background color of selected item in processes box
|
|
||||||
theme[selected_bg]="#bcc0cc"
|
|
||||||
|
|
||||||
# Foreground color of selected item in processes box
|
|
||||||
theme[selected_fg]="#1e66f5"
|
|
||||||
|
|
||||||
# Color of inactive/disabled text
|
|
||||||
theme[inactive_fg]="#8c8fa1"
|
|
||||||
|
|
||||||
# Color of text appearing on top of graphs, i.e uptime and current network graph scaling
|
|
||||||
theme[graph_text]="#dc8a78"
|
|
||||||
|
|
||||||
# Background color of the percentage meters
|
|
||||||
theme[meter_bg]="#bcc0cc"
|
|
||||||
|
|
||||||
# Misc colors for processes box including mini cpu graphs, details memory graph and details status text
|
|
||||||
theme[proc_misc]="#dc8a78"
|
|
||||||
|
|
||||||
# CPU, Memory, Network, Proc box outline colors
|
|
||||||
theme[cpu_box]="#8839ef" #Mauve
|
|
||||||
theme[mem_box]="#40a02b" #Green
|
|
||||||
theme[net_box]="#e64553" #Maroon
|
|
||||||
theme[proc_box]="#1e66f5" #Blue
|
|
||||||
|
|
||||||
# Box divider line and small boxes line color
|
|
||||||
theme[div_line]="#9ca0b0"
|
|
||||||
|
|
||||||
# Temperature graph color (Green -> Yellow -> Red)
|
|
||||||
theme[temp_start]="#40a02b"
|
|
||||||
theme[temp_mid]="#df8e1d"
|
|
||||||
theme[temp_end]="#d20f39"
|
|
||||||
|
|
||||||
# CPU graph colors (Teal -> Lavender)
|
|
||||||
theme[cpu_start]="#179299"
|
|
||||||
theme[cpu_mid]="#209fb5"
|
|
||||||
theme[cpu_end]="#7287fd"
|
|
||||||
|
|
||||||
# Mem/Disk free meter (Mauve -> Lavender -> Blue)
|
|
||||||
theme[free_start]="#8839ef"
|
|
||||||
theme[free_mid]="#7287fd"
|
|
||||||
theme[free_end]="#1e66f5"
|
|
||||||
|
|
||||||
# Mem/Disk cached meter (Sapphire -> Lavender)
|
|
||||||
theme[cached_start]="#209fb5"
|
|
||||||
theme[cached_mid]="#1e66f5"
|
|
||||||
theme[cached_end]="#7287fd"
|
|
||||||
|
|
||||||
# Mem/Disk available meter (Peach -> Red)
|
|
||||||
theme[available_start]="#fe640b"
|
|
||||||
theme[available_mid]="#e64553"
|
|
||||||
theme[available_end]="#d20f39"
|
|
||||||
|
|
||||||
# Mem/Disk used meter (Green -> Sky)
|
|
||||||
theme[used_start]="#40a02b"
|
|
||||||
theme[used_mid]="#179299"
|
|
||||||
theme[used_end]="#04a5e5"
|
|
||||||
|
|
||||||
# Download graph colors (Peach -> Red)
|
|
||||||
theme[download_start]="#fe640b"
|
|
||||||
theme[download_mid]="#e64553"
|
|
||||||
theme[download_end]="#d20f39"
|
|
||||||
|
|
||||||
# Upload graph colors (Green -> Sky)
|
|
||||||
theme[upload_start]="#40a02b"
|
|
||||||
theme[upload_mid]="#179299"
|
|
||||||
theme[upload_end]="#04a5e5"
|
|
||||||
|
|
||||||
# Process box color gradient for threads, mem and cpu usage (Sapphire -> Mauve)
|
|
||||||
theme[process_start]="#209fb5"
|
|
||||||
theme[process_mid]="#7287fd"
|
|
||||||
theme[process_end]="#8839ef"
|
|
@ -1,8 +0,0 @@
|
|||||||
# https://wiki.hyprland.org/Configuring/Variables/#variable-types for info about colors
|
|
||||||
|
|
||||||
$latte_blue = rgb(1e66f5)
|
|
||||||
|
|
||||||
general {
|
|
||||||
col.active_border = $latte_blue
|
|
||||||
}
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
|||||||
$color = rgba(239,241,245,1.0) # base
|
|
||||||
$inner_color = rgba(239,241,245,0.8) # slightly transparent base
|
|
||||||
$outer_color = rgba(30,102,245,1.0) # blue
|
|
||||||
|
|
||||||
$font_color = rgba(76,79,105,1.0) # text
|
|
||||||
|
|
||||||
$placeholder_color = rgba(204,208,218,0.6) # overlay0 (muted gray-blue)
|
|
||||||
$check_color = rgba(4,165,229,1.0) # cyan
|
|
||||||
|
|
@ -1 +0,0 @@
|
|||||||
# This will set "prefer-light" and use "Adwaita" as the theme
|
|
@ -1,24 +0,0 @@
|
|||||||
# Catppuccin Latte – mako notification theme
|
|
||||||
text-color=#4c4f69 # text
|
|
||||||
border-color=#dce0e8 # crust
|
|
||||||
background-color=#eff1f5 # base
|
|
||||||
|
|
||||||
width=420
|
|
||||||
height=110
|
|
||||||
padding=10
|
|
||||||
border-size=2
|
|
||||||
font=Liberation Sans 11
|
|
||||||
anchor=top-right
|
|
||||||
outer-margin=20
|
|
||||||
default-timeout=5000
|
|
||||||
max-icon-size=32
|
|
||||||
|
|
||||||
[app-name=Spotify]
|
|
||||||
invisible=1
|
|
||||||
|
|
||||||
[mode=do-not-disturb]
|
|
||||||
invisible=true
|
|
||||||
|
|
||||||
[mode=do-not-disturb app-name=notify-send]
|
|
||||||
invisible=false
|
|
||||||
|
|
@ -1,19 +0,0 @@
|
|||||||
return {
|
|
||||||
{
|
|
||||||
"catppuccin/nvim",
|
|
||||||
name = "catppuccin",
|
|
||||||
priority = 1000,
|
|
||||||
config = function()
|
|
||||||
require("catppuccin").setup({
|
|
||||||
flavour = "latte", -- other options: "mocha", "frappe", "macchiato"
|
|
||||||
})
|
|
||||||
vim.cmd.colorscheme("catppuccin-latte")
|
|
||||||
end,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"LazyVim/LazyVim",
|
|
||||||
opts = {
|
|
||||||
colorscheme = "catppuccin-latte",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}
|
|
@ -1,4 +0,0 @@
|
|||||||
@define-color foreground #4c4f69; /* text */
|
|
||||||
@define-color background #eff1f5; /* base */
|
|
||||||
@define-color border #dce0e8; /* crust */
|
|
||||||
@define-color accent #1e66f5; /* blue */
|
|
@ -1,4 +0,0 @@
|
|||||||
@define-color selected-text #1e66f5; /* blue */
|
|
||||||
@define-color text #4c4f69; /* text */
|
|
||||||
@define-color base #eff1f5; /* base */
|
|
||||||
@define-color border #dce0e8; /* crust */
|
|
2
themes/catppuccin/backgrounds.sh
Normal file
2
themes/catppuccin/backgrounds.sh
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
mkdir -p "$BACKGROUNDS_DIR/catppuccin"
|
||||||
|
download_background_image "https://github.com/basecamp/omakub/raw/refs/heads/master/themes/catppuccin/background.png" "catppuccin/1-catppuccin.png"
|
Binary file not shown.
Before Width: | Height: | Size: 353 KiB |
2
themes/everforest/backgrounds.sh
Normal file
2
themes/everforest/backgrounds.sh
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
mkdir -p "$BACKGROUNDS_DIR/everforest"
|
||||||
|
download_background_image "https://github.com/basecamp/omakub/raw/refs/heads/master/themes/everforest/background.jpg" "everforest/1-everforest.jpg"
|
Binary file not shown.
Before Width: | Height: | Size: 315 KiB |
2
themes/gruvbox/backgrounds.sh
Normal file
2
themes/gruvbox/backgrounds.sh
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
mkdir -p "$BACKGROUNDS_DIR/gruvbox"
|
||||||
|
download_background_image "https://github.com/basecamp/omakub/raw/refs/heads/master/themes/gruvbox/background.jpg" "gruvbox/1-grubox.jpg"
|
Binary file not shown.
Before Width: | Height: | Size: 434 KiB |
2
themes/kanagawa/backgrounds.sh
Normal file
2
themes/kanagawa/backgrounds.sh
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
mkdir -p "$BACKGROUNDS_DIR/kanagawa"
|
||||||
|
download_background_image "https://github.com/basecamp/omakub/raw/refs/heads/master/themes/kanagawa/background.jpg" "kanagawa/1-kanagawa.jpg"
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user