Merge branch 'dev' into rc
This commit is contained in:
@@ -26,4 +26,9 @@ display="$drive"
|
|||||||
[[ -n "$size" ]] && display="$display ($size)"
|
[[ -n "$size" ]] && display="$display ($size)"
|
||||||
[[ -n "$model" ]] && display="$display - $model"
|
[[ -n "$model" ]] && display="$display - $model"
|
||||||
|
|
||||||
|
# Append compact partition summary
|
||||||
|
part_summary=$(lsblk -nro TYPE,NAME,FSTYPE,MOUNTPOINT "$root_drive" 2>/dev/null | \
|
||||||
|
awk '$1=="part" { printf "%s%s%s", s, ($3==""?"unknown":$3), ($4==""?"":"("$4")"); s=", " }')
|
||||||
|
[[ -n "$part_summary" ]] && display+=" [$part_summary]"
|
||||||
|
|
||||||
echo "$display"
|
echo "$display"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
if [ "$(uname -r | sed 's/-arch/\.arch/')" != "$(pacman -Q linux | awk '{print $2}')" ]; then
|
if [ ! -d "/usr/lib/modules/$(uname -r)" ]; then
|
||||||
gum confirm "Linux kernel has been updated. Reboot?" && omarchy-cmd-reboot
|
gum confirm "Linux kernel has been updated. Reboot?" && omarchy-cmd-reboot
|
||||||
elif [ -f "$HOME/.local/state/omarchy/reboot-required" ]; then
|
elif [ -f "$HOME/.local/state/omarchy/reboot-required" ]; then
|
||||||
gum confirm "Updates require reboot. Ready?" && omarchy-cmd-reboot
|
gum confirm "Updates require reboot. Ready?" && omarchy-cmd-reboot
|
||||||
|
|||||||
@@ -55,4 +55,25 @@
|
|||||||
<family>Liberation Sans</family>
|
<family>Liberation Sans</family>
|
||||||
</prefer>
|
</prefer>
|
||||||
</alias>
|
</alias>
|
||||||
|
|
||||||
|
<alias>
|
||||||
|
<family>sans-serif</family>
|
||||||
|
<accept>
|
||||||
|
<family>Noto Color Emoji</family>
|
||||||
|
</accept>
|
||||||
|
</alias>
|
||||||
|
|
||||||
|
<alias>
|
||||||
|
<family>serif</family>
|
||||||
|
<accept>
|
||||||
|
<family>Noto Color Emoji</family>
|
||||||
|
</accept>
|
||||||
|
</alias>
|
||||||
|
|
||||||
|
<alias>
|
||||||
|
<family>monospace</family>
|
||||||
|
<accept>
|
||||||
|
<family>Noto Color Emoji</family>
|
||||||
|
</accept>
|
||||||
|
</alias>
|
||||||
</fontconfig>
|
</fontconfig>
|
||||||
|
|||||||
@@ -15,6 +15,12 @@ listener {
|
|||||||
on-timeout = loginctl lock-session # lock screen when timeout has passed
|
on-timeout = loginctl lock-session # lock screen when timeout has passed
|
||||||
}
|
}
|
||||||
|
|
||||||
|
listener {
|
||||||
|
timeout = 330 # 5.5min
|
||||||
|
on-timeout = brightnessctl -sd '*::kbd_backlight' set 0 # save state and turn off keyboard backlight
|
||||||
|
on-resume = brightnessctl -rd '*::kbd_backlight' # restore keyboard backlight
|
||||||
|
}
|
||||||
|
|
||||||
listener {
|
listener {
|
||||||
timeout = 330 # 5.5min
|
timeout = 330 # 5.5min
|
||||||
on-timeout = hyprctl dispatch dpms off # screen off when timeout has passed
|
on-timeout = hyprctl dispatch dpms off # screen off when timeout has passed
|
||||||
|
|||||||
@@ -30,8 +30,8 @@
|
|||||||
--interactive-accent-hover: {{ accent }};
|
--interactive-accent-hover: {{ accent }};
|
||||||
|
|
||||||
/* Muted text */
|
/* Muted text */
|
||||||
--text-muted: {{ color8 }};
|
--text-muted: color-mix(in srgb, {{ foreground }} 70%, transparent);
|
||||||
--text-faint: {{ color8 }};
|
--text-faint: color-mix(in srgb, {{ foreground }} 55%, transparent);
|
||||||
|
|
||||||
/* Code */
|
/* Code */
|
||||||
--code-normal: {{ color6 }};
|
--code-normal: {{ color6 }};
|
||||||
|
|||||||
@@ -16,8 +16,8 @@ sudo mkdir -p /etc/systemd/resolved.conf.d
|
|||||||
echo -e '[Resolve]\nDNSStubListenerExtra=172.17.0.1' | sudo tee /etc/systemd/resolved.conf.d/20-docker-dns.conf >/dev/null
|
echo -e '[Resolve]\nDNSStubListenerExtra=172.17.0.1' | sudo tee /etc/systemd/resolved.conf.d/20-docker-dns.conf >/dev/null
|
||||||
sudo systemctl restart systemd-resolved
|
sudo systemctl restart systemd-resolved
|
||||||
|
|
||||||
# Start Docker automatically
|
# Start Docker on-demand
|
||||||
sudo systemctl enable docker
|
sudo systemctl enable docker.socket
|
||||||
|
|
||||||
# Give this user privileged Docker access
|
# Give this user privileged Docker access
|
||||||
sudo usermod -aG docker ${USER}
|
sudo usermod -aG docker ${USER}
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
# Set default XCompose that is triggered with CapsLock
|
# Set default XCompose that is triggered with CapsLock
|
||||||
tee ~/.XCompose >/dev/null <<EOF
|
tee ~/.XCompose >/dev/null <<EOF
|
||||||
|
# Run omarchy-restart-xcompose to apply changes
|
||||||
include "%H/.local/share/omarchy/default/xcompose"
|
include "%H/.local/share/omarchy/default/xcompose"
|
||||||
|
|
||||||
# Identification
|
# Identification
|
||||||
|
|||||||
Executable
+3
@@ -0,0 +1,3 @@
|
|||||||
|
echo "Add emoji font fallback to fontconfig"
|
||||||
|
cp $OMARCHY_PATH/config/fontconfig/fonts.conf ~/.config/fontconfig/fonts.conf
|
||||||
|
fc-cache -f
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
echo "Turn off keyboard backlight when idle"
|
||||||
|
cp $OMARCHY_PATH/config/hypr/hypridle.conf ~/.config/hypr/hypridle.conf
|
||||||
Reference in New Issue
Block a user