Compare commits
No commits in common. "183b00e6b8d393cd33857c356d39c55130236901" and "6ecf39c0dd7a679979e75bef1726ddaf31eb274c" have entirely different histories.
183b00e6b8
...
6ecf39c0dd
|
@ -1,20 +0,0 @@
|
||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
dbus-update-activation-environment WAYLAND_DISPLAY XDG_CURRENT_DESKTOP=Hyprland &
|
|
||||||
gsettings set org.gnome.desktop.wm.preferences button-layout ':' &
|
|
||||||
waybar -c ~/.config/waybar/waybar.jsonc -s ~/.config/waybar/waybar.css &
|
|
||||||
hyprwall -r &
|
|
||||||
hypridle -c ~/.config/hypr/hypridle.conf &
|
|
||||||
/usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1 &
|
|
||||||
mako -c ~/.config/mako/mako.conf &
|
|
||||||
/usr/lib/xdg-desktop-portal -r &
|
|
||||||
nm-applet &
|
|
||||||
|
|
||||||
clash-verge &
|
|
||||||
bash -c "sleep 2; easyeffects --gapplication-service" &
|
|
||||||
|
|
||||||
ping 1.1.1.1 -c 1 && {
|
|
||||||
sleep 3
|
|
||||||
vesktop &
|
|
||||||
telegram-desktop -startintray &
|
|
||||||
}
|
|
|
@ -1,4 +0,0 @@
|
||||||
#!/usr/bin/env fish
|
|
||||||
if not ps -e | grep hyprlock
|
|
||||||
hyprlock -c ~/.config/hypr/hyprlock.conf
|
|
||||||
end
|
|
|
@ -1,108 +0,0 @@
|
||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
## Author : Aditya Shakya (adi1090x)
|
|
||||||
## Github : @adi1090x
|
|
||||||
#
|
|
||||||
## Rofi : Power Menu
|
|
||||||
|
|
||||||
# CMDs
|
|
||||||
uptime="`uptime -p | sed -e 's/up //g'`"
|
|
||||||
host=`cat /etc/hostname`
|
|
||||||
|
|
||||||
# Options
|
|
||||||
hibernate=''
|
|
||||||
shutdown='⏼'
|
|
||||||
reboot=''
|
|
||||||
lock=''
|
|
||||||
suspend=''
|
|
||||||
logout=''
|
|
||||||
yes=''
|
|
||||||
no=''
|
|
||||||
|
|
||||||
# Rofi CMD
|
|
||||||
rofi_cmd() {
|
|
||||||
rofi -dmenu \
|
|
||||||
-p "$USER@$host" \
|
|
||||||
-mesg "Uptime: $uptime" \
|
|
||||||
-theme ~/.config/rofi/powermenu.rasi
|
|
||||||
}
|
|
||||||
|
|
||||||
# Confirmation CMD
|
|
||||||
confirm_cmd() {
|
|
||||||
rofi -theme-str 'window {location: center; anchor: center; fullscreen: false; width: 350px;}' \
|
|
||||||
-theme-str 'mainbox {children: [ "message", "listview" ];}' \
|
|
||||||
-theme-str 'listview {columns: 2; lines: 1;}' \
|
|
||||||
-theme-str 'element-text {horizontal-align: 0.5;}' \
|
|
||||||
-theme-str 'textbox {horizontal-align: 0.5;}' \
|
|
||||||
-dmenu \
|
|
||||||
-p 'Confirmation' \
|
|
||||||
-mesg 'Are you Sure?' \
|
|
||||||
-theme ~/.config/rofi/powermenu.rasi
|
|
||||||
}
|
|
||||||
|
|
||||||
# Ask for confirmation
|
|
||||||
confirm_exit() {
|
|
||||||
echo -e "$yes\n$no" | confirm_cmd
|
|
||||||
}
|
|
||||||
|
|
||||||
# Pass variables to rofi dmenu
|
|
||||||
run_rofi() {
|
|
||||||
echo -e "$lock\n$logout\n$reboot\n$shutdown" | rofi_cmd
|
|
||||||
}
|
|
||||||
|
|
||||||
# Execute Command
|
|
||||||
run_cmd() {
|
|
||||||
selected="$(confirm_exit)"
|
|
||||||
if [[ "$selected" == "$yes" ]]; then
|
|
||||||
if [[ $1 == '--shutdown' ]]; then
|
|
||||||
systemctl poweroff
|
|
||||||
elif [[ $1 == '--reboot' ]]; then
|
|
||||||
systemctl reboot
|
|
||||||
elif [[ $1 == '--hibernate' ]]; then
|
|
||||||
systemctl hibernate
|
|
||||||
elif [[ $1 == '--suspend' ]]; then
|
|
||||||
systemctl suspend
|
|
||||||
elif [[ $1 == '--logout' ]]; then
|
|
||||||
if [[ "$DESKTOP_SESSION" == 'openbox' ]]; then
|
|
||||||
openbox --exit
|
|
||||||
elif [[ "$DESKTOP_SESSION" == 'bspwm' ]]; then
|
|
||||||
bspc quit
|
|
||||||
elif [[ "$DESKTOP_SESSION" == 'i3' ]]; then
|
|
||||||
i3-msg exit
|
|
||||||
elif [[ "$DESKTOP_SESSION" == 'plasma' ]]; then
|
|
||||||
qdbus org.kde.ksmserver /KSMServer logout 0 0 0
|
|
||||||
elif [[ "$XDG_CURRENT_DESKTOP" == 'Hyprland' ]]; then
|
|
||||||
hyprctl dispatch exit
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
exit 0
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
# Actions
|
|
||||||
chosen="$(run_rofi)"
|
|
||||||
case ${chosen} in
|
|
||||||
$shutdown)
|
|
||||||
run_cmd --shutdown
|
|
||||||
;;
|
|
||||||
$reboot)
|
|
||||||
run_cmd --reboot
|
|
||||||
;;
|
|
||||||
$hibernate)
|
|
||||||
run_cmd --hibernate
|
|
||||||
;;
|
|
||||||
$lock)
|
|
||||||
if [[ -x '/usr/bin/betterlockscreen' ]]; then
|
|
||||||
betterlockscreen -l
|
|
||||||
elif [[ -x '/usr/bin/i3lock' ]]; then
|
|
||||||
i3lock
|
|
||||||
fi
|
|
||||||
;;
|
|
||||||
$suspend)
|
|
||||||
run_cmd --suspend
|
|
||||||
;;
|
|
||||||
$logout)
|
|
||||||
run_cmd --logout
|
|
||||||
;;
|
|
||||||
esac
|
|
|
@ -1,54 +0,0 @@
|
||||||
#!/usr/bin/env bash
|
|
||||||
printf "%s\n" "Currently disabled"
|
|
||||||
|
|
||||||
{ [[ -z $1 ]] || [[ -z $2 ]]; } && {
|
|
||||||
printf "%s\n" "Usage: setwal /path/to/wallpaper mode"
|
|
||||||
exit 1
|
|
||||||
}
|
|
||||||
|
|
||||||
[ ! -f "$1" ] && {
|
|
||||||
printf "File not found: %s\n" "$1"
|
|
||||||
exit 2
|
|
||||||
}
|
|
||||||
|
|
||||||
yes | ffmpeg -i "$1" ~/.config/hypr/wallpaper.png >/dev/null 2>&1 || {
|
|
||||||
printf "Failed to copy wallpaper from %s\n" "$1"
|
|
||||||
exit 3
|
|
||||||
}
|
|
||||||
|
|
||||||
{
|
|
||||||
hyprctl hyprpaper unload all >/dev/null
|
|
||||||
hyprctl hyprpaper preload ~/.config/hypr/wallpaper.png >/dev/null
|
|
||||||
hyprctl hyprpaper wallpaper ",~/.config/hypr/wallpaper.png" >/dev/null
|
|
||||||
} &
|
|
||||||
|
|
||||||
update() {
|
|
||||||
makoctl reload
|
|
||||||
}
|
|
||||||
|
|
||||||
dark() {
|
|
||||||
matugen image ~/.config/hypr/wallpaper.png -c ~/.config/hypr/matugen/config.toml -m dark
|
|
||||||
gsettings set org.gnome.desktop.interface gtk-theme "adw-gtk3-not-exist" >/dev/null
|
|
||||||
sleep 0.1
|
|
||||||
gsettings set org.gnome.desktop.interface gtk-theme "adw-gtk3-dark" >/dev/null
|
|
||||||
gsettings set org.gnome.desktop.interface color-scheme 'prefer-dark'
|
|
||||||
update
|
|
||||||
}
|
|
||||||
|
|
||||||
light() {
|
|
||||||
matugen image ~/.config/hypr/wallpaper.png -c ~/.config/hypr/matugen/config.toml -m light
|
|
||||||
gsettings set org.gnome.desktop.interface gtk-theme "adw-gtk3-not-exist" >/dev/null
|
|
||||||
sleep 0.1
|
|
||||||
gsettings set org.gnome.desktop.interface gtk-theme "adw-gtk3" >/dev/null
|
|
||||||
gsettings set org.gnome.desktop.interface color-scheme 'prefer-light'
|
|
||||||
update
|
|
||||||
}
|
|
||||||
|
|
||||||
case "$2" in
|
|
||||||
"light")
|
|
||||||
light
|
|
||||||
;;
|
|
||||||
*)
|
|
||||||
dark
|
|
||||||
;;
|
|
||||||
esac
|
|
|
@ -1,61 +0,0 @@
|
||||||
#===========================================================================#
|
|
||||||
# | bind | dispatcher | args #
|
|
||||||
#===========================================================================#
|
|
||||||
|
|
||||||
bind = SUPER, RETURN, exec, $terminal
|
|
||||||
bind = SUPER, E, exec, $fileManager
|
|
||||||
bind = SUPER, D, exec, $discord
|
|
||||||
bind = SUPER, T, exec, $telegram
|
|
||||||
bind = SUPER, B, exec, $browser
|
|
||||||
|
|
||||||
bind = SUPER, Q, killactive,
|
|
||||||
bind = SUPER, M, exit,
|
|
||||||
bind = SUPER, C, togglefloating,
|
|
||||||
bind = SUPER, SPACE, exec, $menu
|
|
||||||
bind = SUPER, P, pseudo, # dwindle
|
|
||||||
bind = SUPER, X, togglesplit, # dwindle
|
|
||||||
bind = SUPER, Home, exec, $sshot region
|
|
||||||
bind = SUPER, Prior, exec, $sshot window
|
|
||||||
bind = SUPER, Next, exec, $sshot output
|
|
||||||
bind = SUPER Ctrl, Q, exec, $locker
|
|
||||||
|
|
||||||
bind = , XF86AudioPlay, exec, $pctl play-pause
|
|
||||||
bind = , XF86AudioNext, exec, $pctl next
|
|
||||||
bind = , XF86AudioPrev, exec, $pctl previous
|
|
||||||
bind = , XF86AudioMute, exec, pamixer -t
|
|
||||||
bind = , XF86AudioRaiseVolume, exec, pamixer -i 2
|
|
||||||
bind = , XF86AudioLowerVolume, exec, pamixer -d 2
|
|
||||||
|
|
||||||
bind = SUPER, left, movefocus, l
|
|
||||||
bind = SUPER, right, movefocus, r
|
|
||||||
bind = SUPER, up, movefocus, u
|
|
||||||
bind = SUPER, down, movefocus, d
|
|
||||||
|
|
||||||
bind = SUPER, 1, workspace, 1
|
|
||||||
bind = SUPER, 2, workspace, 2
|
|
||||||
bind = SUPER, 3, workspace, 3
|
|
||||||
bind = SUPER, 4, workspace, 4
|
|
||||||
bind = SUPER, 5, workspace, 5
|
|
||||||
bind = SUPER, 6, workspace, 6
|
|
||||||
bind = SUPER, 7, workspace, 7
|
|
||||||
bind = SUPER, 8, workspace, 8
|
|
||||||
bind = SUPER, 9, workspace, 9
|
|
||||||
bind = SUPER, 0, workspace, 10
|
|
||||||
#bind = SUPER, TAB, overview:toggle
|
|
||||||
|
|
||||||
bind = SUPER SHIFT, 1, movetoworkspace, 1
|
|
||||||
bind = SUPER SHIFT, 2, movetoworkspace, 2
|
|
||||||
bind = SUPER SHIFT, 3, movetoworkspace, 3
|
|
||||||
bind = SUPER SHIFT, 4, movetoworkspace, 4
|
|
||||||
bind = SUPER SHIFT, 5, movetoworkspace, 5
|
|
||||||
bind = SUPER SHIFT, 6, movetoworkspace, 6
|
|
||||||
bind = SUPER SHIFT, 7, movetoworkspace, 7
|
|
||||||
bind = SUPER SHIFT, 8, movetoworkspace, 8
|
|
||||||
bind = SUPER SHIFT, 9, movetoworkspace, 9
|
|
||||||
bind = SUPER SHIFT, 0, movetoworkspace, 10
|
|
||||||
|
|
||||||
bind = SUPER, mouse_down, workspace, e+1
|
|
||||||
bind = SUPER, mouse_up, workspace, e-1
|
|
||||||
|
|
||||||
bindm = SUPER, mouse:272, movewindow
|
|
||||||
bindm = SUPER, mouse:273, resizewindow
|
|
|
@ -1,5 +0,0 @@
|
||||||
$primary = rgb(89b4fa)
|
|
||||||
$secondary = rgb(313244)
|
|
||||||
$bg = rgb(1e1e2e)
|
|
||||||
$fg = rgb(363a4f)
|
|
||||||
|
|
|
@ -1,3 +0,0 @@
|
||||||
debug {
|
|
||||||
overlay = false
|
|
||||||
}
|
|
|
@ -1,50 +0,0 @@
|
||||||
exec-once = gsettings set org.gnome.desktop.interface gtk-theme "catppuccin-mocha-blue-standard+default"
|
|
||||||
exec-once = gsettings set org.gnome.desktop.interface icon-theme Papirus-Dark
|
|
||||||
exec-once = gsettings set org.gnome.desktop.interface color-scheme 'prefer-dark'
|
|
||||||
exec-once = gsettings set org.gnome.desktop.interface gtk-color-scheme 'prefer-dark'
|
|
||||||
exec-once = gsettings set org.gnome.desktop.interface cursor-theme 'Bibata-Modern-Classic'
|
|
||||||
|
|
||||||
decoration {
|
|
||||||
rounding = 10
|
|
||||||
|
|
||||||
active_opacity = 1.0
|
|
||||||
inactive_opacity = 1.0
|
|
||||||
|
|
||||||
dim_inactive = false
|
|
||||||
dim_strength = 0.2
|
|
||||||
|
|
||||||
blur {
|
|
||||||
enabled = true
|
|
||||||
size = 3
|
|
||||||
passes = 4
|
|
||||||
noise = 0.07
|
|
||||||
xray = true
|
|
||||||
brightness = 0.4
|
|
||||||
popups = false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
animations {
|
|
||||||
enabled = true
|
|
||||||
bezier = myBezier, 0.05, 0.9, 0.1, 1.05
|
|
||||||
|
|
||||||
animation = windows, 1, 7, myBezier
|
|
||||||
animation = windowsOut, 1, 7, myBezier, popin 80%
|
|
||||||
animation = border, 1, 10, myBezier
|
|
||||||
animation = borderangle, 1, 8, myBezier
|
|
||||||
animation = fade, 1, 7, myBezier
|
|
||||||
animation = workspaces, 1, 6, myBezier
|
|
||||||
}
|
|
||||||
|
|
||||||
dwindle {
|
|
||||||
pseudotile = false
|
|
||||||
preserve_split = true
|
|
||||||
smart_split = false
|
|
||||||
smart_resizing = false
|
|
||||||
}
|
|
||||||
|
|
||||||
misc {
|
|
||||||
force_default_wallpaper = -1
|
|
||||||
disable_hyprland_logo = true
|
|
||||||
}
|
|
||||||
|
|
|
@ -1,26 +0,0 @@
|
||||||
input {
|
|
||||||
kb_layout = us, ru
|
|
||||||
kb_variant =
|
|
||||||
kb_model =
|
|
||||||
kb_options = grp:caps_toggle
|
|
||||||
kb_rules =
|
|
||||||
follow_mouse = 1
|
|
||||||
sensitivity = 0
|
|
||||||
}
|
|
||||||
|
|
||||||
gestures {
|
|
||||||
workspace_swipe_touch = true
|
|
||||||
workspace_swipe_cancel_ratio = 0.1
|
|
||||||
}
|
|
||||||
|
|
||||||
device {
|
|
||||||
name = nvtcapacitivetouchscreen
|
|
||||||
transform = 3
|
|
||||||
output = DSI-1
|
|
||||||
}
|
|
||||||
|
|
||||||
device {
|
|
||||||
name = nvtcapacitivepen
|
|
||||||
transform = 3
|
|
||||||
output = DSI-1
|
|
||||||
}
|
|
|
@ -1,13 +0,0 @@
|
||||||
env = XCURSOR_SIZE,24
|
|
||||||
env = XCURSOR_THEME,Bibata-Modern-Classic
|
|
||||||
env = HYPRCURSOR_SIZE,24
|
|
||||||
env = HYPRCURSOR_THEME,Bibata-Modern-Classic
|
|
||||||
env = XDG_CURRENT_DESKTOP,Hyprland
|
|
||||||
env = XDG_SESSION_TYPE,wayland
|
|
||||||
env = XDG_SESSION_DESKTOP,Hyprland
|
|
||||||
env = QT_AUTO_SCREEN_SCALE_FACTOR,1
|
|
||||||
env = QT_QPA_PLATFORM,wayland
|
|
||||||
env = QT_QPA_PLATFORMTHEME,qt5ct
|
|
||||||
env = EDITOR,nvim
|
|
||||||
env = ELECTRON_OZONE_PLATFORM_HINT,wayland
|
|
||||||
env = MOZ_ENABLE_WAYLAND=1
|
|
|
@ -1,11 +0,0 @@
|
||||||
general {
|
|
||||||
col.active_border = $primary
|
|
||||||
col.inactive_border = $secondary
|
|
||||||
gaps_in = 15
|
|
||||||
gaps_out = 30
|
|
||||||
border_size = 3
|
|
||||||
resize_on_border = true
|
|
||||||
extend_border_grab_area = true
|
|
||||||
allow_tearing = false
|
|
||||||
layout = dwindle
|
|
||||||
}
|
|
|
@ -1,10 +0,0 @@
|
||||||
general {
|
|
||||||
lock_cmd = ~/.config/hypr/bin/lockscreen
|
|
||||||
ignore_dbus_inhibit = false
|
|
||||||
ignore_systemd_inhibit = false
|
|
||||||
}
|
|
||||||
|
|
||||||
listener {
|
|
||||||
timeout = 3600
|
|
||||||
on-timeout = ~/.config/hypr/bin/lockscreen
|
|
||||||
}
|
|
|
@ -1,23 +0,0 @@
|
||||||
source = colors.conf
|
|
||||||
|
|
||||||
$terminal = alacritty
|
|
||||||
$fileManager = nemo
|
|
||||||
$menu = hyprlauncher
|
|
||||||
$browser = zen-browser
|
|
||||||
$discord = vesktop
|
|
||||||
$telegram = telegram-desktop
|
|
||||||
$pctl = playerctl
|
|
||||||
$sshot = hyprshot -o ~/Pictures/Screenshots/ -z -m
|
|
||||||
$locker = loginctl lock-session
|
|
||||||
|
|
||||||
source = plugins.conf
|
|
||||||
exec-once = hyprpm reload -n
|
|
||||||
|
|
||||||
source = general.conf
|
|
||||||
source = monitors.conf
|
|
||||||
source = decorations.conf
|
|
||||||
source = env.conf
|
|
||||||
source = binds.conf
|
|
||||||
source = rules.conf
|
|
||||||
source = devices.conf
|
|
||||||
exec-once = ~/.config/hypr/bin/autostart
|
|
|
@ -1,63 +0,0 @@
|
||||||
source = appearance.conf
|
|
||||||
|
|
||||||
# BACKGROUND
|
|
||||||
background {
|
|
||||||
monitor =
|
|
||||||
path = ~/.config/hypr/wallpaper.png
|
|
||||||
blur_passes = 3
|
|
||||||
contrast = 0.8916
|
|
||||||
brightness = 0.8172
|
|
||||||
vibrancy = 0.1696
|
|
||||||
vibrancy_darkness = 0.0
|
|
||||||
}
|
|
||||||
|
|
||||||
# GENERAL
|
|
||||||
general {
|
|
||||||
no_fade_in = false
|
|
||||||
grace = 0
|
|
||||||
disable_loading_bar = true
|
|
||||||
}
|
|
||||||
|
|
||||||
# INPUT FIELD
|
|
||||||
input-field {
|
|
||||||
monitor = DP-1
|
|
||||||
size = 200, 40
|
|
||||||
outline_thickness = 2
|
|
||||||
dots_size = 0.2 # Scale of input-field height, 0.2 - 0.8
|
|
||||||
dots_spacing = 0.2 # Scale of dots' absolute size, 0.0 - 1.0
|
|
||||||
dots_center = true
|
|
||||||
outer_color = rgba(0, 0, 0, 0)
|
|
||||||
inner_color = rgba(0, 0, 0, 0.5)
|
|
||||||
font_color = $fg
|
|
||||||
fade_on_empty = false
|
|
||||||
placeholder_text =
|
|
||||||
hide_input = false
|
|
||||||
position = 0, -650 #-120
|
|
||||||
halign = center
|
|
||||||
valign = center
|
|
||||||
}
|
|
||||||
|
|
||||||
# TIME
|
|
||||||
label {
|
|
||||||
monitor = DP-1
|
|
||||||
text = cmd[update:1000] echo "$(date +"%H:%M")"
|
|
||||||
color = $fg
|
|
||||||
font_size = 240
|
|
||||||
font_family = eurofurence
|
|
||||||
position = 0, -300
|
|
||||||
halign = center
|
|
||||||
valign = top
|
|
||||||
}
|
|
||||||
|
|
||||||
# USER
|
|
||||||
label {
|
|
||||||
monitor = DP-1
|
|
||||||
text = Enter your password
|
|
||||||
color = $fg
|
|
||||||
font_size = 14
|
|
||||||
font_family = eurofurence
|
|
||||||
position = 0, -690 # -40
|
|
||||||
halign = center
|
|
||||||
valign = center
|
|
||||||
|
|
||||||
}
|
|
|
@ -1,19 +0,0 @@
|
||||||
#===========================================================================#
|
|
||||||
# Monitors #
|
|
||||||
#===========================================================================#
|
|
||||||
|
|
||||||
monitor=DSI-1, 1600x2560@120, 0x0, 1.6, transform, 3
|
|
||||||
|
|
||||||
render {
|
|
||||||
explicit_sync = 0
|
|
||||||
explicit_sync_kms = 0
|
|
||||||
direct_scanout = false
|
|
||||||
}
|
|
||||||
|
|
||||||
cursor {
|
|
||||||
no_hardware_cursors = true
|
|
||||||
}
|
|
||||||
|
|
||||||
xwayland {
|
|
||||||
force_zero_scaling = true
|
|
||||||
}
|
|
|
@ -1,36 +0,0 @@
|
||||||
chromakey_background = 30,30,46
|
|
||||||
# chromakey_background = 36,36,56
|
|
||||||
plugin {
|
|
||||||
touch_gestures {
|
|
||||||
# The default sensitivity is probably too low on tablet screens,
|
|
||||||
# I recommend turning it up to 4.0
|
|
||||||
sensitivity = 4.0
|
|
||||||
|
|
||||||
# must be >= 3
|
|
||||||
workspace_swipe_fingers = 3
|
|
||||||
|
|
||||||
# switching workspaces by swiping from an edge, this is separate from workspace_swipe_fingers
|
|
||||||
# and can be used at the same time
|
|
||||||
# possible values: l, r, u, or d
|
|
||||||
# to disable it set it to anything else
|
|
||||||
workspace_swipe_edge = d
|
|
||||||
|
|
||||||
# in milliseconds
|
|
||||||
long_press_delay = 400
|
|
||||||
|
|
||||||
# resize windows by long-pressing on window borders and gaps.
|
|
||||||
# If general:resize_on_border is enabled, general:extend_border_grab_area is used for floating
|
|
||||||
# windows
|
|
||||||
resize_on_border_long_press = true
|
|
||||||
|
|
||||||
# in pixels, the distance from the edge that is considered an edge
|
|
||||||
edge_margin = 10
|
|
||||||
|
|
||||||
experimental {
|
|
||||||
# send proper cancel events to windows instead of hacky touch_up events,
|
|
||||||
# NOT recommended as it crashed a few times, once it's stabilized I'll make it the default
|
|
||||||
send_cancel = 0
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
hyprgrass-bind = , swipe:3:u, exec, $menu
|
|
|
@ -1,56 +0,0 @@
|
||||||
#
|
|
||||||
# Window rules
|
|
||||||
#
|
|
||||||
|
|
||||||
# Waybar
|
|
||||||
layerrule = blur, waybar
|
|
||||||
layerrule = ignorezero, waybar
|
|
||||||
|
|
||||||
# Mako
|
|
||||||
layerrule = blur, notifications
|
|
||||||
layerrule = ignorezero, notifications
|
|
||||||
|
|
||||||
# Rofi
|
|
||||||
layerrule = blur, rofi
|
|
||||||
layerrule = ignorezero, rofi
|
|
||||||
|
|
||||||
# Disable maximize
|
|
||||||
windowrulev2 = suppressevent maximize, class:.*
|
|
||||||
|
|
||||||
# Pavucontrol
|
|
||||||
windowrulev2 = float, class:^(org.pulseaudio.pavucontrol)$
|
|
||||||
windowrulev2 = size 696 570, class:^(org.pulseaudio.pavucontrol)$
|
|
||||||
windowrulev2 = move 1630 820, class:^(org.pulseaudio.pavucontrol)$
|
|
||||||
windowrulev2 = monitor DP-1, class:^(org.pulseaudio.pavucontrol)$
|
|
||||||
windowrulev2 = opacity 0.9, class:^(org.pulseaudio.pavucontrol)$
|
|
||||||
|
|
||||||
# XWayland Video Bridge - Unused
|
|
||||||
# windowrulev2 = opacity 0.0 override,class:^(xwaylandvideobridge)$
|
|
||||||
# windowrulev2 = noanim,class:^(xwaylandvideobridge)$
|
|
||||||
# windowrulev2 = noinitialfocus,class:^(xwaylandvideobridge)$
|
|
||||||
# windowrulev2 = maxsize 1 1,class:^(xwaylandvideobridge)$
|
|
||||||
# windowrulev2 = noblur,class:^(xwaylandvideobridge)$
|
|
||||||
|
|
||||||
# Vesktop
|
|
||||||
# windowrulev2 = opacity 0.9, class:^(vesktop)$
|
|
||||||
|
|
||||||
# Telegram
|
|
||||||
windowrulev2 = maximize, class:^(org.telegram.desktop)$,title:^(Media viewer)$
|
|
||||||
windowrulev2 = float, class:^(org.telegram.desktop)$,title:^(Media viewer)$
|
|
||||||
# windowrulev2 = opaque, class:^(org.telegram.desktop)$,title:^(Media viewer)$
|
|
||||||
|
|
||||||
# Nemo
|
|
||||||
windowrulev2 = float, class:^(nemo)$,title:^.*(Properties)$
|
|
||||||
|
|
||||||
# Firefox library (Downloads, History, etc.)
|
|
||||||
windowrulev2 = float, class:^(zen-alpha)$,title:^(Library)$
|
|
||||||
windowrulev2 = opacity 0.9, class:^(zen-alpha)$,title:^(Library)$
|
|
||||||
|
|
||||||
# Spotify
|
|
||||||
windowrulev2 = opacity 0.9, class:^(Spotify)$
|
|
||||||
|
|
||||||
|
|
||||||
windowrulev2 = noblur, class:^()$,title:^()$
|
|
||||||
|
|
||||||
windowrulev2 = plugin:chromakey,fullscreen:0
|
|
||||||
windowrulev2 = opacity 0.999,fullscreen:0
|
|
|
@ -1,4 +0,0 @@
|
||||||
[Settings]
|
|
||||||
folder = ~/Pictures/Wallpapers
|
|
||||||
backend = hyprpaper
|
|
||||||
last_wallpaper = ~/Pictures/Wallpapers/galaktika_zvezdy_nebo_temnyj_tumannost_101228_2560x1440.jpg
|
|
|
@ -1,7 +1,6 @@
|
||||||
[Appearance]
|
[Appearance]
|
||||||
ColorScheme=catppuccin-mocha
|
ColorScheme=catppuccin-mocha
|
||||||
Font=JetBrainsMono Nerd Font,11,-1,5,400,0,0,0,0,0,0,0,0,0,0,1
|
Font=JetBrainsMono Nerd Font,11,-1,5,500,0,0,0,0,0,0,0,0,0,0,1,Medium
|
||||||
UseFontLineChararacters=true
|
|
||||||
|
|
||||||
[General]
|
[General]
|
||||||
Name=Catpuccin Mocha
|
Name=Catpuccin Mocha
|
||||||
|
|
|
@ -89,12 +89,8 @@ Color=205,214,244
|
||||||
Color=205,214,244
|
Color=205,214,244
|
||||||
|
|
||||||
[General]
|
[General]
|
||||||
Anchor=0.5,0.5
|
|
||||||
Blur=false
|
Blur=false
|
||||||
ColorRandomization=false
|
ColorRandomization=false
|
||||||
Description=Catppuccin Mocha
|
Description=Catppuccin Mocha
|
||||||
FillStyle=Tile
|
|
||||||
Opacity=1
|
Opacity=1
|
||||||
Wallpaper=
|
Wallpaper=
|
||||||
WallpaperFlipType=NoFlip
|
|
||||||
WallpaperOpacity=1
|
|
||||||
|
|
Loading…
Reference in a new issue