picom
This commit is contained in:
parent
2b12a81bfe
commit
90519c27dd
24
config.ron
24
config.ron
@ -34,6 +34,7 @@
|
|||||||
(command: Execute, value: "alacritty", modifier: ["modkey", "Shift"], key: "Return"),
|
(command: Execute, value: "alacritty", modifier: ["modkey", "Shift"], key: "Return"),
|
||||||
(command: Execute, value: "firefox --private-window", modifier: ["Control", "Alt"], key: "p"),
|
(command: Execute, value: "firefox --private-window", modifier: ["Control", "Alt"], key: "p"),
|
||||||
(command: Execute, value: "code", modifier: ["Control", "Alt"], key: "c"),
|
(command: Execute, value: "code", modifier: ["Control", "Alt"], key: "c"),
|
||||||
|
(command: Execute, value: "nautilus", modifier: ["Control", "Alt"], key: "f"),
|
||||||
(command: Execute, value: "keepassxc", modifier: ["Control", "Alt"], key: "k"),
|
(command: Execute, value: "keepassxc", modifier: ["Control", "Alt"], key: "k"),
|
||||||
(command: CloseWindow, value: "", modifier: ["modkey", "Shift"], key: "q"),
|
(command: CloseWindow, value: "", modifier: ["modkey", "Shift"], key: "q"),
|
||||||
(command: SoftReload, value: "", modifier: ["modkey", "Shift"], key: "r"),
|
(command: SoftReload, value: "", modifier: ["modkey", "Shift"], key: "r"),
|
||||||
@ -76,9 +77,26 @@
|
|||||||
(command: MoveToTag, value: "7", modifier: ["modkey", "Shift"], key: "7"),
|
(command: MoveToTag, value: "7", modifier: ["modkey", "Shift"], key: "7"),
|
||||||
(command: MoveToTag, value: "8", modifier: ["modkey", "Shift"], key: "8"),
|
(command: MoveToTag, value: "8", modifier: ["modkey", "Shift"], key: "8"),
|
||||||
(command: MoveToTag, value: "9", modifier: ["modkey", "Shift"], key: "9"),
|
(command: MoveToTag, value: "9", modifier: ["modkey", "Shift"], key: "9"),
|
||||||
(command: Execute, value: "~/.config/eww/sh/actions/vol/vol_mute.sh", modifier: None, key: "XF86XK_AudioMute"),
|
(command: Execute,
|
||||||
(command: Execute, value: "~/.config/eww/sh/actions/vol/vol_dec.sh", modifier: None, key: "XF86XK_AudioLowerVolume"),
|
value: "~/.config/eww/sh/actions/vol/vol_mute.sh",
|
||||||
(command: Execute, value: "~/.config/eww/sh/actions/vol/vol_inc.sh", modifier: None, key: "XF86XK_AudioRaiseVolume"),
|
modifier: None,
|
||||||
|
key: "XF86XK_AudioMute"),
|
||||||
|
(command: Execute,
|
||||||
|
value: "~/.config/eww/sh/actions/vol/vol_dec.sh",
|
||||||
|
modifier: None,
|
||||||
|
key: "XF86XK_AudioLowerVolume"),
|
||||||
|
(command: Execute,
|
||||||
|
value: "~/.config/eww/sh/actions/vol/vol_inc.sh",
|
||||||
|
modifier: None,
|
||||||
|
key: "XF86XK_AudioRaiseVolume"),
|
||||||
|
(command: Execute,
|
||||||
|
value: "~/.config/eww/sh/actions/brightness/brit_dec.sh",
|
||||||
|
modifier: None,
|
||||||
|
key: "XF86XK_MonBrightnessDown"),
|
||||||
|
(command: Execute,
|
||||||
|
value: "~/.config/eww/sh/actions/brightness/brit_inc.sh",
|
||||||
|
modifier: None,
|
||||||
|
key: "XF86XK_MonBrightnessUp"),
|
||||||
],
|
],
|
||||||
workspaces: [],
|
workspaces: [],
|
||||||
)
|
)
|
||||||
|
@ -1,10 +1,13 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Load the compositor
|
||||||
|
picom -b
|
||||||
|
|
||||||
# Load left-wm theme
|
# Load left-wm theme
|
||||||
leftwm command "LoadTheme ~/.config/leftwm/themes/current/theme.ron"
|
leftwm command "LoadTheme ~/.config/leftwm/themes/current/theme.ron"
|
||||||
|
|
||||||
# Set wallpaper. Change the path as needed
|
# Set wallpaper. Change the path as needed
|
||||||
feh --bg-fill ~/Pictures/Wallpaper/debdark1.png
|
feh --bg-fill ~/Pictures/Wallpaper/wp3.jpg
|
||||||
|
|
||||||
# Start EWW daemon and widgets
|
# Start EWW daemon and widgets
|
||||||
eww daemon && eww open panel --arg "h=27" --arg "w=1366"
|
eww daemon && eww open panel --arg "h=27" --arg "w=1366"
|
||||||
|
Loading…
Reference in New Issue
Block a user