diff options
author | Johannes Stoelp <johannes.stoelp@gmail.com> | 2023-08-19 10:49:53 +0200 |
---|---|---|
committer | Johannes Stoelp <johannes.stoelp@gmail.com> | 2023-08-19 10:49:53 +0200 |
commit | de92a6911ea33f210246b53d76258a0b18c7fc0c (patch) | |
tree | 29910a94d6d9ee82bb466ac7330b2c81a10377fb | |
parent | 4e604462735ace6ac31a3a13ba22d9a8933533de (diff) | |
download | dotfiles-de92a6911ea33f210246b53d76258a0b18c7fc0c.tar.gz dotfiles-de92a6911ea33f210246b53d76258a0b18c7fc0c.zip |
i3wm: minor cleanups
-rw-r--r-- | i3wm.conf | 34 |
1 files changed, 24 insertions, 10 deletions
@@ -264,13 +264,15 @@ bindsym $mod+d exec --no-startup-id dmenu_recency -b -l 15 -fn 'MesloLGS NF-9' - #bindsym $mod+p exec --no-startup-id rofi -show pass #bindsym $mod+Tab exec --no-startup-id rofi -show window +bindsym F9 exec i3-sensible-terminal -e htop + bindsym Print exec --no-startup-id flameshot gui # -- AUDIO --------------------------------------------------------------------- # Alsamixer. exec --no-startup-id volumeicon -bindsym $mod+Shift+m exec terminal -e 'alsamixer' +bindsym $mod+Shift+m exec i3-sensible-terminal -e 'alsamixer' # bindsym XF86AudioRaiseVolume exec "amixer set Master 5%+" # bindsym XF86AudioLowerVolume exec "amixer set Master 5%-" # bindsym XF86AudioMute exec "amixer set Master toggle" @@ -285,15 +287,27 @@ bindsym $mod+Shift+m exec terminal -e 'alsamixer' # -- AUTOSTART ----------------------------------------------------------------- -#exec --no-startup-id /usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1 -exec --no-startup-id nitrogen --restore; sleep 1; picom -b -exec --no-startup-id nm-applet +# Background. +#exec --no-startup-id nitrogen --restore; sleep 1; picom -b + +# Notifications. +exec --no-startup-id dunst + +# Power management. exec --no-startup-id xfce4-power-manager -exec --no-startup-id clipit -# exec --no-startup-id blueman-applet -# exec_always --no-startup-id sbxkb -exec --no-startup-id xautolock -time 10 -locker blurlock -#exec_always --no-startup-id ff-theme-util -exec_always --no-startup-id fix_xcursor +# Autolocking. +#exec --no-startup-id xautolock -time 10 -locker blurlock + +# Networking. +exec --no-startup-id nm-applet + +# Bluetooth. +#exec --no-startup-id blueman-applet + +# Clipboard. +#exec --no-startup-id clipit + +# Fixes. +#exec_always --no-startup-id fix_xcursor #% vim:fen:fdm=marker:fmr={{{,}}}:fdl=0:fdc=1:cc=80 |