mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 08:43:00 +00:00
chore(linux): Minor change
This commit is contained in:
parent
124703b2e0
commit
8dc68ca138
7 changed files with 75 additions and 22 deletions
1
platforms/linux/hypr/.gitignore
vendored
Normal file
1
platforms/linux/hypr/.gitignore
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
.sass-cache
|
||||
14
platforms/linux/hypr/hypridle.conf
Normal file
14
platforms/linux/hypr/hypridle.conf
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
general {
|
||||
lock_cmd = notify-send "lock!" # dbus/sysd lock command (loginctl lock-session)
|
||||
unlock_cmd = notify-send "unlock!" # same as above, but unlock
|
||||
before_sleep_cmd = notify-send "Zzz" # command ran before sleep
|
||||
after_sleep_cmd = notify-send "Awake!" # command ran after sleep
|
||||
ignore_dbus_inhibit = false # whether to ignore dbus-sent idle-inhibit requests (used by e.g. firefox or steam)
|
||||
ignore_systemd_inhibit = false # whether to ignore systemd-inhibit --what=idle inhibitors
|
||||
}
|
||||
|
||||
listener {
|
||||
timeout = 600 # in seconds
|
||||
on-timeout = notify-send "You are idle!" # command to run when timeout has passed
|
||||
on-resume = notify-send "Welcome back!" # command to run when activity is detected after timeout has fired.
|
||||
}
|
||||
|
|
@ -44,7 +44,7 @@ xwayland {
|
|||
# monitor=,preferred,auto,auto
|
||||
# Format:
|
||||
# MONITOR_NAME,RESOLUTION@REFRESH_RATE,OFFSET_XxOFFSET_Y,SCALE
|
||||
monitor=DP-2,3840x2160@59,0x0,1.666667
|
||||
monitor=DP-2,3840x2160@60,0x0,1.875
|
||||
|
||||
|
||||
###################
|
||||
|
|
@ -56,7 +56,7 @@ monitor=DP-2,3840x2160@59,0x0,1.666667
|
|||
# Set programs that you use
|
||||
$terminal = kitty
|
||||
$fileManager = dolphin
|
||||
$menu = wofi
|
||||
$menu = rofi
|
||||
|
||||
|
||||
#################
|
||||
|
|
@ -68,11 +68,11 @@ $menu = wofi
|
|||
|
||||
# exec-once = $terminal
|
||||
# exec-once = nm-applet &
|
||||
# exec-once = waybar & hyprpaper & mako & systemctl --user start hyprpolkitagent & fcitx5 & albert
|
||||
# Top Bar
|
||||
exec-once = waybar &
|
||||
# Notifications
|
||||
exec-once = mako &
|
||||
# exec-once = hyprpanel &
|
||||
# wallpapers
|
||||
exec-once = hyprpaper &
|
||||
# Authentication agent
|
||||
|
|
@ -147,12 +147,12 @@ decoration {
|
|||
active_opacity = 1.0
|
||||
inactive_opacity = 1.0
|
||||
|
||||
# shadow {
|
||||
# enabled = true
|
||||
# range = 4
|
||||
# render_power = 3
|
||||
# color = $base
|
||||
# }
|
||||
shadow {
|
||||
enabled = true
|
||||
range = 4
|
||||
render_power = 3
|
||||
color = $base
|
||||
}
|
||||
|
||||
# https://wiki.hyprland.org/Configuring/Variables/#blur
|
||||
blur {
|
||||
|
|
@ -231,7 +231,7 @@ input {
|
|||
kb_layout = us
|
||||
kb_variant =
|
||||
kb_model =
|
||||
kb_options = caps:escape
|
||||
kb_options =
|
||||
kb_rules =
|
||||
|
||||
follow_mouse = 1
|
||||
|
|
@ -266,12 +266,12 @@ $mainMod = SUPER # Sets "Windows" key as main modifier
|
|||
# Example binds, see https://wiki.hyprland.org/Configuring/Binds/ for more
|
||||
bind = $mainMod, R, exec, $terminal
|
||||
bind = $mainMod, Q, killactive,
|
||||
bind = $mainMod, M, exit,
|
||||
# bind = $mainMod, M, exit,
|
||||
bind = $mainMod, F, exec, $fileManager
|
||||
bind = $mainMod, V, exec, cliphist list | wofi --dmenu | cliphist decode | wl-copy
|
||||
bind = $mainMod SHIFT, V, togglefloating
|
||||
bind = $mainMod, V, exec, cliphist list | rofi --dmenu | cliphist decode | wl-copy
|
||||
bind = $mainMod SHIFT, F, togglefloating
|
||||
|
||||
bind = $mainMod, space, exec, $menu
|
||||
bind = alt, space, exec, $menu -show drun
|
||||
bind = $mainMod, P, pseudo, # dwindle
|
||||
bind = $mainMod, X, togglesplit, # dwindle
|
||||
|
||||
|
|
@ -284,8 +284,12 @@ bind = $mainMod, h, movefocus, l
|
|||
bind = $mainMod, i, movefocus, r
|
||||
bind = $mainMod, e, movefocus, u
|
||||
bind = $mainMod, n, movefocus, d
|
||||
bind = $mainMod alt, h, swapwindow, l
|
||||
bind = $mainMod alt, i, swapwindow, r
|
||||
bind = $mainMod alt, e, swapwindow, u
|
||||
bind = $mainMod alt, n, swapwindow, d
|
||||
|
||||
bind = $mainMod, c, exec, grimblast copy area
|
||||
bind = $mainMod, c, exec, hyprshot -m region -o $HOME/Pictures/Screenshots/
|
||||
|
||||
# Switch workspaces with mainMod + [0-9]
|
||||
bind = $mainMod, 1, workspace, 1
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue