diff options
author | awy <awy@awy.one> | 2025-08-18 01:45:10 +0300 |
---|---|---|
committer | awy <awy@awy.one> | 2025-08-18 01:45:10 +0300 |
commit | 7784e90b5071f5a82533c9446248b8efd4a949ab (patch) | |
tree | bf857f06fe2bd992020dec83376b2d0ddcbfc426 | |
parent | 2904911c1f629bfa0ec0397eb6dfd57400d16acf (diff) | |
download | hyprdots-7784e90b5071f5a82533c9446248b8efd4a949ab.tar.gz |
update
-rw-r--r-- | .config/hypr/hyprland.conf | 3 | ||||
-rw-r--r-- | .config/shell/aliasrc | 2 | ||||
-rw-r--r-- | .config/shell/profile | 29 |
3 files changed, 29 insertions, 5 deletions
diff --git a/.config/hypr/hyprland.conf b/.config/hypr/hyprland.conf index 0807607..1a162d9 100644 --- a/.config/hypr/hyprland.conf +++ b/.config/hypr/hyprland.conf @@ -107,7 +107,7 @@ misc { disable_hyprland_logo = true enable_swallow = 1 swallow_regex = ^(footclient)$ - background_color = rgb(000000) + background_color = rgb(1E2326) disable_hyprland_qtutils_check=true } @@ -126,6 +126,7 @@ ecosystem { cursor { default_monitor = DP-3 + no_warps = 1 } input { diff --git a/.config/shell/aliasrc b/.config/shell/aliasrc index 39a4a0d..64b5b7e 100644 --- a/.config/shell/aliasrc +++ b/.config/shell/aliasrc @@ -11,7 +11,7 @@ for command in mount umount dinitctl pacman updatedb su shutdown poweroff reboot done; unset command se() { - choice="$(fd . --base-directory=$HOME/.local/bin -t f --min-depth=1 | sk)" + choice="$(fd . --base-directory=$HOME/.local/bin -t f --min-depth=1 | fzf)" [ -f "$HOME/.local/bin/$choice" ] && $EDITOR "$HOME/.local/bin/$choice" } diff --git a/.config/shell/profile b/.config/shell/profile index c2abd95..f1be951 100644 --- a/.config/shell/profile +++ b/.config/shell/profile @@ -79,9 +79,32 @@ export __GLX_VENDOR_LIBRARY_NAME=nvidia export MOZ_DISABLE_RDD_SANDBOX=1 # For HW in Firefox on nvidia gpu export ELECTRON_OZONE_PLATFORM_HINT=auto # Electron fix export QT_WAYLAND_DISABLE_WINDOWDECORATION=1 # Disables decorations for QT applications -export SKIM_DEFAULT_OPTIONS="$SKIM_DEFAULT_OPTIONS \ ---color=fg:#cdd6f4,bg:#1e1e2e,matched:#313244,matched_bg:#f2cdcd,current:#cdd6f4,current_bg:#45475a,current_match:#1e1e2e,current_match_bg:#f5e0dc,spinner:#a6e3a1,info:#cba6f7,prompt:#89b4fa,cursor:#f38ba8,selected:#eba0ac,header:#94e2d5,border:#6c7086" -# export YT_X_FZF_OPTS="$FZF_DEFAULT_OPTS" +export FZF_DEFAULT_OPTS="$FZF_DEFAULT_OPTS \ +--color=fg:#D3C6AA:regular +--color=fg+:#2D353B:regular +--color=hl:#A7C080:bold +--color=hl+:#2D353B:bold +--color=bg+:#A7C080 +--color=gutter:-1 +--color=prompt:#3D484D +--color=pointer:#A7C080 +--color=scrollbar:#7A8478 +--color=preview-label:#859289 +--cycle +--scroll-off=8 +--tabstop=4 +--preview-window=border-sharp +--highlight-line +--no-ansi +--scrollbar=█ +--wrap-sign= +--bind=ctrl-u:preview-half-page-up +--bind=ctrl-d:preview-half-page-down +--bind=ctrl-l:forward-char +--bind=ctrl-h:backward-char +--bind=resize:refresh-preview +" +export YT_X_FZF_OPTS="$FZF_DEFAULT_OPTS" export ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE="fg=#767676" export BAT_THEME="gruvbox-dark" |