From 4ec20d6b6aae529342a02ad08e6430e78d641242 Mon Sep 17 00:00:00 2001 From: Seymur Bagirov Date: Fri, 5 Jan 2024 01:25:14 +0400 Subject: [PATCH] add changes --- .ideavimrc | 12 ++++++++++-- hypr/autostart.conf | 2 ++ hypr/hyprland.conf | 6 ++++++ hypr/wallpaper.conf | 4 +++- setup.sh | 17 ++++++++++++----- zsh/.profile | 2 +- 6 files changed, 34 insertions(+), 9 deletions(-) diff --git a/.ideavimrc b/.ideavimrc index 54d5a1c..03ebc66 100644 --- a/.ideavimrc +++ b/.ideavimrc @@ -37,16 +37,24 @@ map tb (ToggleLineBreakpoint) map qi (QuickImplementations) map pf (GotoFile) map ps (TextSearchAction) -map cj (HideActiveWindow) +map hw (HideActiveWindow) +map hwa (HideAllWindows) +map sw (JumpToLastWindow) map pe (SearchEverywhere) -""csharp specific actions +""dotnet specific actions map emm (EfCore.Features.Migrations.AddMigrationAction) map emr (EfCore.Features.Database.RemoveMigrationAction) map edu (EfCore.Features.Database.UpdateDatabaseAction) +map dnc (Rider.Web.DotNetUserSecrets) + +map dng (ActivateNuGetToolWindow) + + + ""convenient remaps nnoremap :m .+1== nnoremap :m .-2== diff --git a/hypr/autostart.conf b/hypr/autostart.conf index ac64e3d..92acffa 100755 --- a/hypr/autostart.conf +++ b/hypr/autostart.conf @@ -17,6 +17,8 @@ exec-once = wl-paste --type image --watch cliphist store #Stores only image data exec-once = python3 -m http.server -d /home/themystery/Bento +exec-once = ~/Documents/hyprland-plugins/plugins-loader.sh load + # env diff --git a/hypr/hyprland.conf b/hypr/hyprland.conf index 416de20..0c2cd34 100644 --- a/hypr/hyprland.conf +++ b/hypr/hyprland.conf @@ -271,3 +271,9 @@ bind = $mainMod ALT, down, movewindow, d misc { disable_hyprland_logo=true } + +plugin { + hyprtrails { + color = rgba(ffaa00ff) + } +} diff --git a/hypr/wallpaper.conf b/hypr/wallpaper.conf index c409bfd..7749318 100644 --- a/hypr/wallpaper.conf +++ b/hypr/wallpaper.conf @@ -4,7 +4,9 @@ # exec-once = mpvpaper -o "--loop" -f HDMI-A-2 ~/Videos/LiveWallpapers/mylivewallpapers.com-ADDED-Mercy-Overwatch.mp4 # exec-once = mpvpaper -o "--loop" -f HDMI-A-2 ~/Videos/LiveWallpapers/mylivewallpapers-com-Rainy-Train-Station-4K.mp4 -exec-once = mpvpaper -o "--loop" -f HDMI-A-2 ~/Videos/LiveWallpapers/mylivewallpapers-com-Night-Italian-Cafe-4K.mp4 +# exec-once = mpvpaper -o "--loop" -f HDMI-A-2 ~/Videos/LiveWallpapers/mylivewallpapers-com-Night-Italian-Cafe-4K.mp4 +exec-once = swww init + # exec-once=wallengine --screen-root HDMI-A-2 1383845959 diff --git a/setup.sh b/setup.sh index 5cd9e6d..771cdc9 100644 --- a/setup.sh +++ b/setup.sh @@ -1,10 +1,15 @@ #!/bin/sh -movePathAndLink() { +moveAndLink() { mv ~/.config/$1 ~/.config/$1.bckp ln -s $(pwd)/$1 ~/.config/$1 } +moveHomeAndLink(){ + mv ~/$1 ~/$1.bckp + ln -s $(pwd)/$1 ~/$1 +} + moveShell() { mv ~/.zshrc ~/.zshrc.bckp ln -s $(pwd)/zsh/.zshrc ~/.zshrc @@ -40,10 +45,12 @@ while $status; do fi done -movePathAndLink nvim -movePathAndLink hypr -movePathAndLink waybar -movePathAndLink kitty +moveAndLink nvim +moveAndLink hypr +moveAndLink waybar +moveAndLink kitty + +moveHomeAndLink .ideavimrc moveShell diff --git a/zsh/.profile b/zsh/.profile index 3bf915f..f113a0d 100644 --- a/zsh/.profile +++ b/zsh/.profile @@ -47,7 +47,7 @@ test -s ~/.alias && . ~/.alias || true alias vim="nvim" -export DOTFILE="$HOME/Documents/dotfiles" +export DOTFILES="$HOME/Documents/dotfiles" alias overwatch='lutris lutris:rungame/overwatch-2' alias nuget='mono ~/nuget.exe'