changed theme name
20
rc.lua
@ -240,7 +240,7 @@ end
|
|||||||
-- {{{ Variable definitions
|
-- {{{ Variable definitions
|
||||||
-- Themes define colours, icons, font and wallpapers.
|
-- Themes define colours, icons, font and wallpapers.
|
||||||
--beautiful.init(gears.filesystem.get_themes_dir() .. "default/theme.lua")
|
--beautiful.init(gears.filesystem.get_themes_dir() .. "default/theme.lua")
|
||||||
local theme_path = string.format("%s/.config/awesome/themes/%s/theme.lua", os.getenv("HOME"), "zenburn")
|
local theme_path = string.format("%s/.config/awesome/themes/%s/theme.lua", os.getenv("HOME"), "blueish")
|
||||||
beautiful.init(theme_path)
|
beautiful.init(theme_path)
|
||||||
beautiful.font = "Indie Flower Bold 12"
|
beautiful.font = "Indie Flower Bold 12"
|
||||||
--local cr = cairo.Context()
|
--local cr = cairo.Context()
|
||||||
@ -249,7 +249,7 @@ beautiful.font = "Indie Flower Bold 12"
|
|||||||
|
|
||||||
|
|
||||||
-- This is used later as the default terminal and editor to run.
|
-- This is used later as the default terminal and editor to run.
|
||||||
terminal = "konsole"
|
terminal = "term" -- symbolic link to the terminal you are currently using
|
||||||
editor = os.getenv("EDITOR") or "vim"
|
editor = os.getenv("EDITOR") or "vim"
|
||||||
editor_cmd = terminal .. " -e " .. editor
|
editor_cmd = terminal .. " -e " .. editor
|
||||||
|
|
||||||
@ -786,6 +786,11 @@ clientkeys = gears.table.join(
|
|||||||
awful.key({ modkey, }, "f",
|
awful.key({ modkey, }, "f",
|
||||||
function (c)
|
function (c)
|
||||||
c.fullscreen = not c.fullscreen
|
c.fullscreen = not c.fullscreen
|
||||||
|
if c.fullscreen then
|
||||||
|
c.shape = nil
|
||||||
|
else
|
||||||
|
c.shape = beautiful.shape
|
||||||
|
end
|
||||||
c:raise()
|
c:raise()
|
||||||
end,
|
end,
|
||||||
{description = "toggle fullscreen", group = "client"}),
|
{description = "toggle fullscreen", group = "client"}),
|
||||||
@ -814,6 +819,11 @@ clientkeys = gears.table.join(
|
|||||||
awful.key({ modkey, }, "m",
|
awful.key({ modkey, }, "m",
|
||||||
function (c)
|
function (c)
|
||||||
c.maximized = not c.maximized
|
c.maximized = not c.maximized
|
||||||
|
if c.maximized then
|
||||||
|
c.shape = nil
|
||||||
|
else
|
||||||
|
c.shape = beautiful.shape
|
||||||
|
end
|
||||||
c:raise()
|
c:raise()
|
||||||
end ,
|
end ,
|
||||||
{description = "(un)maximize", group = "client"}),
|
{description = "(un)maximize", group = "client"}),
|
||||||
@ -966,7 +976,11 @@ client.connect_signal("manage", function (c)
|
|||||||
-- Set the windows at the slave,
|
-- Set the windows at the slave,
|
||||||
-- i.e. put it at the end of others instead of setting it master.
|
-- i.e. put it at the end of others instead of setting it master.
|
||||||
-- if not awesome.startup then awful.client.setslave(c) end
|
-- if not awesome.startup then awful.client.setslave(c) end
|
||||||
c.shape = beautiful.shape
|
if not (c.maximized or c.fullscreen) then
|
||||||
|
c.shape = beautiful.shape
|
||||||
|
else
|
||||||
|
c.shape = nil
|
||||||
|
end
|
||||||
if awesome.startup
|
if awesome.startup
|
||||||
and not c.size_hints.user_position
|
and not c.size_hints.user_position
|
||||||
and not c.size_hints.program_position then
|
and not c.size_hints.program_position then
|
||||||
|
@ -1,8 +1,10 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
XCURSOR_SIZE = 22
|
||||||
xinput --set-prop "SYNA7DB5:01 06CB:CD41 Touchpad" $(xinput list-props $(xinput list | grep 'Touchpad' | cut -f 2 | cut -d'=' -f 2) | grep "Disable While Typing Enabled (" | cut -d'(' -f 2 | cut -d')' -f 1) 0
|
xinput --set-prop "SYNA7DB5:01 06CB:CD41 Touchpad" $(xinput list-props $(xinput list | grep 'Touchpad' | cut -f 2 | cut -d'=' -f 2) | grep "Disable While Typing Enabled (" | cut -d'(' -f 2 | cut -d')' -f 1) 0
|
||||||
xinput --set-prop "SYNA7DB5:01 06CB:CD41 Touchpad" $(xinput list-props $(xinput list | grep 'Touchpad' | cut -f 2 | cut -d'=' -f 2) | grep "Tapping Enabled (" | cut -d'(' -f 2 | cut -d')' -f 1) 1
|
xinput --set-prop "SYNA7DB5:01 06CB:CD41 Touchpad" $(xinput list-props $(xinput list | grep 'Touchpad' | cut -f 2 | cut -d'=' -f 2) | grep "Tapping Enabled (" | cut -d'(' -f 2 | cut -d')' -f 1) 1
|
||||||
xinput --set-prop "SYNA7DB5:01 06CB:CD41 Touchpad" $(xinput list-props $(xinput list | grep 'Touchpad' | cut -f 2 | cut -d'=' -f 2) | grep "Natural Scrolling Enabled (" | cut -d'(' -f 2 | cut -d')' -f 1) 1
|
xinput --set-prop "SYNA7DB5:01 06CB:CD41 Touchpad" $(xinput list-props $(xinput list | grep 'Touchpad' | cut -f 2 | cut -d'=' -f 2) | grep "Natural Scrolling Enabled (" | cut -d'(' -f 2 | cut -d')' -f 1) 1
|
||||||
xinput --set-prop "SYNA7DB5:01 06CB:CD41 Touchpad" $(xinput list-props $(xinput list | grep 'Touchpad' | cut -f 2 | cut -d'=' -f 2) | grep "Middle Emulation Enabled (" | cut -d'(' -f 2 | cut -d')' -f 1) 1
|
xinput --set-prop "SYNA7DB5:01 06CB:CD41 Touchpad" $(xinput list-props $(xinput list | grep 'Touchpad' | cut -f 2 | cut -d'=' -f 2) | grep "Middle Emulation Enabled (" | cut -d'(' -f 2 | cut -d')' -f 1) 1
|
||||||
#python ~/user/projects/startup/presence.py &
|
python ~/data/projects/startup/presence.py &
|
||||||
picom --experimental-backends --backend glx &
|
#picom --experimental-backends --backend glx &
|
||||||
|
#xsetroot -cursor_name qogir-manjaro
|
||||||
cp ~/.gtkrc-2.0_default ~/.gtkrc-2.0
|
cp ~/.gtkrc-2.0_default ~/.gtkrc-2.0
|
||||||
|
Before Width: | Height: | Size: 2.6 MiB After Width: | Height: | Size: 2.6 MiB |
Before Width: | Height: | Size: 4.7 KiB After Width: | Height: | Size: 4.7 KiB |
Before Width: | Height: | Size: 1.6 MiB After Width: | Height: | Size: 1.6 MiB |
Before Width: | Height: | Size: 1.3 MiB After Width: | Height: | Size: 1.3 MiB |
Before Width: | Height: | Size: 2.2 MiB After Width: | Height: | Size: 2.2 MiB |
Before Width: | Height: | Size: 4.2 MiB After Width: | Height: | Size: 4.2 MiB |
Before Width: | Height: | Size: 3.0 MiB After Width: | Height: | Size: 3.0 MiB |
Before Width: | Height: | Size: 1.8 MiB After Width: | Height: | Size: 1.8 MiB |
Before Width: | Height: | Size: 4.1 MiB After Width: | Height: | Size: 4.1 MiB |
Before Width: | Height: | Size: 3.3 MiB After Width: | Height: | Size: 3.3 MiB |
Before Width: | Height: | Size: 193 B After Width: | Height: | Size: 193 B |
Before Width: | Height: | Size: 190 B After Width: | Height: | Size: 190 B |
Before Width: | Height: | Size: 197 B After Width: | Height: | Size: 197 B |
Before Width: | Height: | Size: 195 B After Width: | Height: | Size: 195 B |
Before Width: | Height: | Size: 196 B After Width: | Height: | Size: 196 B |
Before Width: | Height: | Size: 191 B After Width: | Height: | Size: 191 B |
Before Width: | Height: | Size: 193 B After Width: | Height: | Size: 193 B |
Before Width: | Height: | Size: 189 B After Width: | Height: | Size: 189 B |
Before Width: | Height: | Size: 199 B After Width: | Height: | Size: 199 B |
Before Width: | Height: | Size: 191 B After Width: | Height: | Size: 191 B |
Before Width: | Height: | Size: 271 B After Width: | Height: | Size: 271 B |
Before Width: | Height: | Size: 196 B After Width: | Height: | Size: 196 B |
Before Width: | Height: | Size: 189 B After Width: | Height: | Size: 189 B |
Before Width: | Height: | Size: 186 B After Width: | Height: | Size: 186 B |
Before Width: | Height: | Size: 188 B After Width: | Height: | Size: 188 B |
Before Width: | Height: | Size: 186 B After Width: | Height: | Size: 186 B |
Before Width: | Height: | Size: 347 KiB After Width: | Height: | Size: 347 KiB |
Before Width: | Height: | Size: 266 KiB After Width: | Height: | Size: 266 KiB |
Before Width: | Height: | Size: 354 KiB After Width: | Height: | Size: 354 KiB |
Before Width: | Height: | Size: 313 KiB After Width: | Height: | Size: 313 KiB |
Before Width: | Height: | Size: 440 B After Width: | Height: | Size: 440 B |
Before Width: | Height: | Size: 4.7 KiB After Width: | Height: | Size: 4.7 KiB |
Before Width: | Height: | Size: 168 B After Width: | Height: | Size: 168 B |
Before Width: | Height: | Size: 4.8 KiB After Width: | Height: | Size: 4.8 KiB |
Before Width: | Height: | Size: 171 B After Width: | Height: | Size: 171 B |
@ -13,7 +13,7 @@ local gears = require("gears")
|
|||||||
|
|
||||||
-- {{{ Main
|
-- {{{ Main
|
||||||
local theme = {}
|
local theme = {}
|
||||||
theme.dir = themes_path.."zenburn/"
|
theme.dir = themes_path.."blueish/"
|
||||||
theme.wallpaper = { theme.dir .. "dreams_1920x1080.png" , theme.dir .. "dreams.png" }
|
theme.wallpaper = { theme.dir .. "dreams_1920x1080.png" , theme.dir .. "dreams.png" }
|
||||||
-- }}}
|
-- }}}
|
||||||
|
|
||||||
@ -39,7 +39,7 @@ theme.hotkeys_description_font = "Indie Flower Bold 10"
|
|||||||
theme.hotkeys_border_width = 2
|
theme.hotkeys_border_width = 2
|
||||||
theme.hotkeys_border_color = "#6f6f6f55"
|
theme.hotkeys_border_color = "#6f6f6f55"
|
||||||
theme.hotkeys_shape = function(cr, width, height) gears.shape.rounded_rect(cr, width, height, 15) end
|
theme.hotkeys_shape = function(cr, width, height) gears.shape.rounded_rect(cr, width, height, 15) end
|
||||||
theme.menubar_bg_normal = "#111122CC"
|
theme.menubar_bg_normal = "#111122" --CC"
|
||||||
theme.menubar_tag_bg_normal = "#00000000"
|
theme.menubar_tag_bg_normal = "#00000000"
|
||||||
theme.menubar_fg_normal = "#FFBBBB"
|
theme.menubar_fg_normal = "#FFBBBB"
|
||||||
theme.menubar_bg_focus = "#333344FF"
|
theme.menubar_bg_focus = "#333344FF"
|
||||||
@ -53,10 +53,12 @@ theme.menu_fg_focus = "#BBBBFF"
|
|||||||
-- {{{ Borders
|
-- {{{ Borders
|
||||||
theme.shape = function(cr, width, height) gears.shape.rounded_rect(cr, width, height, 4) end
|
theme.shape = function(cr, width, height) gears.shape.rounded_rect(cr, width, height, 4) end
|
||||||
theme.useless_gap = 2
|
theme.useless_gap = 2
|
||||||
theme.border_width = 2
|
theme.border_width = 1
|
||||||
theme.border_width_focus = 2
|
theme.border_width_focus = 1
|
||||||
theme.border_normal = "#00000077" -- basically no border
|
--theme.border_normal = "#00000077" -- basically no border
|
||||||
theme.border_focus = "#00000000" -- slightly more lit up than the shadow
|
--theme.border_focus = "#00000000" -- slightly more lit up than the shadow
|
||||||
|
theme.border_normal = "#554477"
|
||||||
|
theme.border_focus = "#332244"
|
||||||
theme.border_marked = "#CC939355"
|
theme.border_marked = "#CC939355"
|
||||||
-- }}}
|
-- }}}
|
||||||
|
|
Before Width: | Height: | Size: 187 B After Width: | Height: | Size: 187 B |
Before Width: | Height: | Size: 116 B After Width: | Height: | Size: 116 B |
Before Width: | Height: | Size: 187 B After Width: | Height: | Size: 187 B |
Before Width: | Height: | Size: 112 B After Width: | Height: | Size: 112 B |
Before Width: | Height: | Size: 116 B After Width: | Height: | Size: 116 B |
Before Width: | Height: | Size: 90 B After Width: | Height: | Size: 90 B |
Before Width: | Height: | Size: 196 B After Width: | Height: | Size: 196 B |
Before Width: | Height: | Size: 110 B After Width: | Height: | Size: 110 B |
Before Width: | Height: | Size: 121 B After Width: | Height: | Size: 121 B |
Before Width: | Height: | Size: 112 B After Width: | Height: | Size: 112 B |
Before Width: | Height: | Size: 191 B After Width: | Height: | Size: 191 B |
Before Width: | Height: | Size: 106 B After Width: | Height: | Size: 106 B |
Before Width: | Height: | Size: 118 B After Width: | Height: | Size: 118 B |
Before Width: | Height: | Size: 107 B After Width: | Height: | Size: 107 B |
Before Width: | Height: | Size: 187 B After Width: | Height: | Size: 187 B |
Before Width: | Height: | Size: 103 B After Width: | Height: | Size: 103 B |
Before Width: | Height: | Size: 116 B After Width: | Height: | Size: 116 B |
Before Width: | Height: | Size: 86 B After Width: | Height: | Size: 86 B |