mirror of
https://github.com/basecamp/omarchy.git
synced 2026-02-17 15:25:37 +00:00
Compare commits
4 Commits
23b74c6212
...
49a2941e2b
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
49a2941e2b | ||
|
|
6a5b64b4bc | ||
|
|
c484b66bcb | ||
|
|
87da28a965 |
5
config/wiremix/wiremix.toml
Normal file
5
config/wiremix/wiremix.toml
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# overwrites default wiremix configuration
|
||||||
|
# defaults: https://github.com/tsowell/wiremix/blob/main/wiremix.toml
|
||||||
|
|
||||||
|
[char_sets.default]
|
||||||
|
default_device = "⮞"
|
||||||
@@ -3,6 +3,9 @@ if command -v mise &> /dev/null; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
if command -v starship &> /dev/null; then
|
if command -v starship &> /dev/null; then
|
||||||
|
# clear stale readline state before rendering prompt (prevents artifacts in prompt after abnormal exits like SIGQUIT)
|
||||||
|
__sanitize_prompt() { printf '\r\033[K'; }
|
||||||
|
PROMPT_COMMAND="__sanitize_prompt${PROMPT_COMMAND:+;$PROMPT_COMMAND}"
|
||||||
eval "$(starship init bash)"
|
eval "$(starship init bash)"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|||||||
@@ -4,12 +4,13 @@ windowrule = tag +firefox-based-browser, match:class ([fF]irefox|zen|librewolf)
|
|||||||
windowrule = tag -default-opacity, match:tag chromium-based-browser
|
windowrule = tag -default-opacity, match:tag chromium-based-browser
|
||||||
windowrule = tag -default-opacity, match:tag firefox-based-browser
|
windowrule = tag -default-opacity, match:tag firefox-based-browser
|
||||||
|
|
||||||
|
# Video apps: remove chromium browser tag so they don't get opacity applied
|
||||||
|
windowrule = tag -chromium-based-browser, match:class (chrome-youtube.com__-Default|chrome-app.zoom.us__wc_home-Default)
|
||||||
|
windowrule = tag -default-opacity, match:class (chrome-youtube.com__-Default|chrome-app.zoom.us__wc_home-Default)
|
||||||
|
|
||||||
# Force chromium-based browsers into a tile to deal with --app bug
|
# Force chromium-based browsers into a tile to deal with --app bug
|
||||||
windowrule = tile on, match:tag chromium-based-browser
|
windowrule = tile on, match:tag chromium-based-browser
|
||||||
|
|
||||||
# Only a subtle opacity change, but not for video sites
|
# Only a subtle opacity change, but not for video sites
|
||||||
windowrule = opacity 1.0 0.97, match:tag chromium-based-browser
|
windowrule = opacity 1.0 0.97, match:tag chromium-based-browser
|
||||||
windowrule = opacity 1.0 0.97, match:tag firefox-based-browser
|
windowrule = opacity 1.0 0.97, match:tag firefox-based-browser
|
||||||
|
|
||||||
# Some video sites should never have opacity applied to them
|
|
||||||
windowrule = opacity 1.0 1.0, match:initial_title ((?i)(?:[a-z0-9-]+\.)*youtube\.com_/|app\.zoom\.us_/wc/home)
|
|
||||||
|
|||||||
6
migrations/1769964367.sh
Normal file
6
migrations/1769964367.sh
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
echo "Improve audio controls icon for default selection"
|
||||||
|
|
||||||
|
if [[ ! -f ~/.config/wiremix/wiremix.toml ]]; then
|
||||||
|
mkdir -p ~/.config/wiremix
|
||||||
|
cp -f $OMARCHY_PATH/config/wiremix/wiremix.toml ~/.config/wiremix/
|
||||||
|
fi
|
||||||
Reference in New Issue
Block a user