Dev
This commit is contained in:
28
hypr/conf/.hyprland.sh
Executable file
28
hypr/conf/.hyprland.sh
Executable file
@@ -0,0 +1,28 @@
|
||||
#!/bin/bash
|
||||
# _ _ _
|
||||
# | |__ _ _ _ __ _ __| | __ _ _ __ __| |
|
||||
# | '_ \| | | | '_ \| '__| |/ _` | '_ \ / _` |
|
||||
# _| | | | |_| | |_) | | | | (_| | | | | (_| |
|
||||
# (_)_| |_|\__, | .__/|_| |_|\__,_|_| |_|\__,_|
|
||||
# |___/|_|
|
||||
#
|
||||
# -----------------------------------------------------
|
||||
# Overwrite hyprland configuration with hyprctl
|
||||
# Individual scripts and settings possible
|
||||
# Copy this file into your home directory
|
||||
# -----------------------------------------------------
|
||||
|
||||
# -----------------------------------------------------
|
||||
# Keyboard Layout
|
||||
# -----------------------------------------------------
|
||||
hyprctl keyword input:kb_layout de # to de
|
||||
# hyprctl keyword input:kb_layout us # to us
|
||||
|
||||
# -----------------------------------------------------
|
||||
# Monitor Setup
|
||||
# See https://wiki.hyprland.org/Configuring/Monitors/
|
||||
# -----------------------------------------------------
|
||||
hyprctl keyword monitor ,2560x1440@120,auto,1
|
||||
# hyprctl keyword monitor ,preferred,auto,1
|
||||
|
||||
notify-send ".hyprland.sh exists" "hyprctl commands executed"
|
||||
@@ -2,13 +2,23 @@
|
||||
# Autostart
|
||||
# -----------------------------------------------------
|
||||
|
||||
exec-once = swww init
|
||||
# exec-once = dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP
|
||||
# exec-once = systemctl --user import-environment WAYLAND_DISPLAY XDG_CURRENT_DESKTOP
|
||||
# Load Dunst Notification Manager
|
||||
exec-once = dunst
|
||||
exec-once = ~/dotfiles/scripts/lockscreentime.sh
|
||||
exec-once = ~/dotfiles/scripts/updatewal-swww.sh
|
||||
exec-once = ~/dotfiles/gtk/gtk.sh
|
||||
|
||||
# Set Cursor Theme
|
||||
exec-once = hyprctl setcursor Bibata-Modern-Ice 24
|
||||
exec-once = ~/dotfiles/waybar/launch.sh
|
||||
|
||||
# Load GTK settings
|
||||
exec-once = ~/dotfiles/gtk/gtk.sh
|
||||
|
||||
# Load swayidle and define the lock screen time
|
||||
exec-once = ~/dotfiles/hypr/scripts/lockscreentime.sh
|
||||
|
||||
# Load cliphist history
|
||||
exec-once = wl-paste --watch cliphist store
|
||||
|
||||
# Initialize swww
|
||||
exec-once = swww query || swww init
|
||||
|
||||
# Load last wallpaper and waybar with pywal colors
|
||||
exec-once = ~/dotfiles/hypr/scripts/wallpaper.sh init
|
||||
|
||||
@@ -9,6 +9,7 @@ bind = $mainMod, Q, killactive
|
||||
bind = $mainMod, F, fullscreen
|
||||
bind = $mainMod, E, exec, dolphin
|
||||
bind = $mainMod, T, togglefloating
|
||||
bind = $mainMod SHIFT, T, exec, ~/dotfiles/hypr/scripts/toggleallfloat.sh
|
||||
bind = $mainMod, B, exec, chromium
|
||||
bind = $mainMod CTRL, B, exec, brave
|
||||
bind = $mainMod, J, togglesplit
|
||||
@@ -17,12 +18,14 @@ bind = $mainMod, right, movefocus, r
|
||||
bind = $mainMod, up, movefocus, u
|
||||
bind = $mainMod, down, movefocus, d
|
||||
|
||||
bind = $mainMod, PRINT, exec, ~/dotfiles/scripts/grim.sh
|
||||
bind = $mainMod, PRINT, exec, ~/dotfiles/hypr/scripts/screenshot.sh
|
||||
bind = $mainMod CTRL, Q, exec, wlogout
|
||||
bind = $mainMod SHIFT, W, exec, ~/dotfiles/scripts/updatewal-swww.sh
|
||||
bind = $mainMod CTRL, W, exec, ~/dotfiles/scripts/wallpaper-swww.sh
|
||||
bind = $mainMod CTRL, RETURN, exec, ~/dotfiles/scripts/applauncher.sh
|
||||
bind = $mainMod SHIFT, W, exec, ~/dotfiles/hypr/scripts/wallpaper.sh
|
||||
bind = $mainMod CTRL, W, exec, ~/dotfiles/hypr/scripts/wallpaper.sh select
|
||||
bind = $mainMod CTRL, RETURN, exec, rofi -show drun
|
||||
bind = $mainMod CTRL, H, exec, ~/dotfiles/hypr/scripts/keybindings.sh
|
||||
bind = $mainMod SHIFT, B, exec, ~/dotfiles/waybar/launch.sh
|
||||
bind = $mainMod SHIFT, R, exec, ~/dotfiles/hypr/scripts/loadconfig.sh
|
||||
bind = $mainMod CTRL, F, exec, ~/dotfiles/scripts/filemanager.sh
|
||||
bind = $mainMod CTRL, C, exec, ~/dotfiles/scripts/cliphist.sh
|
||||
bind = $mainMod CTRL, T, exec, ~/dotfiles/waybar/themeswitcher.sh
|
||||
@@ -60,8 +63,8 @@ bind = $mainMod SHIFT, left, resizeactive, -100 0
|
||||
bind = $mainMod SHIFT, up, resizeactive, 0 -100
|
||||
bind = $mainMod SHIFT, down, resizeactive, 0 100
|
||||
|
||||
binde = , XF86MonBrightnessUp, exec, brightnessctl set 100%
|
||||
binde = , XF86MonBrightnessDown, exec, brightnessctl set 70%
|
||||
binde = , XF86MonBrightnessUp, exec, brightnessctl -q s +20%
|
||||
binde = , XF86MonBrightnessDown, exec, brightnessctl -q s 20%-
|
||||
|
||||
# -----------------------------------------------------
|
||||
# Passthrough SUPER KEY to Virtual Machine
|
||||
|
||||
@@ -1,13 +1,9 @@
|
||||
# -----------------------------------------------------
|
||||
# Keyboard layout and mouse
|
||||
# -----------------------------------------------------
|
||||
|
||||
# Keyboard Layout
|
||||
# -----------------------------------------------------
|
||||
input {
|
||||
kb_layout = $keyboardlayout
|
||||
kb_variant =
|
||||
kb_model =
|
||||
kb_options =
|
||||
kb_rules =
|
||||
kb_layout = de
|
||||
# kb_layout = us
|
||||
follow_mouse = 1
|
||||
touchpad {
|
||||
natural_scroll = false
|
||||
|
||||
8
hypr/conf/monitor.conf
Normal file
8
hypr/conf/monitor.conf
Normal file
@@ -0,0 +1,8 @@
|
||||
# -----------------------------------------------------
|
||||
# Monitor Setup
|
||||
# See https://wiki.hyprland.org/Configuring/Monitors/
|
||||
# -----------------------------------------------------
|
||||
|
||||
monitor=,preferred,auto,1
|
||||
# monitor=,1920x1080,auto,1
|
||||
# monitor=,2560x1440@120,auto,1
|
||||
Reference in New Issue
Block a user