Compare commits

...

8 commits
work ... main

Author SHA1 Message Date
finga e09cf21501 i3status-rs: Change font
Change font to NotoSansMono-Regular.
2024-04-05 14:56:19 +02:00
finga 6889b359b5 dunst: Improve dunst keybindings 2024-04-05 14:52:01 +02:00
finga 89dd4f1795 dunst: Change keybinding to pop msg from history
Use $mod+comma instead of $mod+grave to pop messages from the history.
2024-04-05 14:51:20 +02:00
finga a9e6816645 i3-config: Change lock shortcut
In order for the super-l key combination to be available in other
programs change it to super-shift-l.
2024-04-05 14:49:23 +02:00
finga ff4d1cafc8 dunst: Adapt config for desktop
Use different settings for desktop at home.
2023-06-23 14:49:31 +02:00
finga a643341995 dunst: Add keybindings for dunst
In order to control dunst from the keyboard create some keybindings.
2023-06-23 14:47:44 +02:00
finga 309a329b7b dunst: Create dunst config
In order to improve visibility of notifications add a custom
configuration.
2023-06-23 14:47:44 +02:00
finga 5da5c35c71 Use the correct command to take screenshots 2023-04-25 17:18:06 +02:00
4 changed files with 31 additions and 4 deletions

20
.config/dunst/dunstrc Normal file
View file

@ -0,0 +1,20 @@
[global]
follow = keyboard
scale = 1
idle_threshold = 3
font = Monospace 10
history_length = 100
corner_radius = 5
ignore_dbusclose = true
timeout = 30
background = "#333333"
frame_color = "#009900"
[urgency_low]
foreground = "#009900"
[urgency_normal]
foreground = "#ffee33"
[urgency_critical]
foreground = "#aa3333"

View file

@ -41,7 +41,7 @@ bindsym $mod+Shift+Return exec i3-sensible-editor
bindsym $mod+Print exec scrot ~/tmp/screenshots/'%Y-%m-%d_%H:%M:%S_$wx$h.png'
# lock screen
bindsym $mod+l exec fuzzy-i3lock
bindsym $mod+Shift+l exec fuzzy-i3lock
# kill focused window
bindsym $mod+Shift+q kill
@ -165,6 +165,11 @@ bindsym XF86AudioPlay exec --no-startup-id mpc toggle
bindsym XF86AudioPrev exec --no-startup-id mpc prev
bindsym XF86AudioStop exec --no-startup-id mpc stop
# dunst control
bindsym $mod+comma exec dunstctl close
bindsym $mod+Shift+comma exec dunstctl close-all
bindsym $mod+period exec dunstctl history-pop
# open login screen on another vt (virtual terminal)
bindsym $mod+Shift+XF86HomePage exec "dm-tool switch-to-greeter"
@ -207,7 +212,7 @@ set $screen1 "HDMI-2"
# i3status-rust finds out, if available)
bar {
status_command i3status-rs
font pango:DejaVu Sans Mono, forkawesome 8
font pango:NotoSansMono-Regular, forkawesome 8
position top
tray_output primary
workspace_buttons yes
@ -222,9 +227,10 @@ bar {
#client.orientation #ff0000
}
}
bar {
status_command i3status-rs ~/.config/i3status-rust/secondary.toml
font pango:DejaVu Sans Mono, forkawesome 8
font pango:NotoSansMono-Regular, forkawesome 8
position top
tray_output primary
workspace_buttons yes

View file

@ -1,4 +1,5 @@
*
!/.config/dunst/dunstrc
!/.config/i3/config
!/.config/i3status-rust/config.toml
!/.config/i3status-rust/secondary.toml

View file

@ -8,6 +8,6 @@
screenshot="${TMPDIR:-/tmp}/fuzzy-i3lock.png"
scrot "$screenshot"
scrot -o "$screenshot"
mogrify -scale 10% -scale 1000% "$screenshot"
exec i3lock -i "$screenshot"