Compare commits
No commits in common. "master" and "gba/test_noctalia" have entirely different histories.
master
...
gba/test_n
8 changed files with 49 additions and 24 deletions
|
|
@ -26,7 +26,7 @@ tagrule = id:9, layout_name:scroller
|
|||
# env = QT_QPA_PLATFORMTHEME_QT6,qt6ct
|
||||
env=QT_QPA_PLATFORM,wayland
|
||||
env=ELECTRON_OZONE_PLATFORM_HINT,auto
|
||||
env=QT_QPA_PLATFORMTHEME,qt6ct
|
||||
env=QT_QPA_PLATFORMTHEME,gtk3
|
||||
|
||||
# | Input Devices |
|
||||
# Configure your input devices here. | https://mangowm.github.io/docs/configuration/input
|
||||
|
|
@ -96,25 +96,26 @@ overlaycolor = 0x14a57cff
|
|||
cursor_theme = capitaine-cursors
|
||||
cursor_size = 24
|
||||
|
||||
blur = 1
|
||||
blur_layer = 0
|
||||
blur_optimized = 1
|
||||
blur_params_num_passes = 2
|
||||
blur_params_radius = 5
|
||||
blur_params_noise = 0.02
|
||||
blur_params_brightness = 0.9
|
||||
blur_params_contrast = 0.9
|
||||
blur_params_saturation = 1.0
|
||||
layer_animations=0
|
||||
# Window effect
|
||||
blur=1
|
||||
blur_layer=1
|
||||
blur_optimized=0
|
||||
blur_params_num_passes=2
|
||||
blur_params_radius=5
|
||||
blur_params_noise=0.02
|
||||
blur_params_brightness=0.9
|
||||
blur_params_contrast=0.9
|
||||
blur_params_saturation=1.0
|
||||
|
||||
shadows = 1
|
||||
layer_shadows = 0
|
||||
shadow_only_floating = 0
|
||||
shadows_size = 4
|
||||
shadows_blur = 12
|
||||
shadows_position_x = 2
|
||||
shadows_position_y = 2
|
||||
shadowscolor = 0x000000ff
|
||||
layer_animations=0
|
||||
shadows=1
|
||||
layer_shadows=1
|
||||
shadow_only_floating=1
|
||||
shadows_size=12
|
||||
shadows_blur=15
|
||||
shadows_position_x=2
|
||||
shadows_position_y=2
|
||||
shadowscolor=0x000000ff
|
||||
|
||||
animations = 1
|
||||
animation_type_open = zoom
|
||||
|
|
@ -151,6 +152,9 @@ bind = SUPER, b, spawn, firefox-bin
|
|||
# Please choose the text editor of your choice.
|
||||
# bind = SUPER, x, spawn, alacritty -e hx
|
||||
|
||||
# Screenshots
|
||||
bind = SUPER, p, spawn, ~/.config/mango/scripts/screenshot.sh
|
||||
|
||||
# Reload config
|
||||
bind = SUPER, r, reload_config
|
||||
|
||||
|
|
@ -252,10 +256,6 @@ bind=NONE,XF86AudioMute,spawn,noctalia msg volume-mute
|
|||
bind=NONE,XF86MonBrightnessUp,spawn,noctalia msg brightness-up
|
||||
bind=NONE,XF86MonBrightnessDown,spawn,noctalia msg brightness-down
|
||||
bind=SUPER+SHIFT,q,spawn,noctalia msg panel-toggle session
|
||||
|
||||
# Screenshots
|
||||
bind = SUPER, p, spawn, noctalia msg screenshot-region
|
||||
|
||||
# | Rules |
|
||||
# Window/Tag/Layer rules. | https://mangowm.github.io/docs/window-management/rules
|
||||
|
||||
|
|
@ -267,7 +267,6 @@ layerrule = noanim:1, noblur:1, layer_name:selection
|
|||
|
||||
# autostart your favorite applications here
|
||||
|
||||
env=SSH_AUTH_SOCK,/run/user/1000/ssh-agent.socket
|
||||
exec-once=~/.config/mango/autostart.sh
|
||||
exec-once=kdeconnectd
|
||||
exec-once=sleep 1 && noctalia --daemon
|
||||
|
|
|
|||
0
mango/.config/mango/dms/binds.conf
Normal file
0
mango/.config/mango/dms/binds.conf
Normal file
6
mango/.config/mango/dms/colors.conf
Normal file
6
mango/.config/mango/dms/colors.conf
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
# ! Auto-generated file. Do not edit directly.
|
||||
# Remove source = ./dms/colors.conf from your config to override.
|
||||
|
||||
bordercolor = 0x4d80ffff
|
||||
focuscolor = 0xff6600ff
|
||||
urgentcolor = 0xff3366ff
|
||||
3
mango/.config/mango/dms/cursor.conf
Normal file
3
mango/.config/mango/dms/cursor.conf
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# Auto-generated by DMS - do not edit manually
|
||||
cursor_size=24
|
||||
cursor_theme=Adwaita
|
||||
7
mango/.config/mango/dms/layout.conf
Normal file
7
mango/.config/mango/dms/layout.conf
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
# Auto-generated by DMS - do not edit manually
|
||||
border_radius=5
|
||||
gappih=10
|
||||
gappiv=10
|
||||
gappoh=10
|
||||
gappov=10
|
||||
borderpx=3
|
||||
0
mango/.config/mango/dms/outputs.conf
Normal file
0
mango/.config/mango/dms/outputs.conf
Normal file
BIN
mango/.config/mango/scripts/screenshot.png
Normal file
BIN
mango/.config/mango/scripts/screenshot.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 26 KiB |
10
mango/.config/mango/scripts/screenshot.sh
Executable file
10
mango/.config/mango/scripts/screenshot.sh
Executable file
|
|
@ -0,0 +1,10 @@
|
|||
#!/usr/bin/env bash
|
||||
#
|
||||
DIR="$HOME/Pictures/Screenshots"
|
||||
mkdir -p "$DIR"
|
||||
|
||||
FILE="$DIR/screenshot_$(date +'%Y-%m-%d_%H-%M-%S').png"
|
||||
|
||||
grim -g "$(slurp)" - | tee "$FILE" | wl-copy
|
||||
|
||||
notify-send "Screenshot Captured" "Saved to $FILE" -i $HOME/.config/mango/scripts/screenshot.png
|
||||
Loading…
Add table
Add a link
Reference in a new issue