Compare commits

..

2 Commits

Author SHA1 Message Date
a7bd9ec5da aerospace 2nd monitor support 2025-08-30 11:20:06 +01:00
Kenneth
39477f2b01 fix install script 2025-07-15 10:52:34 +02:00
2 changed files with 8 additions and 5 deletions

View File

@@ -56,7 +56,7 @@ inner.horizontal = 8
inner.vertical = 8 inner.vertical = 8
outer.left = 8 outer.left = 8
outer.bottom = 8 outer.bottom = 8
outer.top = 44 outer.top = 8
outer.right = 8 outer.right = 8
# 'main' binding mode declaration # 'main' binding mode declaration
@@ -155,6 +155,11 @@ alt-r = 'mode resize'
alt-f = 'layout floating tiling' alt-f = 'layout floating tiling'
[workspace-to-monitor-force-assignment]
3 = 'secondary'
D = 'secondary'
M = 'secondary'
[mode.resize.binding] [mode.resize.binding]
h = 'resize smart -50' h = 'resize smart -50'
l = 'resize smart +50' l = 'resize smart +50'

View File

@@ -4,14 +4,14 @@ set -eu
for arg in "$@"; do declare $arg='1'; done for arg in "$@"; do declare $arg='1'; done
if [ ! -n "$macos" ]; if [[ ! -n macos ]];
then linux=1; then linux=1;
else else
linux=""; linux="";
fi fi
# install asdf tool-versions # install asdf tool-versions
ln -s "$HOME/dotfiles/.tool-versions" "$HOME/.tool-versions" ln -s "$HOME/dotfiles/.tool-versions" "$HOME/.tool-versions" || :
# install wezterm config # install wezterm config
ln -s "$HOME/dotfiles/.wezterm.lua" "$HOME/.wezterm.lua" || : ln -s "$HOME/dotfiles/.wezterm.lua" "$HOME/.wezterm.lua" || :
@@ -24,8 +24,6 @@ fi
# install starship config # install starship config
ln -s "$HOME/dotfiles/starship.toml" "$HOME/.config/starship.toml" || : ln -s "$HOME/dotfiles/starship.toml" "$HOME/.config/starship.toml" || :
echo $macos
if [ ! -n "$linux" ]; then if [ ! -n "$linux" ]; then
# install aerospace config # install aerospace config
ln -s "$HOME/dotfiles/aerospace.toml" "$HOME/.aerospace.toml" || : ln -s "$HOME/dotfiles/aerospace.toml" "$HOME/.aerospace.toml" || :