Add support for flameshot
This commit is contained in:
parent
d95be0de3b
commit
b66d18edba
4 changed files with 27 additions and 0 deletions
|
@ -19,6 +19,7 @@
|
||||||
- curl
|
- curl
|
||||||
- dia
|
- dia
|
||||||
- fcitx5
|
- fcitx5
|
||||||
|
- flameshot
|
||||||
- foot
|
- foot
|
||||||
- git
|
- git
|
||||||
- grimshot
|
- grimshot
|
||||||
|
|
|
@ -16,6 +16,10 @@
|
||||||
ansible.builtin.file:
|
ansible.builtin.file:
|
||||||
dest: /home/{{ uid }}/.config/sway
|
dest: /home/{{ uid }}/.config/sway
|
||||||
state: directory
|
state: directory
|
||||||
|
- name: Create xdg dir
|
||||||
|
ansible.builtin.file:
|
||||||
|
dest: /home/{{ uid }}/.config/xdg-desktop-portal
|
||||||
|
state: directory
|
||||||
- name: Install sway config
|
- name: Install sway config
|
||||||
ansible.builtin.template:
|
ansible.builtin.template:
|
||||||
src: ../templates/sway_config.j2
|
src: ../templates/sway_config.j2
|
||||||
|
@ -24,6 +28,14 @@
|
||||||
group: '{{ uid }}'
|
group: '{{ uid }}'
|
||||||
mode: '0640'
|
mode: '0640'
|
||||||
notify: Reload sway
|
notify: Reload sway
|
||||||
|
- name: Install sway config
|
||||||
|
ansible.builtin.template:
|
||||||
|
src: ../templates/sway-portals.conf.j2
|
||||||
|
dest: /home/{{ uid }}/.config/xdg-desktop-portal/sway-portals.conf
|
||||||
|
owner: '{{ uid }}'
|
||||||
|
group: '{{ uid }}'
|
||||||
|
mode: '0640'
|
||||||
|
notify: Reload sway
|
||||||
- name: Create waybar dir
|
- name: Create waybar dir
|
||||||
ansible.builtin.file:
|
ansible.builtin.file:
|
||||||
dest: /home/{{ uid }}/.config/waybar
|
dest: /home/{{ uid }}/.config/waybar
|
||||||
|
|
6
templates/sway-portals.conf.j2
Normal file
6
templates/sway-portals.conf.j2
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
[preferred]
|
||||||
|
# use xdg-desktop-portal-gtk for every portal interface
|
||||||
|
default=gtk
|
||||||
|
# except for the xdg-desktop-portal-wlr supplied interfaces
|
||||||
|
org.freedesktop.impl.portal.Screencast=wlr
|
||||||
|
org.freedesktop.impl.portal.Screenshot=wlr
|
|
@ -14,6 +14,11 @@ set $term footclient
|
||||||
# on the original workspace that the command was run on.
|
# on the original workspace that the command was run on.
|
||||||
set $menu wofi -S drun | xargs swaymsg exec --
|
set $menu wofi -S drun | xargs swaymsg exec --
|
||||||
|
|
||||||
|
# Dbus stuff
|
||||||
|
exec systemctl --user import-environment DISPLAY WAYLAND_DISPLAY SWAYSOCK
|
||||||
|
exec hash dbus-update-activation-environment 2>/dev/null && \
|
||||||
|
dbus-update-activation-environment --systemd DISPLAY WAYLAND_DISPLAY SWAYSOCK
|
||||||
|
|
||||||
# Autostart
|
# Autostart
|
||||||
exec --no-startup-id nm-applet
|
exec --no-startup-id nm-applet
|
||||||
exec --no-startup-id autotiling
|
exec --no-startup-id autotiling
|
||||||
|
@ -174,6 +179,9 @@ input type:keyboard {
|
||||||
# Show the next scratchpad window or hide the focused scratchpad window.
|
# Show the next scratchpad window or hide the focused scratchpad window.
|
||||||
# If there are multiple scratchpad windows, this command cycles through them.
|
# If there are multiple scratchpad windows, this command cycles through them.
|
||||||
bindsym $mod+minus scratchpad show
|
bindsym $mod+minus scratchpad show
|
||||||
|
|
||||||
|
# Flameshot
|
||||||
|
for_window [app_id="flameshot"] border pixel 0, floating enable, fullscreen disable, move absolute position 0 0
|
||||||
#
|
#
|
||||||
# Resizing containers:
|
# Resizing containers:
|
||||||
#
|
#
|
||||||
|
|
Loading…
Add table
Reference in a new issue