From 19e61d3dec15afc9e8a6da6828b6b379dbf6c6bf Mon Sep 17 00:00:00 2001 From: "Matthieu Fortin (CPC/CCP)" Date: Wed, 12 Feb 2025 15:05:55 -0500 Subject: [PATCH] At times like this I wish I was a Garbage Man. --- geany/.config/geany/session.conf | 4 ++-- hypr/.config/hypr/hyprland.conf | 3 +++ hypr/.config/hypr/pyprland.toml | 4 ++-- hypr/README.md | 7 +++++++ nvim/.config/nvim/init.lua | 2 -- nvim/.config/nvim/lua/vim-options.lua | 3 +++ 6 files changed, 17 insertions(+), 6 deletions(-) diff --git a/geany/.config/geany/session.conf b/geany/.config/geany/session.conf index 71ab634..165d3f4 100644 --- a/geany/.config/geany/session.conf +++ b/geany/.config/geany/session.conf @@ -1,5 +1,5 @@ [files] -recent_files=/home/matt/.dotfiles/.gitignore;/home/matt/.dotfiles/.stow-local-ignre;/home/matt/.dotfiles/.stow-local-ignore;/home/matt/hypr.txt;/run/user/1000/kio-fuse-QHFRuD/smb/mfortin@172.31.180.13/TCLI_Staff/mfortin/Southby-Batches-main/List Volumes/!vol.bat;/run/user/1000/kio-fuse-QHFRuD/smb/mfortin@172.31.180.13/TCLI_Staff/mfortin/Southby-Batches-main/Privilege Escalation (Admin or System)/GETSYSTEM.cmd;/run/user/1000/kio-fuse-QHFRuD/smb/mfortin@172.31.180.13/TCLI_Staff/mfortin/Southby-Batches-main/ScreenSaverPasswordDisable/ScreenSaverDisable.bat;/home/matt/package.txt;/run/user/1000/kio-fuse-QHFRuD/smb/mfortin@172.31.180.13/TCLI_Staff/mfortin/New Text Document.txt;/run/user/1000/kio-fuse-QHFRuD/smb/mfortin@172.31.180.13/TCLI_Staff/mfortin/hypr.txt; +recent_files=/home/matt/Downloads/README.txt;/run/user/1000/kio-fuse-QTlNOQ/smb/mfortin@172.31.180.13/CMPFOR/Read Only Files/E01s/PE07-IMAGE-24-01/PE06.txt;/home/matt/.dotfiles/.gitignore;/home/matt/.dotfiles/.stow-local-ignre;/home/matt/.dotfiles/.stow-local-ignore;/home/matt/hypr.txt;/run/user/1000/kio-fuse-QHFRuD/smb/mfortin@172.31.180.13/TCLI_Staff/mfortin/Southby-Batches-main/List Volumes/!vol.bat;/run/user/1000/kio-fuse-QHFRuD/smb/mfortin@172.31.180.13/TCLI_Staff/mfortin/Southby-Batches-main/Privilege Escalation (Admin or System)/GETSYSTEM.cmd;/run/user/1000/kio-fuse-QHFRuD/smb/mfortin@172.31.180.13/TCLI_Staff/mfortin/Southby-Batches-main/ScreenSaverPasswordDisable/ScreenSaverDisable.bat;/home/matt/package.txt; recent_projects= current_page=-1 @@ -10,7 +10,7 @@ project_file_path=/home/matt/Projects [geany] treeview_position=0 msgwindow_position=805 -geometry=0;0;3428;1388;1; +geometry=0;0;2086;1388;1; sidebar_page=2 [VTE] diff --git a/hypr/.config/hypr/hyprland.conf b/hypr/.config/hypr/hyprland.conf index e66ad96..1ae850b 100644 --- a/hypr/.config/hypr/hyprland.conf +++ b/hypr/.config/hypr/hyprland.conf @@ -45,6 +45,9 @@ exec-once=trayscale --hide-window ### ENVIRONMENT VARIABLES ### +# ssh-agent +env = SSH_AUTH_SOCK,$XDG_RUNTIME_DIR/ssh-agent.socket + env = XCURSOR_SIZE,24 #env = XCURSOR_THEME,Bibata-Modern-Classic env = HYPRCURSOR_SIZE,24 diff --git a/hypr/.config/hypr/pyprland.toml b/hypr/.config/hypr/pyprland.toml index 1c275a8..9c268e8 100644 --- a/hypr/.config/hypr/pyprland.toml +++ b/hypr/.config/hypr/pyprland.toml @@ -6,8 +6,8 @@ plugins = [ [scratchpads.term] animation = "fromTop" -command = "kitty --class kitty-dropterm" -class = "kitty-dropterm" +command = "ghostty --class ghostty-dropterm" +class = "ghostty-dropterm" size = "75% 60%" max_size = "1920px 100%" margin = 50 diff --git a/hypr/README.md b/hypr/README.md index 7634329..5e41fc1 100644 --- a/hypr/README.md +++ b/hypr/README.md @@ -1,7 +1,14 @@ https://github.com/gaurav210233/simple-hyprland/ + https://alexforsale.github.io/dotfiles-hyprland/ https://config.phundrak.com/hyprland.html + https://alexforsale.github.io/posts/hyprland/ https://github.com/JaKooLit/Hyprland-Dots/ + + +### ssh-agent + +https://www.lorenzobettini.it/2023/09/hyprland-and-ssh-agent/ diff --git a/nvim/.config/nvim/init.lua b/nvim/.config/nvim/init.lua index 73ecea8..0bb211c 100644 --- a/nvim/.config/nvim/init.lua +++ b/nvim/.config/nvim/init.lua @@ -13,9 +13,7 @@ if not (vim.uv or vim.loop).fs_stat(lazypath) then end end vim.opt.rtp:prepend(lazypath) -vim.o.background = "dark" -vim.g.mapleader = " " require("lazy").setup("plugins") require("vim-options") require("keymaps") diff --git a/nvim/.config/nvim/lua/vim-options.lua b/nvim/.config/nvim/lua/vim-options.lua index 21b92bb..c941289 100644 --- a/nvim/.config/nvim/lua/vim-options.lua +++ b/nvim/.config/nvim/lua/vim-options.lua @@ -8,3 +8,6 @@ vim.opt.swapfile = false vim.cmd.colorscheme "catppuccin-mocha" vim.wo.number = true + +vim.cmd("set mouse=") +vim.g.mapleader = " "