chore: general i3 update
This commit is contained in:
parent
7930c37159
commit
46a0a2a054
|
@ -16,7 +16,7 @@ set $mod Mod4
|
|||
font pango:monospace 8
|
||||
|
||||
# Set up Picom so we can use ulauncher
|
||||
# exec_always --no-startup-id picom -b --config $HOME/.config/picom/picom.conf
|
||||
exec_always --no-startup-id picom -b --config $HOME/.config/picom/picom.conf
|
||||
|
||||
# This font is widely installed, provides lots of unicode glyphs, right-to-left
|
||||
# text rendering and scalability on retina/hidpi displays (thanks to pango).
|
||||
|
@ -44,8 +44,6 @@ bindsym XF86AudioPlay exec --no-startup-id playerctl play-pause
|
|||
bindsym XF86AudioNext exec --no-startup-id playerctl next
|
||||
bindsym XF86AudioPrev exec --no-startup-id playerctl previous
|
||||
|
||||
|
||||
|
||||
# Use Mouse+$mod to drag floating windows to their wanted position
|
||||
floating_modifier $mod
|
||||
|
||||
|
@ -55,8 +53,12 @@ bindsym $mod+Return exec kitty
|
|||
# kill focused window
|
||||
bindsym $mod+Shift+q kill
|
||||
|
||||
# Start ulauncher
|
||||
# Can add --no-window-shadow if I don't want to use a compositor
|
||||
exec_always --no-startup-id ulauncher --hide-window
|
||||
|
||||
# start dmenu (a program launcher)
|
||||
bindsym $mod+space exec ulauncher --no-window-shadow
|
||||
bindsym $mod+space exec ulauncher-toggle
|
||||
|
||||
# A more modern dmenu replacement is rofi:
|
||||
# bindsym $mod+space exec "rofi -modi drun,run -show drun"
|
||||
|
|
|
@ -210,8 +210,8 @@ blur-background-exclude = [
|
|||
# Specify the backend to use: `xrender`, `glx`, or `xr_glx_hybrid`.
|
||||
# `xrender` is the default one.
|
||||
#
|
||||
# backend = "glx";
|
||||
backend = "xrender";
|
||||
backend = "glx";
|
||||
# backend = "xrender";
|
||||
|
||||
# Enable/disable VSync.
|
||||
# vsync = false
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
#!/bin/bash
|
||||
|
||||
if [[ "$DESKTOP_SESSION" == "i3" ]]; then
|
||||
export QT_QPA_PLATFORMTHEME="qt5ct"
|
||||
fi
|
Loading…
Reference in New Issue