add changes

This commit is contained in:
Seymur Bagirov 2024-03-09 04:39:11 +04:00
parent 64237a0772
commit 10d78efe47
7 changed files with 17 additions and 14 deletions

View File

@ -1,13 +1,12 @@
{ {
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json", "$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json",
"logo": { "logo": {
"source": "opensuse_tumbleweed_small",
"color": { "color": {
"1": "green" "1": "green"
}, },
"padding": { // "padding": {
"top": 2 // "top": 2
} // }
}, },
"display": { "display": {
"separator": " ", "separator": " ",

View File

@ -1,8 +1,8 @@
$lockCmd = hyprlock $lockCmd = pidof hyprlock || hyprlock
general { general {
lock_cmd = $lockCmd # dbus/sysd lock command (loginctl lock-session) lock_cmd = $lockCmd # dbus/sysd lock command (loginctl lock-session)
unlock_cmd = loginctl unlock-session # same as above, but unlock unlock_cmd = loginctl unlock-session # same as above, but unlock
# before_sleep_cmd = $lockCmd # command ran before sleep before_sleep_cmd = $lockCmd # command ran before sleep
# after_sleep_cmd = $lockCmd # command ran after sleep # after_sleep_cmd = $lockCmd # command ran after sleep
ignore_dbus_inhibit = false # whether to ignore dbus-sent idle-inhibit requests (used by e.g. firefox or steam) ignore_dbus_inhibit = false # whether to ignore dbus-sent idle-inhibit requests (used by e.g. firefox or steam)
} }

View File

@ -1 +0,0 @@
hyprctl dispatch focuswindow address:"$(hyprctl -j clients | jq -r '.[]|select(.address != "" and .title != "")|(.class + "\t" + .address + "\t" + .title)' | wofi --show dmenu | cut -f2)"

View File

@ -179,7 +179,7 @@ source = ~/.config/hypr/rofi.conf
bind = $mainMod, Q, exec, kitty bind = $mainMod, Q, exec, kitty
bind = $mainMod, C, killactive, bind = $mainMod, C, killactive,
# bind = $mainMod, M, exit, bind = $mainMod, M, exit,
bind = $mainMod, E, exec, dolphin bind = $mainMod, E, exec, dolphin
bind = $mainMod, V, togglefloating, bind = $mainMod, V, togglefloating,
bind = $mainMod, F, fullscreen, 1 bind = $mainMod, F, fullscreen, 1
@ -194,13 +194,18 @@ bind = $mainMod, F12, exec, grimblast --cursor --notify --freeze save screen
bind = $mainMod_SHIFT, F12, exec, grimblast --cursor --notify --freeze save active bind = $mainMod_SHIFT, F12, exec, grimblast --cursor --notify --freeze save active
bind = $mainMod SHIFT, P, pin bind = $mainMod SHIFT, P, pin
bind = $mainMod SHIFT, B, exec, firefox bind = $mainMod SHIFT, B, exec, firefox
# Move focus with mainMod + arrow keys # Move focus with mainMod + arrow keys
bind = $mainMod, left, movefocus, l bind = $mainMod, left, movefocus, l
bind = $mainMod, right, movefocus, r bind = $mainMod, right, movefocus, r
bind = $mainMod, up, movefocus, u bind = $mainMod, up, movefocus, u
bind = $mainMod, down, movefocus, d bind = $mainMod, down, movefocus, d
# Move focus with mainMod + h/j/k/l
bind = $mainMod_SHIFT, h, movefocus, l
bind = $mainMod_SHIFT, j, movefocus, d
bind = $mainMod_SHIFT, k, movefocus, u
bind = $mainMod_SHIFT, l, movefocus, r
# Cycle through windows # Cycle through windows
# bind = SHIFT_CTRL,W, cyclenext # bind = SHIFT_CTRL,W, cyclenext

View File

@ -1,6 +1,6 @@
bind = $mainMod, R, exec, ~/.config/rofi/launchers/type-6/launcher.sh -m drun bind = $mainMod, R, exec, ~/.config/rofi/launchers/type-6/launcher.sh -m drun
bind = $mainMod, B, exec, ~/.config/rofi/launchers/type-6/launcher.sh -m run bind = $mainMod, B, exec, ~/.config/rofi/launchers/type-6/launcher.sh -m run
bind = $mainMod, W, exec, ~/.config/hypr/hyprland-window-switcher.sh bind = $mainMod, W, exec, ~/.config/rofi/launchers/type-6/launcher.sh -m window
bind = $mainMod_ALT, B, exec, ~/.config/rofi/launchers/type-6/launcher.sh -m filebrowser bind = $mainMod_ALT, B, exec, ~/.config/rofi/launchers/type-6/launcher.sh -m filebrowser
bind = $mainMod, X, exec, ~/.config/rofi/powermenu/type-6/powermenu.sh bind = $mainMod, X, exec, ~/.config/rofi/powermenu/type-6/powermenu.sh
bind = $secondaryMod, V, exec, ~/.config/rofi/applets/bin/volume.sh bind = $secondaryMod, V, exec, ~/.config/rofi/applets/bin/volume.sh

View File

@ -1270,7 +1270,7 @@ background_opacity 0.97
#: kitty will cycle through various known editors (vim, emacs, etc.) #: kitty will cycle through various known editors (vim, emacs, etc.)
#: and take the first one that exists on your system. #: and take the first one that exists on your system.
# close_on_child_death no close_on_child_death yes
#: Close the window when the child process (shell) exits. With the #: Close the window when the child process (shell) exits. With the
#: default value no, the terminal will remain open when the child #: default value no, the terminal will remain open when the child

View File

@ -51,7 +51,7 @@ vim.keymap.set("n", "<leader>bd", "<cmd>bd<CR>")
vim.keymap.set("n", "<leader>bda", "<cmd>:%bd|e#<CR>") vim.keymap.set("n", "<leader>bda", "<cmd>:%bd|e#<CR>")
vim.keymap.set("n", "<leader><leader>", function() -- vim.keymap.set("n", "<leader><leader>", function()
vim.cmd("so") -- vim.cmd("so")
end) -- end)