mirror of
https://github.com/lcpz/awesome-copycats.git
synced 2026-03-23 05:55:12 +00:00
update
This commit is contained in:
parent
f77085b244
commit
a348dcf91c
|
|
@ -96,8 +96,8 @@ Installation
|
||||||
|
|
||||||
.. code-block:: shell
|
.. code-block:: shell
|
||||||
|
|
||||||
git clone --recurse-submodules --remote-submodules --depth 1 -j 2 https://github.com/SirHadrian/awesome-themes.git
|
[[ ! -d "~/.config/awesome" ]] && mkdir -p ~/.config/awesome
|
||||||
mv -v awesome-themes/* ~/.config/awesome && rm -rf awesome-themes
|
git clone --recurse-submodules --remote-submodules --depth 1 -j 2 https://github.com/SirHadrian/awesome-themes.git && mv -v awesome-themes/* ~/.config/awesome && rm -rf awesome-themes
|
||||||
|
|
||||||
Usage
|
Usage
|
||||||
=====
|
=====
|
||||||
|
|
|
||||||
3
themes/powerarrow-dark/README.md
Normal file
3
themes/powerarrow-dark/README.md
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
# Powerarrow-dark
|
||||||
|
|
||||||
|
###
|
||||||
|
|
@ -101,7 +101,7 @@ local themes = {
|
||||||
local chosen_theme = themes[7]
|
local chosen_theme = themes[7]
|
||||||
local modkey = "Mod4"
|
local modkey = "Mod4"
|
||||||
local altkey = "Mod1"
|
local altkey = "Mod1"
|
||||||
local terminal = "terminator"
|
local terminal = "alacritty"
|
||||||
local vi_focus = false -- vi-like client focus https://github.com/lcpz/awesome-copycats/issues/275
|
local vi_focus = false -- vi-like client focus https://github.com/lcpz/awesome-copycats/issues/275
|
||||||
local cycle_prev = true -- cycle with only the previously focused client or all https://github.com/lcpz/awesome-copycats/issues/274
|
local cycle_prev = true -- cycle with only the previously focused client or all https://github.com/lcpz/awesome-copycats/issues/274
|
||||||
local editor = os.getenv("EDITOR") or "nano"
|
local editor = os.getenv("EDITOR") or "nano"
|
||||||
|
|
@ -459,7 +459,8 @@ globalkeys = mytable.join( -- Destroy all notifications
|
||||||
-- end, {
|
-- end, {
|
||||||
-- description = "show weather",
|
-- description = "show weather",
|
||||||
-- group = "widgets"
|
-- group = "widgets"
|
||||||
-- }), -- Screen brightness
|
-- }),
|
||||||
|
-- Screen brightness
|
||||||
awful.key({}, "#233", function() os.execute("light -A 10") end,
|
awful.key({}, "#233", function() os.execute("light -A 10") end,
|
||||||
{
|
{
|
||||||
description = "Fn + f6 --- brightness +10%",
|
description = "Fn + f6 --- brightness +10%",
|
||||||
|
|
@ -469,13 +470,13 @@ globalkeys = mytable.join( -- Destroy all notifications
|
||||||
group = "hotkeys"
|
group = "hotkeys"
|
||||||
}), -- Max/Min Brightness
|
}), -- Max/Min Brightness
|
||||||
awful.key({altkey, "Control", "Shift"}, "0",
|
awful.key({altkey, "Control", "Shift"}, "0",
|
||||||
function() os.execute("adjust-brightness.lnk --min") end,
|
function() os.execute("light -S 0") end,
|
||||||
{description = "Min screen brightness", group = "hotkeys"}),
|
{description = "Min screen brightness", group = "hotkeys"}),
|
||||||
awful.key({altkey, "Control", "Shift"}, "9", function()
|
awful.key({altkey, "Control", "Shift"}, "9", function()
|
||||||
os.execute("adjust-brightness.lnk --max")
|
os.execute("light -S 100")
|
||||||
end, {description = "Max screen brightness", group = "hotkeys"}),
|
end, {description = "Max screen brightness", group = "hotkeys"}),
|
||||||
awful.key({altkey, "Control", "Shift"}, "m", function()
|
awful.key({altkey, "Control", "Shift"}, "m", function()
|
||||||
os.execute("adjust-brightness.lnk --mid")
|
os.execute("light -S 50")
|
||||||
end, {description = "Mid screen brightness", group = "hotkeys"}),
|
end, {description = "Mid screen brightness", group = "hotkeys"}),
|
||||||
-- Bluetooth toggle
|
-- Bluetooth toggle
|
||||||
awful.key({altkey, "Control", "Shift"}, "b", function()
|
awful.key({altkey, "Control", "Shift"}, "b", function()
|
||||||
|
|
@ -484,14 +485,12 @@ globalkeys = mytable.join( -- Destroy all notifications
|
||||||
naughty.notify({
|
naughty.notify({
|
||||||
title = "Bluetooth",
|
title = "Bluetooth",
|
||||||
text = "Bluetooth is ON",
|
text = "Bluetooth is ON",
|
||||||
icon = "~/.config/awesome/themes/powerarrow-dark/icons/bluetooth.png"
|
|
||||||
})
|
})
|
||||||
BLUESTATUS = true
|
BLUESTATUS = true
|
||||||
else
|
else
|
||||||
naughty.notify({
|
naughty.notify({
|
||||||
title = "Bluetooth",
|
title = "Bluetooth",
|
||||||
text = "Bluetooth is OFF",
|
text = "Bluetooth is OFF",
|
||||||
icon = "~/.config/awesome/themes/powerarrow-dark/icons/bluetooth.png"
|
|
||||||
})
|
})
|
||||||
BLUESTATUS = false
|
BLUESTATUS = false
|
||||||
end
|
end
|
||||||
|
|
@ -833,5 +832,7 @@ client.connect_signal("unfocus",
|
||||||
-- Gaps
|
-- Gaps
|
||||||
beautiful.useless_gap = 6
|
beautiful.useless_gap = 6
|
||||||
|
|
||||||
awful.spawn.with_shell("picom")
|
-- awful.spawn.with_shell("picom")
|
||||||
--awful.spawn.with_shell("nitrogen --set-zoom-fill --random ~/Pictures/SFW")
|
awful.spawn.with_shell("nitrogen --set-zoom-fill --random ~/Pictures/SFW")
|
||||||
|
awful.spawn.with_shell("optimus-manager-qt")
|
||||||
|
os.execute("picom --experimental-backends -b")
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue