diff options
| author | ewy1 <ewy0@protonmail.com> | 2025-01-14 11:40:24 +0100 |
|---|---|---|
| committer | ewy1 <ewy0@protonmail.com> | 2025-01-14 11:40:24 +0100 |
| commit | dc1dadc4617ab3e2015e26f617d8a0be30032ad4 (patch) | |
| tree | 7f2e173fd52c0c1deb90b748c3b4a295b82e0f60 /.config | |
| parent | b932c24a206f4bf8f33b470075902b1aae4594ab (diff) | |
add system specific mako config
Diffstat (limited to '.config')
| -rw-r--r-- | .config/mako/config | 1 | ||||
| -rw-r--r-- | .config/sway/hosts/study/outputs | 6 | ||||
| -rw-r--r-- | .config/zsh/themes/ewout.zsh-theme | 10 |
3 files changed, 12 insertions, 5 deletions
diff --git a/.config/mako/config b/.config/mako/config index fe2fb6b..1672857 100644 --- a/.config/mako/config +++ b/.config/mako/config @@ -6,7 +6,6 @@ text-alignment=right icon-location=left anchor=bottom-left margin=5,5 -output=HDMI-A-1 [mode=do-not-disturb] invisible=1 diff --git a/.config/sway/hosts/study/outputs b/.config/sway/hosts/study/outputs index 3d3e7f2..88c8a1e 100644 --- a/.config/sway/hosts/study/outputs +++ b/.config/sway/hosts/study/outputs @@ -1,3 +1,7 @@ +output eDP-1 { + scale 1.25 +} + output eDP-2 { - scale 1.5 + scale 1.25 } diff --git a/.config/zsh/themes/ewout.zsh-theme b/.config/zsh/themes/ewout.zsh-theme index 01f8fbe..e44e887 100644 --- a/.config/zsh/themes/ewout.zsh-theme +++ b/.config/zsh/themes/ewout.zsh-theme @@ -1,6 +1,10 @@ autoload colors && colors setopt prompt_subst +local reset="%{$reset_color%}" +local red="%{${fg[red]}%}" +local green="%{${fg[green]}%}" + __git() { command -v git > /dev/null || return [[ $(git rev-parse --is-inside-work-tree 2> /dev/null) == true ]] && echo " $(git branch --show-current)" @@ -18,12 +22,12 @@ __exitStatus() { __exitFace() { code=$1 - [ $1 = 0 ] && echo "$fg[green]:3$reset_color" - [ $1 != 0 ] && echo "$fg[red]D:$reset_color" + [ $1 = 0 ] && echo "${green}:3$reset" + [ $1 != 0 ] && echo "${red}D:$reset" } __prompt() { - echo "%# " + echo '%# ' } __generate_prompt() { |
