Compare commits

...

4 Commits

Author SHA1 Message Date
135b00bb08 Added nvim init 2024-07-26 12:24:55 +02:00
e96eef01bd Added shortcut for brave 2024-02-21 17:04:26 +01:00
c3d0531e35 Added ssh-agent, polkit-kde-agent and swaylock 2024-02-21 17:04:09 +01:00
623a0243ec Removed changing wallpapers 2024-02-21 17:03:01 +01:00
3 changed files with 33 additions and 3 deletions

View File

@@ -27,6 +27,7 @@ xwayland {
# Some default env vars.
env = XCURSOR_SIZE,24
env = SSH_AUTH_SOCK,$XDG_RUNTIME_DIR/ssh-agent.sock
# For all categories, see https://wiki.hyprland.org/Configuring/Variables/
input {
@@ -146,6 +147,7 @@ bind = $mainMod, F, fullscreen
# Quick launch
bind = $mainMod, F1, exec, kitty ranger
bind = $mainMod, F2, exec, brave
# Media keys
binde = , XF86AudioRaiseVolume, exec, pactl set-sink-volume @DEFAULT_SINK@ +5%
@@ -164,11 +166,11 @@ $w3 = hyprctl hyprpaper wallpaper "eDP-1,/home/datalore/Pictures/Wallpapers/gruv
# Switch workspaces with mainMod + [0-9]
bind = $mainMod, 1, workspace, 1
bind = $mainMod, 1, exec, $w1
# bind = $mainMod, 1, exec, $w1
bind = $mainMod, 2, workspace, 2
bind = $mainMod, 2, exec, $w2
# bind = $mainMod, 2, exec, $w2
bind = $mainMod, 3, workspace, 3
bind = $mainMod, 3, exec, $w3
# bind = $mainMod, 3, exec, $w3
bind = $mainMod, 4, workspace, 4
bind = $mainMod, 5, workspace, 5
bind = $mainMod, 6, workspace, 6
@@ -200,4 +202,6 @@ bindm = $mainMod, mouse:273, resizewindow
exec-once = hyprpaper
exec-once = waybar
exec-once = dunst
exec-once = /usr/lib/polkit-kde-authentication-agent-1
exec-once = gammastep
exec-once = swayidle -w timeout 300 'swaylock -f' timeout 360 'hyprctl dispatch dpms off' resume 'hyprctl dispatch dpms on' before-sleep 'swaylock -f' lock 'swaylock -f'

23
.config/nvim/init.lua Normal file
View File

@@ -0,0 +1,23 @@
-- deactivating netrw as it conflicts with nvim-tree
vim.g.loaded_netrw = 1
vim.g.loaded_netrwPlugin = 1
local lazypath = vim.fn.stdpath 'data' .. '/lazy/lazy.nvim'
if not vim.loop.fs_stat(lazypath) then
local lazyrepo = 'https://github.com/folke/lazy.nvim.git'
vim.fn.system{'git', 'clone', '--filter=blob:none', '--branch=stable', lazyrepo, lazypath}
end
vim.opt.rtp:prepend(lazypath)
require("lazy").setup {
"xiyaowong/transparent.nvim",
{"willothy/nvim-cokeline", dependencies = {
"nvim-lua/plenary.nvim",
"nvim-tree/nvim-web-devicons"
}, config = true},
{"nvim-tree/nvim-tree.lua", dependencies = {
"nvim-tree/nvim-web-devicons"
}}
}
require("nvim-tree").setup()

View File

@@ -10,6 +10,9 @@ My current dotfiles for hyprland
- kitty
- wofi
- zsh
- swaylock
- swayidle
- polkit-kde-agent
### Optional