first commit
This commit is contained in:
commit
205faf4224
5471 changed files with 973850 additions and 0 deletions
16
config/hypr/hyprland_config/.config/hypr/old.txt
Normal file
16
config/hypr/hyprland_config/.config/hypr/old.txt
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
# windows rules (to see)
|
||||
windowrulev2 = center, floating:[1]
|
||||
windowrulev2 = float,class:^(xdg-desktop-portal-gtk)$
|
||||
windowrulev2 = float,title:^(Picture-in-Picture)$
|
||||
windowrulev2 = opacity 0.95 override 0.95 override 0.95 override, class: firefox
|
||||
windowrulev2 = opacity 1 override 1 override, class:^(org.pwmt.zathura)$
|
||||
windowrulev2 = opacity 1 override 1 override, class:^(org.pwmt.nomacs)$
|
||||
windowrulev2 = opacity 1.0 override 1 override, class:^(gimp)$
|
||||
|
||||
windowrulev2 = opacity 1.0 override 1 override, class:^(steam)$
|
||||
windowrulev2 = opacity 1.0 override 1 override, title:^(Steam)$
|
||||
windowrulev2 = opacity 1.0 override 1 override, class:^(steam_app_[0-9]+)$
|
||||
windowrulev2 = opacity 1.0 override 1 override, class:^(steam_app_[0-9]+)$,floating:0
|
||||
|
||||
windowrule = nofocus,class:^$,title:^$,xwayland:1,floating:1,fullscreen:0,pinned:0
|
||||
|
||||
89
config/hypr/hyprland_config/binding.conf
Normal file
89
config/hypr/hyprland_config/binding.conf
Normal file
|
|
@ -0,0 +1,89 @@
|
|||
# Brightness
|
||||
bind = ALT , up, exec, brightnessctl -d *::kbd_backlight set +33%
|
||||
bind = ALT , down, exec, brightnessctl -d *::kbd_backlight set -33%
|
||||
|
||||
# shutdown (window, hyprland)
|
||||
bind = ALT, F4, killactive,
|
||||
bind = CTRL SUPER, M, exit,
|
||||
bind = CTRL ALT, L, exec, $lockscreen
|
||||
|
||||
# apps
|
||||
bind = ALT, D, exec, $fileManager
|
||||
bind = ALT, N, exec, $terminal nvim
|
||||
bind = ALT, Q, exec, $terminal
|
||||
bind = ALT, W, exec, $app_launcher
|
||||
bind = ALT, F, exec, $browser
|
||||
bind = ALT, Z, exec, zotero
|
||||
|
||||
# Move focus with mod0 + arrow keys
|
||||
bind = CTRL SUPER, h, movefocus, l
|
||||
bind = CTRL SUPER, l, movefocus, r
|
||||
bind = CTRL SUPER, k, movefocus, u
|
||||
bind = CTRL SUPER, j, movefocus, d
|
||||
|
||||
# screenshot
|
||||
bind =, Print, exec, filename="$(date +'%F-%T').png" && grimblast --freeze copysave area "$filename" && mkdir -p ~/Screenshots && mv "$filename" ~/Screenshots/ && nomacs ~/Screenshots/"$filename"
|
||||
bind = SUPER, V, exec, cliphist list | rofi -dmenu -display-columns 2 | cliphist decode | wl-copy
|
||||
|
||||
# Switch workspaces
|
||||
bind = SUPER, ampersand, workspace, 1
|
||||
bind = SUPER, eacute, workspace, 2
|
||||
bind = SUPER, quotedbl, workspace, 3
|
||||
bind = SUPER, apostrophe, workspace, 4
|
||||
bind = SUPER, parenleft, workspace, 5
|
||||
bind = SUPER, minus, workspace, 6
|
||||
bind = SUPER, egrave, workspace, 7
|
||||
bind = SUPER, underscore, workspace, 8
|
||||
bind = SUPER, ccedilla, workspace, 9
|
||||
bind = SUPER, agrave, workspace, 10
|
||||
bind = SUPER, up, workspace, name:secondscreen
|
||||
bind = SUPER, Q, workspace, name:coding
|
||||
|
||||
# Move to workspace
|
||||
bind = SUPER SHIFT, ampersand, movetoworkspace, 1
|
||||
bind = SUPER SHIFT, eacute, movetoworkspace, 2
|
||||
bind = SUPER SHIFT, quotedbl, movetoworkspace, 3
|
||||
bind = SUPER SHIFT, apostrophe, movetoworkspace, 4
|
||||
bind = SUPER SHIFT, parenleft, movetoworkspace, 5
|
||||
bind = SUPER SHIFT, minus, movetoworkspace, 6
|
||||
bind = SUPER SHIFT, egrave, movetoworkspace, 7
|
||||
bind = SUPER SHIFT, underscore, movetoworkspace, 8
|
||||
bind = SUPER SHIFT, ccedilla, movetoworkspace, 9
|
||||
bind = SUPER SHIFT, agrave, movetoworkspace, 10
|
||||
|
||||
bind = SUPER SHIFT, up, movetoworkspace, name:secondscreen
|
||||
bind = SUPER SHIFT, Q, movetoworkspace, name:coding
|
||||
|
||||
bind = SUPER, down, workspace, 1
|
||||
bind = SUPER SHIFT, down, movetoworkspace, 1
|
||||
|
||||
# Scroll through existing workspaces with mod0 + scroll or arrows
|
||||
bind = SUPER, mouse_down, workspace, +1
|
||||
bind = SUPER, mouse_up, workspace, -1
|
||||
bind = SUPER, l, workspace, +1
|
||||
bind = SUPER, h, workspace, -1
|
||||
|
||||
bind = SUPER SHIFT, mouse_down, movetoworkspace, +1
|
||||
bind = SUPER SHIFT, mouse_up, movetoworkspace, -1
|
||||
bind = SUPER SHIFT, right, movetoworkspace, +1
|
||||
bind = SUPER SHIFT, left, movetoworkspace, -1
|
||||
|
||||
# floating windows
|
||||
bind = ALT, V, togglefloating,
|
||||
bind = ALT, Y, togglesplit
|
||||
binde = ALT_CTRL, K, resizeactive, 40 0
|
||||
binde = ALT_CTRL, J, resizeactive, -40 0
|
||||
binde = ALT_SHIFT, K, resizeactive, 40 0
|
||||
binde = ALT_SHIFT, J, resizeactive, -40 0
|
||||
|
||||
# Move/resize windows with mouse
|
||||
bindm = ALT, mouse:272, movewindow
|
||||
bindm = ALT, mouse:273, resizewindow
|
||||
|
||||
# Audio control
|
||||
bindel = ,XF86AudioRaiseVolume, exec, wpctl set-volume -l 1 @DEFAULT_AUDIO_SINK@ 5%+
|
||||
bindel = ,XF86AudioLowerVolume, exec, wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%-
|
||||
bindel = ,XF86AudioMute, exec, wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle
|
||||
bindel = ,XF86AudioMicMute, exec, wpctl set-mute @DEFAULT_AUDIO_SOURCE@ toggle
|
||||
bindel = ,XF86MonBrightnessUp, exec, brightnessctl -e4 -n2 set 5%+
|
||||
bindel = ,XF86MonBrightnessDown, exec, brightnessctl -e4 -n2 set 5%-
|
||||
8
config/hypr/hyprland_config/env.conf
Normal file
8
config/hypr/hyprland_config/env.conf
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
# environment variables
|
||||
env = XDG_CURRENT_DESKTOP,Hyprland
|
||||
env = XDG_SESSION_TYPE,wayland
|
||||
env = WLR_NO_HARDWARE_CURSOR,1
|
||||
env = NVD_BACKEND,direct
|
||||
env = ELECTRON_OZONE_PLATFORM_HINT,auto
|
||||
env = SCREENSHOT_DIR, $home/Screenshots
|
||||
env = GDK_SCALE,1
|
||||
23
config/hypr/hyprland_config/input.conf
Normal file
23
config/hypr/hyprland_config/input.conf
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
# keyboard and mouse
|
||||
input {
|
||||
kb_layout = fr
|
||||
kb_variant =
|
||||
kb_model =
|
||||
kb_options =
|
||||
kb_rules =
|
||||
numlock_by_default = true
|
||||
|
||||
follow_mouse = 1
|
||||
|
||||
accel_profile = adaptive
|
||||
# force_no_accel = true
|
||||
|
||||
sensitivity = -0.3 # -1.0 - 1.0, 0 means no modification.
|
||||
|
||||
touchpad {
|
||||
natural_scroll = false
|
||||
scroll_factor=2
|
||||
disable_while_typing = true
|
||||
middle_button_emulation = false
|
||||
}
|
||||
}
|
||||
4
config/hypr/hyprland_config/monitor.conf
Normal file
4
config/hypr/hyprland_config/monitor.conf
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
# monitors settings
|
||||
monitor=eDP-1,1366x768@60,0x0,1
|
||||
monitor=DP-2,1680x1050@59.95400,1366x0,1
|
||||
monitor=HDMI-A-1,1920x1080@60.00000,1366x0,1
|
||||
36
config/hypr/hyprland_config/others.conf
Normal file
36
config/hypr/hyprland_config/others.conf
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
dwindle {
|
||||
pseudotile = true # Master switch for pseudotiling. Enabling is bound to mod0 + P in the keybinds section below
|
||||
preserve_split = true # You probably want this
|
||||
}
|
||||
|
||||
master {
|
||||
new_status = slave
|
||||
mfact = 0.50
|
||||
orientation = center
|
||||
}
|
||||
|
||||
misc {
|
||||
force_default_wallpaper = 0
|
||||
disable_hyprland_logo = true
|
||||
vfr = true
|
||||
animate_manual_resizes = true
|
||||
}
|
||||
|
||||
layout {
|
||||
# single_window_aspect_ratio = 4 3
|
||||
}
|
||||
|
||||
gesture = 3, horizontal, workspace
|
||||
|
||||
device {
|
||||
name = epic-mouse-v1
|
||||
sensitivity = -0.5
|
||||
}
|
||||
|
||||
binds {
|
||||
allow_workspace_cycles = true
|
||||
}
|
||||
|
||||
ecosystem {
|
||||
no_donation_nag = true
|
||||
}
|
||||
9
config/hypr/hyprland_config/startup.conf
Normal file
9
config/hypr/hyprland_config/startup.conf
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
# startup programs
|
||||
# exec/execr = on each reload, exec-once/execr-once = only on launch, exec-shutdown = command on shutdown
|
||||
# exec-once = hyprpaper
|
||||
exec-once = wl-paste --type text --watch cliphist store
|
||||
exec-once = wl-paste --type image --watch cliphist store
|
||||
exec-once = systemctl --user start hyprpolkitagent
|
||||
exec-once= hyprctl setcursor Bibata-Modern-Ice 24
|
||||
# exec-once = hyprpanel
|
||||
# exec-once = hyprsunset
|
||||
67
config/hypr/hyprland_config/style.conf
Normal file
67
config/hypr/hyprland_config/style.conf
Normal file
|
|
@ -0,0 +1,67 @@
|
|||
# windows and tiling
|
||||
general {
|
||||
gaps_in = 2.5
|
||||
gaps_out = 5
|
||||
|
||||
border_size = 1
|
||||
|
||||
col.active_border = rgba(00ffd2ee) rgba(004687ee) 45deg
|
||||
col.inactive_border = rgba(00ffd2aa)
|
||||
|
||||
resize_on_border = true
|
||||
allow_tearing = true
|
||||
layout = master
|
||||
hover_icon_on_border = true
|
||||
snap {
|
||||
enabled = true
|
||||
}
|
||||
}
|
||||
|
||||
scrolling {
|
||||
column_width = 0.7
|
||||
focus_fit_method = 0
|
||||
}
|
||||
|
||||
dwindle {
|
||||
smart_split = true
|
||||
}
|
||||
|
||||
decoration {
|
||||
rounding = 5
|
||||
rounding_power = 10
|
||||
active_opacity = 1
|
||||
inactive_opacity = 1
|
||||
fullscreen_opacity = 1
|
||||
border_part_of_window = true
|
||||
|
||||
blur {
|
||||
enabled = false
|
||||
ignore_opacity = true
|
||||
size = 1
|
||||
passes = 1
|
||||
new_optimizations = true
|
||||
brightness = 0.5
|
||||
}
|
||||
shadow {
|
||||
enabled = false
|
||||
}
|
||||
}
|
||||
|
||||
animations {
|
||||
enabled = false
|
||||
bezier = custom,0.13, 1, 0.75,1
|
||||
|
||||
animation = windows, 1, 3, custom, popin
|
||||
animation = windowsOut, 1, 3, custom, popin 80%
|
||||
animation = border, 1, 10, default
|
||||
animation = borderangle, 1, 8, default
|
||||
animation = fade, 1, 7, default
|
||||
animation = workspaces, 1, 3, default
|
||||
animation = windowsMove, 1, 2.5, custom, slide
|
||||
}
|
||||
cursor {
|
||||
inactive_timeout = 3
|
||||
no_hardware_cursors = 0
|
||||
use_cpu_buffer = true
|
||||
persistent_warps = true
|
||||
}
|
||||
10
config/hypr/hyprland_config/variables.conf
Normal file
10
config/hypr/hyprland_config/variables.conf
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
$terminal = kitty
|
||||
$fileManager = nautilus
|
||||
$menu = wofi --show drun
|
||||
$home = /home/afoucaultc/
|
||||
$lockscreen = hyprlock
|
||||
$browser = zen-browser
|
||||
$app_launcher = ~/.config/rofi/launchers/type-1/launcher.sh
|
||||
|
||||
$monitorA = eDP-1
|
||||
$monitorB = HDMI-A-1
|
||||
32
config/hypr/hyprland_config/windowrules.conf
Normal file
32
config/hypr/hyprland_config/windowrules.conf
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
windowrule {
|
||||
name = fullscreen opacity
|
||||
match:fullscreen = true
|
||||
opacity = 1
|
||||
}
|
||||
windowrule {
|
||||
name = opacity zen
|
||||
match:class = zen
|
||||
opacity = 1
|
||||
}
|
||||
|
||||
windowrule {
|
||||
name = opacity kitty
|
||||
match:class = kitty
|
||||
opacity = 1
|
||||
}
|
||||
|
||||
windowrule {
|
||||
name = opacity zathura
|
||||
match:class = org.pwmt.zathura
|
||||
opacity = 1
|
||||
}
|
||||
windowrule {
|
||||
name = gnufloat
|
||||
match:class = Gnuplot
|
||||
float = on
|
||||
}
|
||||
windowrule {
|
||||
name = opacity typora
|
||||
match:class = Typora
|
||||
opacity = 1
|
||||
}
|
||||
12
config/hypr/hyprland_config/workspace.conf
Normal file
12
config/hypr/hyprland_config/workspace.conf
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
# workspaces
|
||||
workspace = 1 , default=true, persistent:true
|
||||
workspace = 2 , persistent:true
|
||||
workspace = 3 , persistent:true
|
||||
workspace = 4 , persistent:true
|
||||
workspace = 5 , persistent:true
|
||||
workspace = 6 , persistent:true
|
||||
workspace = 7 , persistent:true
|
||||
workspace = 8 , persistent:true
|
||||
workspace = 9 , persistent:true
|
||||
workspace = 10 persistent:true
|
||||
workspace = name:coding, $monitorA, rounding:false, decorate:true, gapsin:0, gapsout:0, border:true, persistent:true
|
||||
Loading…
Add table
Add a link
Reference in a new issue