Ansible works!
This commit is contained in:
parent
66ce1fade7
commit
77932d9f2f
3 changed files with 258 additions and 0 deletions
223
files/hyprland.conf
Normal file
223
files/hyprland.conf
Normal file
|
|
@ -0,0 +1,223 @@
|
|||
# MONITORS #
|
||||
monitor=eDP-1,1920x1080,auto,1.3333
|
||||
|
||||
# MY PROGRAMS #
|
||||
$terminal = kitty
|
||||
$fileManager = nemo
|
||||
|
||||
|
||||
# AUTOSTART #
|
||||
exec-once = waybar & hyprpaper & swaync
|
||||
|
||||
# ENVIRONMENT VARIABLES #
|
||||
env = XCURSOR_SIZE,24
|
||||
env = HYPRCURSOR_SIZE,24
|
||||
|
||||
# PERMISSIONS #
|
||||
permission = /usr/(bin|local/bin)/grim, screencopy, allow
|
||||
permission = /usr/(lib|libexec|lib64)/xdg-desktop-portal-hyprland, screencopy, allow
|
||||
permission = /usr/(bin|local/bin)/hyprpm, plugin, allow
|
||||
|
||||
# LOOK AND FEEL #
|
||||
general {
|
||||
gaps_in = 5
|
||||
gaps_out = 10
|
||||
|
||||
border_size = 1
|
||||
|
||||
col.active_border = rgba(171,189,245,1) rgba(171,189,245,1) 45deg
|
||||
col.inactive_border = rgba(95,120,200,1)
|
||||
|
||||
resize_on_border = false
|
||||
|
||||
allow_tearing = false
|
||||
|
||||
layout = dwindle
|
||||
}
|
||||
#deco
|
||||
decoration {
|
||||
rounding = 10
|
||||
rounding_power = 2
|
||||
|
||||
active_opacity = 0.95
|
||||
inactive_opacity = 0.90
|
||||
#shadow
|
||||
shadow {
|
||||
enabled = true
|
||||
range = 4
|
||||
render_power = 3
|
||||
color = rgba(1a1a1aee)
|
||||
}
|
||||
|
||||
#blur
|
||||
blur {
|
||||
enabled = true
|
||||
size = 3
|
||||
passes = 1
|
||||
|
||||
vibrancy = 0.1696
|
||||
}
|
||||
}
|
||||
|
||||
#animations
|
||||
animations {
|
||||
enabled = yes, please :)
|
||||
|
||||
#curves
|
||||
# NAME, X0, Y0, X1, Y1
|
||||
bezier = easeOutQuint, 0.23, 1, 0.32, 1
|
||||
bezier = easeInOutCubic, 0.65, 0.05, 0.36, 1
|
||||
bezier = linear, 0, 0, 1, 1
|
||||
bezier = almostLinear, 0.5, 0.5, 0.75, 1
|
||||
bezier = quick, 0.15, 0, 0.1, 1
|
||||
|
||||
#animations
|
||||
# NAME, ONOFF, SPEED, CURVE, [STYLE]
|
||||
animation = global, 1, 10, default
|
||||
animation = border, 1, 5.39, easeOutQuint
|
||||
animation = windows, 1, 4.79, easeOutQuint
|
||||
animation = windowsIn, 1, 4.1, easeOutQuint, slidefade 90
|
||||
animation = windowsOut, 1, 2.2, easeOutQuint, slidefade 270
|
||||
animation = fadeIn, 1, 1.73, almostLinear
|
||||
animation = fadeOut, 1, 1.46, almostLinear
|
||||
animation = fade, 1, 3.03, quick
|
||||
animation = layers, 1, 3.81, easeOutQuint
|
||||
animation = layersIn, 1, 4, easeOutQuint, fade
|
||||
animation = layersOut, 1, 1.5, linear, fade
|
||||
animation = fadeLayersIn, 1, 1.79, almostLinear
|
||||
animation = fadeLayersOut, 1, 1.39, almostLinear
|
||||
animation = workspaces, 1, 1.94, easeInOutCubic, slide
|
||||
animation = workspacesIn, 1, 1.21, easeInOutCubic, slide
|
||||
animation = workspacesOut, 1, 1.94, easeInOutCubic, slide
|
||||
animation = zoomFactor, 1, 7, quick
|
||||
}
|
||||
|
||||
#dwindle
|
||||
dwindle {
|
||||
pseudotile = true
|
||||
preserve_split = true
|
||||
}
|
||||
|
||||
#master
|
||||
master {
|
||||
new_status = master
|
||||
}
|
||||
|
||||
#misc
|
||||
misc {
|
||||
force_default_wallpaper = 0
|
||||
disable_hyprland_logo = true
|
||||
}
|
||||
|
||||
|
||||
# INPUT #
|
||||
|
||||
#input
|
||||
input {
|
||||
kb_layout = de
|
||||
kb_variant =
|
||||
kb_model =
|
||||
kb_options =
|
||||
kb_rules =
|
||||
|
||||
follow_mouse = 1
|
||||
|
||||
sensitivity = 0 .
|
||||
|
||||
touchpad {
|
||||
natural_scroll = false
|
||||
}
|
||||
}
|
||||
|
||||
#Gestures
|
||||
gesture = 3, horizontal, workspace
|
||||
|
||||
device {
|
||||
name = epic-mouse-v1
|
||||
sensitivity = -0.5
|
||||
}
|
||||
|
||||
|
||||
# KEYBINDINGS #
|
||||
$mainMod = SUPER
|
||||
|
||||
bind = $mainMod, Return, exec, $terminal
|
||||
bind = $mainMod, Q, killactive,^
|
||||
bind = $mainMod, E, exec, $fileManager
|
||||
bind = $mainMod, D, exec, pkill wofi || wofi --show drun
|
||||
bind = $mainMod, J, togglesplit, # dwindle
|
||||
bind = $mainMod, F, exec, firefox
|
||||
bind = $mainMod, K, fullscreen
|
||||
bind = $mainMod, L, exec, hyprlock
|
||||
bind = $mainMod, P, exec, /home/denode/.config/waybar/scripts/power.sh
|
||||
bind = $mainMod SHIFT, S, exec, grim -g "$(slurp)" - | swappy -f -
|
||||
bind = $mainMod, N, exec, swaync-client -t -sw
|
||||
bind = $mainMod SHIFT, N, exec, swaync-client -d -sw
|
||||
|
||||
# Move focus with mainMod + arrow keys
|
||||
bind = $mainMod, left, movefocus, l
|
||||
bind = $mainMod, right, movefocus, r
|
||||
bind = $mainMod, up, movefocus, u
|
||||
bind = $mainMod, down, movefocus, d
|
||||
|
||||
# Switch workspaces with mainMod + [0-9]
|
||||
bind = $mainMod, 1, workspace, 1
|
||||
bind = $mainMod, 2, workspace, 2
|
||||
bind = $mainMod, 3, workspace, 3
|
||||
bind = $mainMod, 4, workspace, 4
|
||||
bind = $mainMod, 5, workspace, 5
|
||||
bind = $mainMod, 6, workspace, 6
|
||||
bind = $mainMod, 7, workspace, 7
|
||||
bind = $mainMod, 8, workspace, 8
|
||||
bind = $mainMod, 9, workspace, 9
|
||||
bind = $mainMod, 0, workspace, 10
|
||||
|
||||
# Move active window to a workspace with mainMod + SHIFT + [0-9]
|
||||
bind = $mainMod SHIFT, 1, movetoworkspace, 1
|
||||
bind = $mainMod SHIFT, 2, movetoworkspace, 2
|
||||
bind = $mainMod SHIFT, 3, movetoworkspace, 3
|
||||
bind = $mainMod SHIFT, 4, movetoworkspace, 4
|
||||
bind = $mainMod SHIFT, 5, movetoworkspace, 5
|
||||
bind = $mainMod SHIFT, 6, movetoworkspace, 6
|
||||
bind = $mainMod SHIFT, 7, movetoworkspace, 7
|
||||
bind = $mainMod SHIFT, 8, movetoworkspace, 8
|
||||
bind = $mainMod SHIFT, 9, movetoworkspace, 9
|
||||
bind = $mainMod SHIFT, 0, movetoworkspace, 10
|
||||
|
||||
# Example special workspace (scratchpad)
|
||||
bind = $mainMod, S, togglespecialworkspace, magic
|
||||
#bind = $mainMod SHIFT, S, movetoworkspace, special:magic
|
||||
|
||||
# Scroll through existing workspaces with mainMod + scroll
|
||||
bind = $mainMod, mouse_down, workspace, e+1
|
||||
bind = $mainMod, mouse_up, workspace, e-1
|
||||
|
||||
# Move/resize windows with mainMod + LMB/RMB and dragging
|
||||
bindm = $mainMod, mouse:272, movewindow
|
||||
bindm = $mainMod, mouse:273, resizewindow
|
||||
|
||||
# Laptop multimedia keys for volume and LCD brightness
|
||||
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%-
|
||||
|
||||
# Requires playerctl
|
||||
bindl = , XF86AudioNext, exec, playerctl next
|
||||
bindl = , XF86AudioPause, exec, playerctl play-pause
|
||||
bindl = , XF86AudioPlay, exec, playerctl play-pause
|
||||
bindl = , XF86AudioPrev, exec, playerctl previous
|
||||
bindl = ,switch:on:Lid Switch, exec, hyprlock
|
||||
|
||||
# WINDOWS AND WORKSPACES #
|
||||
|
||||
# Ignore maximize requests from apps. You'll probably like this.
|
||||
windowrule = suppressevent maximize, class:.*
|
||||
|
||||
# Fix some dragging issues with XWayland
|
||||
windowrule = nofocus,class:^$,title:^$,xwayland:1,floating:1,fullscreen:0,pinned:0
|
||||
xwayland {
|
||||
force_zero_scaling = true
|
||||
}
|
||||
1
inventory
Normal file
1
inventory
Normal file
|
|
@ -0,0 +1 @@
|
|||
localhost ansible_connections=local
|
||||
34
setup.yml
Normal file
34
setup.yml
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
---
|
||||
- name: Arch Setup
|
||||
hosts: localhost
|
||||
become: true
|
||||
|
||||
tasks:
|
||||
- name: System update
|
||||
pacman:
|
||||
update_cache: yes
|
||||
upgrade: yes
|
||||
|
||||
- name: install ansible basics
|
||||
pacman:
|
||||
name:
|
||||
- git
|
||||
- ripgrep
|
||||
state: present
|
||||
|
||||
- name: check hyprland conf folder
|
||||
file:
|
||||
path: /home/denode/.config/hypr
|
||||
state: directory
|
||||
owner: denode
|
||||
group: denode
|
||||
mode: '0755'
|
||||
|
||||
- name: Hyprland Config synchronisieren
|
||||
copy:
|
||||
src: files/hyprland.conf
|
||||
dest: /home/denode/.config/hypr/hyprland.conf
|
||||
owner: denode
|
||||
group: denode
|
||||
mode: '0644'
|
||||
backup: yes
|
||||
Loading…
Reference in a new issue