add config from gitlab
This commit is contained in:
commit
e02f7f00f9
842 changed files with 297362 additions and 0 deletions
57
dotfiles/hypr/conf/binding.lua
Normal file
57
dotfiles/hypr/conf/binding.lua
Normal file
|
|
@ -0,0 +1,57 @@
|
|||
-- shutdown hyprland and lock
|
||||
hl.bind(
|
||||
"CTRL + ALT + M",
|
||||
hl.dsp.exec_cmd("command -v hyprshutdown >/dev/null 2>&1 && hyprshutdown || hyprctl dispatch 'hl.dsp.exit()'"),
|
||||
{ description = "hyprland shutdown" }
|
||||
)
|
||||
hl.bind("CTRL + ALT + L", hl.dsp.exec_cmd(lockscreen))
|
||||
-- launchers
|
||||
hl.bind("ALT + D", hl.dsp.exec_cmd(fileManager))
|
||||
hl.bind("ALT + Q", hl.dsp.exec_cmd(terminal))
|
||||
hl.bind("ALT + N", hl.dsp.exec_cmd("kitty -e nvim"))
|
||||
hl.bind("ALT + W", hl.dsp.exec_cmd(app_launcher))
|
||||
hl.bind("ALT + F", hl.dsp.exec_cmd(browser))
|
||||
hl.bind("ALT + Z", hl.dsp.exec_cmd("zotero"))
|
||||
-- window management
|
||||
hl.bind("ALT + V", hl.dsp.window.float({ action = "toggle" }))
|
||||
hl.bind("ALT + F4", hl.dsp.window.close())
|
||||
-- move focus
|
||||
hl.bind("ALT + L", hl.dsp.focus({ direction = "right" }))
|
||||
hl.bind("ALT + H", hl.dsp.focus({ direction = "left" }))
|
||||
hl.bind("ALT + J", hl.dsp.focus({ direction = "up" }))
|
||||
hl.bind("ALT + K", hl.dsp.focus({ direction = "down" }))
|
||||
-- move window
|
||||
hl.bind("CTRL + SUPER + L", hl.dsp.window.move({ direction = "right" }))
|
||||
hl.bind("CTRL + SUPER + H", hl.dsp.window.move({ direction = "left" }))
|
||||
hl.bind("CTRL + SUPER + K", hl.dsp.window.move({ direction = "up" }))
|
||||
hl.bind("CTRL + SUPER + J", hl.dsp.window.move({ direction = "down" }))
|
||||
-- move to monitor
|
||||
hl.bind("SUPER + A", hl.dsp.focus({ monitor = monitorA }))
|
||||
hl.bind("SUPER + B", hl.dsp.focus({ monitor = monitorB }))
|
||||
hl.bind("CTRL + SUPER + A", hl.dsp.window.move({ monitor = monitorA }))
|
||||
hl.bind("CTRL + SUPER + B", hl.dsp.window.move({ monitor = monitorB }))
|
||||
-- change workspace
|
||||
hl.bind("SUPER + L", hl.dsp.focus({ workspace = "r+1" }))
|
||||
hl.bind("SUPER + H", hl.dsp.focus({ workspace = "r-1" }))
|
||||
hl.bind("SUPER + K", hl.dsp.window.move({ workspace = "r+1" }))
|
||||
hl.bind("SUPER + J", hl.dsp.window.move({ workspace = "r-1" }))
|
||||
-- screenshot
|
||||
hl.bind(
|
||||
"Print",
|
||||
hl.dsp.exec_cmd(
|
||||
[[mkdir -p ~/Screenshots && filename=~/Screenshots/"$(date +'%F-%T').png" && grim -g "$(slurp)" "$filename" && wl-copy < "$filename" && gwenview "$filename"]]
|
||||
)
|
||||
)
|
||||
hl.bind("SUPER + V", hl.dsp.exec_cmd("cliphist list | rofi -dmenu -display-columns 2 | cliphist decode | wl-copy"))
|
||||
|
||||
-- mouse resize
|
||||
hl.bind("ALT + mouse:272", hl.dsp.window.drag(), { mouse = true })
|
||||
hl.bind("ALT + mouse:273", hl.dsp.window.resize(), { mouse = true })
|
||||
|
||||
-- brightness
|
||||
hl.bind("XF86MonBrightnessUp", hl.dsp.exec_cmd("brightnessctl -e4 -n2 set 5%+"))
|
||||
hl.bind("XF86MonBrightnessDown", hl.dsp.exec_cmd("brightnessctl -e4 -n2 set 5%-"))
|
||||
hl.bind("XF86AudioRaiseVolume", hl.dsp.exec_cmd("wpctl set-volume -l 1 @DEFAULT_AUDIO_SINK@ 5%+"))
|
||||
hl.bind("XF86AudioLowerVolume", hl.dsp.exec_cmd("wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%-"))
|
||||
hl.bind("XF86AudioMute", hl.dsp.exec_cmd("wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle"))
|
||||
hl.bind("XF86AudioMicMute", hl.dsp.exec_cmd("wpctl set-mute @DEFAULT_AUDIO_SOURCE@ toggle"))
|
||||
9
dotfiles/hypr/conf/env.lua
Normal file
9
dotfiles/hypr/conf/env.lua
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
-- environment variables
|
||||
hl.env("LIBVA_DRIVER_NAME", "nvidia")
|
||||
hl.env("__GLX_VENDOR_LIBRARY_NAME", "nvidia")
|
||||
hl.env("XDG_CURRENT_DESKTOP", "Hyprland")
|
||||
hl.env("XDG_SESSION_TYPE", "wayland")
|
||||
hl.env("NVD_BACKEND", "direct")
|
||||
hl.env("ELECTRON_OZONE_PLATFORM_HINT", "auto")
|
||||
hl.env("SCREENSHOT_DIR", "$home/Screenshots")
|
||||
hl.env("GDK_SCALE", 1)
|
||||
23
dotfiles/hypr/conf/input.lua
Normal file
23
dotfiles/hypr/conf/input.lua
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
hl.config({
|
||||
input = {
|
||||
|
||||
kb_layout = "fr",
|
||||
numlock_by_default = true,
|
||||
|
||||
accel_profile = "adaptive",
|
||||
follow_mouse = 1,
|
||||
|
||||
sensitivity = -0.3,
|
||||
touchpad = {
|
||||
disable_while_typing = true,
|
||||
scroll_factor = 1.2,
|
||||
natural_scroll = false,
|
||||
middle_button_emulation = false,
|
||||
},
|
||||
},
|
||||
})
|
||||
|
||||
hl.device({
|
||||
name = "elan1203:00-04f3:307a-touchpad",
|
||||
enabled = false,
|
||||
})
|
||||
13
dotfiles/hypr/conf/monitor.lua
Normal file
13
dotfiles/hypr/conf/monitor.lua
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
hl.monitor({
|
||||
output = monitorA,
|
||||
mode = "1920x1080@120.00200",
|
||||
position = "0x0",
|
||||
scale = "1",
|
||||
})
|
||||
|
||||
hl.monitor({
|
||||
output = monitorB,
|
||||
mode = "1920x1080@60",
|
||||
position = "1920x0",
|
||||
scale = "1",
|
||||
})
|
||||
6
dotfiles/hypr/conf/others.lua
Normal file
6
dotfiles/hypr/conf/others.lua
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
hl.misc({
|
||||
force_default_wallpaper = 0,
|
||||
disable_hyprland_logo = true,
|
||||
disable_splash_rendering = true,
|
||||
vrr = 1,
|
||||
})
|
||||
13
dotfiles/hypr/conf/startup.lua
Normal file
13
dotfiles/hypr/conf/startup.lua
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
hl.on("hyprland.start", function()
|
||||
hl.exec_cmd("hyprpaper")
|
||||
hl.exec_cmd("wl-paste --type text --watch cliphist store")
|
||||
hl.exec_cmd("wl-paste --type image --watch cliphist store")
|
||||
hl.exec_cmd("systemctl --user start hyprpolkitagent")
|
||||
hl.exec_cmd("hyprctl setcursor Bibata-Modern-Ice 24")
|
||||
hl.exec_cmd("noctalia-shell")
|
||||
-- hl.exec_cmd("hyprpanel")
|
||||
-- hl.exec_cmd("hyprsunset")
|
||||
-- hl.exec_cmd("xsettingsd")
|
||||
-- hl.exec_cmd("nwg-look -a")
|
||||
hl.exec_cmd("protonmail-bridge")
|
||||
end)
|
||||
68
dotfiles/hypr/conf/style.lua
Normal file
68
dotfiles/hypr/conf/style.lua
Normal file
|
|
@ -0,0 +1,68 @@
|
|||
hl.config({
|
||||
general = {
|
||||
gaps_in = 4,
|
||||
gaps_out = 2,
|
||||
border_size = 2,
|
||||
col = {
|
||||
active_border = { colors = { "rgba(7aa2f7ee)", "rgba(bb9af7ee)" }, angle = 45 },
|
||||
inactive_border = "rgba(414868aa)",
|
||||
},
|
||||
resize_on_border = true,
|
||||
hover_icon_on_border = true,
|
||||
allow_tearing = true,
|
||||
layout = "dwindle",
|
||||
snap = {
|
||||
enabled = true,
|
||||
},
|
||||
},
|
||||
decoration = {
|
||||
rounding = 5,
|
||||
rounding_power = 10,
|
||||
|
||||
-- Change transparency of focused and unfocused windows
|
||||
active_opacity = 1.0,
|
||||
inactive_opacity = 1.0,
|
||||
|
||||
shadow = {
|
||||
enabled = false,
|
||||
range = 4,
|
||||
render_power = 3,
|
||||
color = 0xee1a1a1a,
|
||||
},
|
||||
|
||||
blur = {
|
||||
enabled = false,
|
||||
size = 3,
|
||||
passes = 1,
|
||||
vibrancy = 0.1696,
|
||||
},
|
||||
},
|
||||
animations = {
|
||||
enabled = false,
|
||||
},
|
||||
})
|
||||
-- tiling managers
|
||||
hl.config({
|
||||
dwindle = {
|
||||
preserve_split = true,
|
||||
},
|
||||
master = {
|
||||
new_status = "master",
|
||||
orientation = "center",
|
||||
mfact = "0.5",
|
||||
},
|
||||
scrolling = {
|
||||
fullscreen_on_one_column = true,
|
||||
column_width = 0.9,
|
||||
direction = right,
|
||||
},
|
||||
})
|
||||
-- others
|
||||
hl.config({
|
||||
misc = {
|
||||
force_default_wallpaper = 0,
|
||||
disable_hyprland_logo = true,
|
||||
vrr = 0,
|
||||
disable_splash_rendering = true,
|
||||
},
|
||||
})
|
||||
9
dotfiles/hypr/conf/variables.lua
Normal file
9
dotfiles/hypr/conf/variables.lua
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
terminal = "kitty"
|
||||
fileManager = "dolphin"
|
||||
menu = "wofi --show drun"
|
||||
home = "/home/afoucaultc/"
|
||||
lockscreen = "hyprlock"
|
||||
browser = "zen-beta"
|
||||
app_launcher = "~/.config/rofi/launchers/type-1/launcher.sh"
|
||||
monitorA = "eDP-1"
|
||||
monitorB = "HDMI-A-1"
|
||||
7
dotfiles/hypr/conf/windowrules.lua
Normal file
7
dotfiles/hypr/conf/windowrules.lua
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
hl.window_rule({
|
||||
name = "opacity kitty",
|
||||
match = {
|
||||
class = "kitty",
|
||||
},
|
||||
opacity = "0.9",
|
||||
})
|
||||
12
dotfiles/hypr/conf/workspace.lua
Normal file
12
dotfiles/hypr/conf/workspace.lua
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
local workspaces = {
|
||||
{
|
||||
id = 1,
|
||||
layout = "scroll",
|
||||
persistent = "true",
|
||||
},
|
||||
{
|
||||
id = 2,
|
||||
layout = "dwindle",
|
||||
persistent = "true",
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue