diff --git a/(sequoia)/alacritty/alacritty.toml b/(sequoia)/alacritty/alacritty.toml new file mode 100644 index 0000000..f7ed534 --- /dev/null +++ b/(sequoia)/alacritty/alacritty.toml @@ -0,0 +1,34 @@ +[font] +size = 10.5 + +[font.normal] +family = "ComicMono Nerd Font" +style = "Regular" + +[font.offset] +x = 0 +y = -1 + +[scrolling] +history = 10000 +multiplier = 3 + +[window] +decorations = "none" +dynamic_padding = true +dynamic_title = true +opacity = 0.7 +startup_mode = "Windowed" +title = "Alacritty" + +[window.class] +general = "Alacritty" +instance = "Alacritty" + +[window.dimensions] +columns = 66 +lines = 20 + +[window.padding] +x = 10 +y = 10 diff --git a/(sequoia)/awesome/README.md b/(sequoia)/awesome/README.md new file mode 100644 index 0000000..b3291df --- /dev/null +++ b/(sequoia)/awesome/README.md @@ -0,0 +1,11 @@ +# awesome config + +## Deps + +- picom +- [Fira Code](https://github.com/tonsky/FiraCode) +- polybar + +## Credits + +### Widgets/modules/etc I use diff --git a/(sequoia)/awesome/autostart.lua b/(sequoia)/awesome/autostart.lua new file mode 100644 index 0000000..99f10ac --- /dev/null +++ b/(sequoia)/awesome/autostart.lua @@ -0,0 +1,12 @@ +local awful = require("awful") + +-- awful.spawn("killall -9 caffeine"); awful.spawn.single_instance("caffeine-ng") +awful.spawn.single_instance("redshift -x") +awful.spawn.single_instance("fcitx5") +awful.spawn.single_instance("picom --config /home/nu/.config/picom/picom.conf") +-- awful.spawn.single_instance("perl /home/nu/.opt/papeswap/run.pl") +awful.spawn.single_instance("mkdir -p /tmp/ocr") +awful.spawn.single_instance("/home/nu/.opt/activitywatch/aw-qt") +awful.spawn.single_instance("/home/nu/.opt/whatpulse/whatpulse-linux-latest_amd64.AppImage") +awful.spawn.single_instance("redshift -O 5000") +awful.spawn.single_instance("feh --bg-fill /home/nu/.wp/DRAMAtical.Murder.full.1636462.jpg") \ No newline at end of file diff --git a/(sequoia)/awesome/rc.lua b/(sequoia)/awesome/rc.lua new file mode 100644 index 0000000..e0fb3eb --- /dev/null +++ b/(sequoia)/awesome/rc.lua @@ -0,0 +1,661 @@ +-- If LuaRocks is installed, make sure that packages installed through it are +-- found (e.g. lgi). If LuaRocks is not installed, do nothing. +pcall(require, "luarocks.loader") + +-- Standard awesome library +local gears = require("gears") +local awful = require("awful") +require("awful.autofocus") +-- Widget and layout library +local wibox = require("wibox") +-- Theme handling library +local beautiful = require("beautiful") +-- Notification library +local naughty = require("naughty") +local menubar = require("menubar") +local hotkeys_popup = require("awful.hotkeys_popup") +-- Enable hotkeys help widget for VIM and other apps +-- when client with a matching name is opened: +require("awful.hotkeys_popup.keys") +-- buh +local themedir = "/home/nu/.config/awesome/themes/" + +-- {{{ Error handling +-- Check if awesome encountered an error during startup and fell back to +-- another config (This code will only ever execute for the fallback config) +if awesome.startup_errors then + naughty.notify({ preset = naughty.config.presets.critical, + title = "Oops, there were errors during startup!", + text = awesome.startup_errors }) +end + +-- Handle runtime errors after startup +do + local in_error = false + awesome.connect_signal("debug::error", function (err) + -- Make sure we don't go into an endless error loop + if in_error then return end + in_error = true + + naughty.notify({ preset = naughty.config.presets.critical, + title = "Oops, an error happened!", + text = tostring(err) }) + in_error = false + end) +end +-- }}} + +-- set locale for clock +os.setlocale("ja_JP.UTF8", "time") + +-- {{{ Variable definitions +-- Themes define colours, icons, font and wallpapers. +beautiful.init(themedir .. "nu/wip/theme.lua") + +-- This is used later as the default terminal and editor to run. +terminal = "alacritty" +editor = os.getenv("EDITOR") or "vi" +editor_cmd = terminal .. " -e " .. editor + +-- Default modkey. +-- Usually, Mod4 is the key with a logo between Control and Alt. +-- If you do not like this or do not havey such a key, +-- I suggest you to remap Mod4 to another key using xmodmap or other tools. +-- However, you can use another modifier like Mod1, but it may interact with others. +modkey = "Mod4" + +-- Table of layouts to cover with awful.layout.inc, order matters. +awful.layout.layouts = { + awful.layout.suit.floating, + awful.layout.suit.tile, + awful.layout.suit.tile.left, + awful.layout.suit.tile.bottom, + awful.layout.suit.tile.top, + awful.layout.suit.fair, + awful.layout.suit.fair.horizontal, + awful.layout.suit.spiral, + awful.layout.suit.spiral.dwindle, + awful.layout.suit.max, + awful.layout.suit.max.fullscreen, + awful.layout.suit.magnifier, + awful.layout.suit.corner.nw, + -- awful.layout.suit.corner.ne, + -- awful.layout.suit.corner.sw, + -- awful.layout.suit.corner.se, +} +-- }}} + +-- {{{ Menu +-- Create a launcher widget and a main menu +myawesomemenu = { + { "hotkeys", function() hotkeys_popup.show_help(nil, awful.screen.focused()) end }, + { "manual", terminal .. " -e man awesome" }, + { "edit config", editor_cmd .. " " .. awesome.conffile }, + { "restart", awesome.restart }, + { "switch user", "dm-tool switch-to-greeter"}, + { "quit", function() awesome.quit() end }, +} + +mymainmenu = awful.menu({ items = { { "awesome", myawesomemenu, beautiful.awesome_icon }, + { "open terminal", terminal } + } + }) + +-- mylauncher = awful.widget.launcher({ image = beautiful.awesome_icon, +-- menu = mymainmenu }) + +-- Menubar configuration +menubar.utils.terminal = terminal -- Set the terminal for applications that require it +-- }}} + +-- Keyboard map indicator and switcher +-- mykeyboardlayout = awful.widget.keyboardlayout() + +-- {{{ Wibar +-- Create a textclock widget +-- formatting: https://www.lua.org/pil/22.1.html +mytextclock = wibox.widget.textclock(' %b%d日 (%a) %P %I:%M ') + +-- Create a wibox for each screen and add it +local taglist_buttons = gears.table.join( + awful.button({ }, 1, function(t) t:view_only() end), + awful.button({ modkey }, 1, function(t) + if client.focus then + client.focus:move_to_tag(t) + end + end), + awful.button({ }, 3, awful.tag.viewtoggle), + awful.button({ modkey }, 3, function(t) + if client.focus then + client.focus:toggle_tag(t) + end + end), + awful.button({ }, 4, function(t) awful.tag.viewnext(t.screen) end), + awful.button({ }, 5, function(t) awful.tag.viewprev(t.screen) end) + ) + +local tasklist_buttons = gears.table.join( + awful.button({ }, 1, function (c) + if c == client.focus then + c.minimized = true + else + c:emit_signal( + "request::activate", + "tasklist", + {raise = true} + ) + end + end), + awful.button({ }, 3, function() + awful.menu.client_list({ theme = { width = 250 } }) + end), + awful.button({ }, 4, function () + awful.client.focus.byidx(1) + end), + awful.button({ }, 5, function () + awful.client.focus.byidx(-1) + end)) + +local function set_wallpaper(s) + -- Wallpaper + if beautiful.wallpaper then + local wallpaper = beautiful.wallpaper + -- If wallpaper is a function, call it with the screen + if type(wallpaper) == "function" then + wallpaper = wallpaper(s) + end + gears.wallpaper.maximized(wallpaper, s, true) + end +end + +-- Re-set wallpaper when a screen's geometry changes (e.g. different resolution) +screen.connect_signal("property::geometry", set_wallpaper) + +awful.screen.connect_for_each_screen(function(s) + -- Wallpaper + set_wallpaper(s) + + -- Each screen has its own tag table. + awful.tag({ "main", "work", "etc" }, s, awful.layout.layouts[1]) + + -- Create a promptbox for each screen + s.mypromptbox = awful.widget.prompt() + -- Create an imagebox widget which will contain an icon indicating which layout we're using. + -- We need one layoutbox per screen. + s.mylayoutbox = awful.widget.layoutbox(s) + s.mylayoutbox:buttons(gears.table.join( + awful.button({ }, 1, function () awful.layout.inc( 1) end), + awful.button({ }, 3, function () awful.layout.inc(-1) end), + awful.button({ }, 4, function () awful.layout.inc( 1) end), + awful.button({ }, 5, function () awful.layout.inc(-1) end))) + -- Create a taglist widget + s.mytaglist = awful.widget.taglist { + screen = s, + filter = awful.widget.taglist.filter.all, + buttons = taglist_buttons + } + + -- Create a tasklist widget + s.mytasklist = awful.widget.tasklist { + screen = s, + filter = awful.widget.tasklist.filter.currenttags, + buttons = tasklist_buttons, + layout = { + spacing = 1, + spacing_widget = { + { + forced_width = 1, + shape = gears.shape.circle, + widget = wibox.widget.separator + } + }, + layout = wibox.layout.flex.horizontal + }, + widget_template = { + { + { + { + { + id = 'icon_role', + widget = wibox.widget.imagebox, + }, + margins = 1, + widget = wibox.container.margin, + }, + { + { + id = 'text_role', + widget = wibox.widget.textbox, + }, + margins = 5, + widget = wibox.container.margin, + }, + layout = wibox.layout.fixed.horizontal, + }, + left = 5, + right = 5, + widget = wibox.container.margin + }, + id = 'background_role', + widget = wibox.container.background, + }, + } + + + -- -- Create the wibox + s.mywibox = awful.wibar({ position = "bottom", screen = s }) + + -- -- Add widgets to the wibox + s.mywibox:setup { + layout = wibox.layout.align.horizontal, + + { -- Left widgets + layout = wibox.layout.fixed.horizontal, + s.mytaglist, + s.mypromptbox, + }, + s.mytasklist, -- Middle widget + { -- Right widgets + layout = wibox.layout.fixed.horizontal, + --mykeyboardlayout, + wibox.widget.systray(), + mytextclock, + s.mylayoutbox, + }, + } +end) +-- }}} + +-- {{{ Mouse bindings +root.buttons(gears.table.join( + awful.button({ }, 3, function () mymainmenu:toggle() end), + awful.button({ }, 4, awful.tag.viewnext), + awful.button({ }, 5, awful.tag.viewprev) +)) +-- }}} + +-- {{{ Key bindings +globalkeys = gears.table.join( + awful.key({ modkey, }, "s", hotkeys_popup.show_help, + {description="show help", group="awesome"}), + awful.key({ modkey, }, "Left", awful.tag.viewprev, + {description = "view previous", group = "tag"}), + awful.key({ modkey, }, "Right", awful.tag.viewnext, + {description = "view next", group = "tag"}), + awful.key({ modkey, }, "Escape", awful.tag.history.restore, + {description = "go back", group = "tag"}), + + awful.key({ modkey, }, "j", + function () + awful.client.focus.byidx( 1) + end, + {description = "focus next by index", group = "client"} + ), + awful.key({ modkey, }, "k", + function () + awful.client.focus.byidx(-1) + end, + {description = "focus previous by index", group = "client"} + ), + awful.key({ modkey, }, "w", function () mymainmenu:show() end, + {description = "show main menu", group = "awesome"}), + + -- Layout manipulation + awful.key({ modkey, "Shift" }, "j", function () awful.client.swap.byidx( 1) end, + {description = "swap with next client by index", group = "client"}), + awful.key({ modkey, "Shift" }, "k", function () awful.client.swap.byidx( -1) end, + {description = "swap with previous client by index", group = "client"}), + awful.key({ modkey, "Control" }, "j", function () awful.screen.focus_relative( 1) end, + {description = "focus the next screen", group = "screen"}), + awful.key({ modkey, "Control" }, "k", function () awful.screen.focus_relative(-1) end, + {description = "focus the previous screen", group = "screen"}), + awful.key({ modkey, }, "u", awful.client.urgent.jumpto, + {description = "jump to urgent client", group = "client"}), + awful.key({ modkey, }, "Tab", + function () + awful.client.focus.history.previous() + if client.focus then + client.focus:raise() + end + end, + {description = "go back", group = "client"}), + + -- Standard program + awful.key({ modkey, }, "Return", function () awful.spawn(terminal) end, + {description = "open a terminal", group = "launcher"}), + awful.key({ modkey, "Control" }, "r", awesome.restart, + {description = "reload awesome", group = "awesome"}), + awful.key({ modkey, "Shift" }, "q", awesome.quit, + {description = "quit awesome", group = "awesome"}), + + awful.key({ modkey, }, "l", function () awful.tag.incmwfact( 0.05) end, + {description = "increase master width factor", group = "layout"}), + awful.key({ modkey, }, "h", function () awful.tag.incmwfact(-0.05) end, + {description = "decrease master width factor", group = "layout"}), + awful.key({ modkey, "Shift" }, "h", function () awful.tag.incnmaster( 1, nil, true) end, + {description = "increase the number of master clients", group = "layout"}), + awful.key({ modkey, "Shift" }, "l", function () awful.tag.incnmaster(-1, nil, true) end, + {description = "decrease the number of master clients", group = "layout"}), + awful.key({ modkey, "Control" }, "h", function () awful.tag.incncol( 1, nil, true) end, + {description = "increase the number of columns", group = "layout"}), + awful.key({ modkey, "Control" }, "l", function () awful.tag.incncol(-1, nil, true) end, + {description = "decrease the number of columns", group = "layout"}), + awful.key({ modkey, }, "space", function () awful.layout.inc( 1) end, + {description = "select next", group = "layout"}), + awful.key({ modkey, "Shift" }, "space", function () awful.layout.inc(-1) end, + {description = "select previous", group = "layout"}), + + awful.key({ modkey, "Control" }, "n", + function () + local c = awful.client.restore() + -- Focus restored client + if c then + c:emit_signal( + "request::activate", "key.unminimize", {raise = true} + ) + end + end, + {description = "restore minimized", group = "client"}), + + -- Prompt + awful.key({ modkey }, "r", function () awful.screen.focused().mypromptbox:run() end, + {description = "run prompt", group = "launcher"}), + + awful.key({ modkey }, "x", + function () + awful.prompt.run { + prompt = "Run Lua code: ", + textbox = awful.screen.focused().mypromptbox.widget, + exe_callback = awful.util.eval, + history_path = awful.util.get_cache_dir() .. "/history_eval" + } + end, + {description = "lua execute prompt", group = "awesome"}), + -- Menubar + awful.key({ modkey }, "p", + function () + awful.util.spawn("rofi -show drun") + end, + {description = "show the menubar", group = "launcher"}), + + -- ames + awful.key({ }, "#191", -- F13 + function () + awful.util.spawn("bash /home/nu/.opt/ames.sh -r") + end, + {description = "start/stop recording", group = "ames"}), + + awful.key({ }, "#192", -- F14 + function () + awful.util.spawn("bash /home/nu/.opt/ames.sh -c") + end, + {description = "clipboard contents to sentence field", group = "ames"}), + + awful.key({ }, "#194", -- F16 + function () + awful.util.spawn("bash /home/nu/.opt/ames.sh -s") + end, + {description = "interactive screenshot selection", group = "ames"}), + + -- awful.key({ }, "#195", -- F17 + -- function () + -- awful.spawn(terminal.."transformers_ocr recognize") + -- end, + -- {description = "recognize text", group = "transformers_ocr"}), + + -- awful.key({ }, "#196", -- F18 + -- function () + -- awful.spawn(terminal.."transformers_ocr hold") + -- end, + -- {description = "hold text", group = "transformers_ocr"}), + + awful.key({ }, "#195", -- F17 + function () + awful.util.spawn("perl /home/nu/.opt/ocr.pl") + end, + {description = "recognize text", group = "OCR"}), + + awful.key({ }, "#193", -- F15 + function () + awful.util.spawn("bash /home/nu/.opt/ames.sh -w") + end, + {description = "capture current window", group = "ames"}) +) + +clientkeys = gears.table.join( + awful.key({ modkey, }, "f", + function (c) + c.fullscreen = not c.fullscreen + c:raise() + end, + {description = "toggle fullscreen", group = "client"}), + awful.key({ modkey, "Shift" }, "c", function (c) c:kill() end, + {description = "close", group = "client"}), + awful.key({ modkey, "Control" }, "space", awful.client.floating.toggle , + {description = "toggle floating", group = "client"}), + awful.key({ modkey, "Control" }, "Return", function (c) c:swap(awful.client.getmaster()) end, + {description = "move to master", group = "client"}), + awful.key({ modkey, }, "o", function (c) c:move_to_screen() end, + {description = "move to screen", group = "client"}), + awful.key({ modkey, }, "t", function (c) c.ontop = not c.ontop end, + {description = "toggle keep on top", group = "client"}), + awful.key({ modkey, }, "n", + function (c) + -- The client currently has the input focus, so it cannot be + -- minimized, since minimized clients can't have the focus. + c.minimized = true + end , + {description = "minimize", group = "client"}), + awful.key({ modkey, }, "m", + function (c) + c.maximized = not c.maximized + c:raise() + end , + {description = "(un)maximize", group = "client"}), + awful.key({ modkey, "Control" }, "m", + function (c) + c.maximized_vertical = not c.maximized_vertical + c:raise() + end , + {description = "(un)maximize vertically", group = "client"}), + awful.key({ modkey, "Shift" }, "m", + function (c) + c.maximized_horizontal = not c.maximized_horizontal + c:raise() + end , + {description = "(un)maximize horizontally", group = "client"}) +) + +-- Bind all key numbers to tags. +-- Be careful: we use keycodes to make it work on any keyboard layout. +-- This should map on the top row of your keyboard, usually 1 to 9. +for i = 1, 9 do + globalkeys = gears.table.join(globalkeys, + -- View tag only. + awful.key({ modkey }, "#" .. i + 9, + function () + local screen = awful.screen.focused() + local tag = screen.tags[i] + if tag then + tag:view_only() + end + end, + {description = "view tag #"..i, group = "tag"}), + -- Toggle tag display. + awful.key({ modkey, "Control" }, "#" .. i + 9, + function () + local screen = awful.screen.focused() + local tag = screen.tags[i] + if tag then + awful.tag.viewtoggle(tag) + end + end, + {description = "toggle tag #" .. i, group = "tag"}), + -- Move client to tag. + awful.key({ modkey, "Shift" }, "#" .. i + 9, + function () + if client.focus then + local tag = client.focus.screen.tags[i] + if tag then + client.focus:move_to_tag(tag) + end + end + end, + {description = "move focused client to tag #"..i, group = "tag"}), + -- Toggle tag on focused client. + awful.key({ modkey, "Control", "Shift" }, "#" .. i + 9, + function () + if client.focus then + local tag = client.focus.screen.tags[i] + if tag then + client.focus:toggle_tag(tag) + end + end + end, + {description = "toggle focused client on tag #" .. i, group = "tag"}) + ) +end + +clientbuttons = gears.table.join( + awful.button({ }, 1, function (c) + c:emit_signal("request::activate", "mouse_click", {raise = true}) + end), + awful.button({ modkey }, 1, function (c) + c:emit_signal("request::activate", "mouse_click", {raise = true}) + awful.mouse.client.move(c) + end), + awful.button({ modkey }, 3, function (c) + c:emit_signal("request::activate", "mouse_click", {raise = true}) + awful.mouse.client.resize(c) + end) +) + +-- Set keys +root.keys(globalkeys) +-- }}} + +-- {{{ Rules +-- Rules to apply to new clients (through the "manage" signal). +awful.rules.rules = { + -- All clients will match this rule. + { rule = { }, + properties = { border_width = 0, --beautiful.border_width, + border_color = beautiful.border_normal, + focus = awful.client.focus.filter, + raise = true, + keys = clientkeys, + buttons = clientbuttons, + screen = awful.screen.preferred, + placement = awful.placement.no_overlap+awful.placement.no_offscreen + } + }, + + -- Floating clients. + { rule_any = { + instance = { + "DTA", -- Firefox addon DownThemAll. + "copyq", -- Includes session name in class. + "pinentry", + }, + class = { + "Arandr", + "Blueman-manager", + "Gpick", + "Kruler", + "MessageWin", -- kalarm. + "Sxiv", + "Tor Browser", -- Needs a fixed window size to avoid fingerprinting by screen size. + "Wpa_gui", + "veromix", + "xtightvncviewer", + "knotes" }, + + -- Note that the name property shown in xprop might be set slightly after creation of the client + -- and the name shown there might not match defined rules here. + name = { + "Event Tester", -- xev. + "Picture-in-picture", -- Chrome/Electron picture-in-picture + }, + role = { + "AlarmWindow", -- Thunderbird's calendar. + "ConfigManager", -- Thunderbird's about:config. + "pop-up", -- e.g. Google Chrome's (detached) Developer Tools. + } + }, properties = { floating = true }}, + + -- Add titlebars to normal clients and dialogs + -- { rule_any = {type = { "normal", "dialog" } + -- }, properties = { titlebars_enabled = true } + -- }, + + -- Set Firefox to always map on the tag named "2" on screen 1. + -- { rule = { class = "Firefox" }, + -- properties = { screen = 1, tag = "2" } }, +} +-- }}} + +-- {{{ Signals +-- Signal function to execute when a new client appears. +client.connect_signal("manage", function (c) + -- Set the windows at the slave, + -- 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 awesome.startup + and not c.size_hints.user_position + and not c.size_hints.program_position then + -- Prevent clients from being unreachable after screen count changes. + awful.placement.no_offscreen(c) + end +end) + +-- Add a titlebar if titlebars_enabled is set to true in the rules. +client.connect_signal("request::titlebars", function(c) + -- buttons for the titlebar + local buttons = gears.table.join( + awful.button({ }, 1, function() + c:emit_signal("request::activate", "titlebar", {raise = true}) + awful.mouse.client.move(c) + end), + awful.button({ }, 3, function() + c:emit_signal("request::activate", "titlebar", {raise = true}) + awful.mouse.client.resize(c) + end) + ) + + awful.titlebar(c) : setup { + { -- Left + awful.titlebar.widget.iconwidget(c), + buttons = buttons, + layout = wibox.layout.fixed.horizontal + }, + { -- Middle + { -- Title + align = "center", + widget = awful.titlebar.widget.titlewidget(c) + }, + buttons = buttons, + layout = wibox.layout.flex.horizontal + }, + { -- Right + awful.titlebar.widget.floatingbutton (c), + awful.titlebar.widget.maximizedbutton(c), + awful.titlebar.widget.stickybutton (c), + awful.titlebar.widget.ontopbutton (c), + awful.titlebar.widget.closebutton (c), + layout = wibox.layout.fixed.horizontal() + }, + layout = wibox.layout.align.horizontal + } +end) + +-- Enable sloppy focus, so that focus follows mouse. +client.connect_signal("mouse::enter", function(c) + c:emit_signal("request::activate", "mouse_enter", {raise = false}) +end) + +client.connect_signal("focus", function(c) c.border_color = beautiful.border_focus end) +client.connect_signal("unfocus", function(c) c.border_color = beautiful.border_normal end) +-- }}} + +require("autostart") diff --git a/(sequoia)/awesome/themes/awesomewm/default/README b/(sequoia)/awesome/themes/awesomewm/default/README new file mode 100644 index 0000000..1ddb349 --- /dev/null +++ b/(sequoia)/awesome/themes/awesomewm/default/README @@ -0,0 +1,3 @@ +Background images: + Mikael Eriksson + Licensed under CC-BY-SA-3.0 diff --git a/(sequoia)/awesome/themes/awesomewm/default/background.png b/(sequoia)/awesome/themes/awesomewm/default/background.png new file mode 100644 index 0000000..8f52b6b Binary files /dev/null and b/(sequoia)/awesome/themes/awesomewm/default/background.png differ diff --git a/(sequoia)/awesome/themes/awesomewm/default/background_white.png b/(sequoia)/awesome/themes/awesomewm/default/background_white.png new file mode 100644 index 0000000..bb0c5d0 Binary files /dev/null and b/(sequoia)/awesome/themes/awesomewm/default/background_white.png differ diff --git a/awesome/themes/neo/layouts/cornerne.png b/(sequoia)/awesome/themes/awesomewm/default/layouts/cornerne.png similarity index 100% rename from awesome/themes/neo/layouts/cornerne.png rename to (sequoia)/awesome/themes/awesomewm/default/layouts/cornerne.png diff --git a/awesome/themes/neo/layouts/cornernew.png b/(sequoia)/awesome/themes/awesomewm/default/layouts/cornernew.png similarity index 100% rename from awesome/themes/neo/layouts/cornernew.png rename to (sequoia)/awesome/themes/awesomewm/default/layouts/cornernew.png diff --git a/awesome/themes/neo/layouts/cornernw.png b/(sequoia)/awesome/themes/awesomewm/default/layouts/cornernw.png similarity index 100% rename from awesome/themes/neo/layouts/cornernw.png rename to (sequoia)/awesome/themes/awesomewm/default/layouts/cornernw.png diff --git a/awesome/themes/neo/layouts/cornernww.png b/(sequoia)/awesome/themes/awesomewm/default/layouts/cornernww.png similarity index 100% rename from awesome/themes/neo/layouts/cornernww.png rename to (sequoia)/awesome/themes/awesomewm/default/layouts/cornernww.png diff --git a/awesome/themes/neo/layouts/cornerse.png b/(sequoia)/awesome/themes/awesomewm/default/layouts/cornerse.png similarity index 100% rename from awesome/themes/neo/layouts/cornerse.png rename to (sequoia)/awesome/themes/awesomewm/default/layouts/cornerse.png diff --git a/awesome/themes/neo/layouts/cornersew.png b/(sequoia)/awesome/themes/awesomewm/default/layouts/cornersew.png similarity index 100% rename from awesome/themes/neo/layouts/cornersew.png rename to (sequoia)/awesome/themes/awesomewm/default/layouts/cornersew.png diff --git a/awesome/themes/neo/layouts/cornersw.png b/(sequoia)/awesome/themes/awesomewm/default/layouts/cornersw.png similarity index 100% rename from awesome/themes/neo/layouts/cornersw.png rename to (sequoia)/awesome/themes/awesomewm/default/layouts/cornersw.png diff --git a/awesome/themes/neo/layouts/cornersww.png b/(sequoia)/awesome/themes/awesomewm/default/layouts/cornersww.png similarity index 100% rename from awesome/themes/neo/layouts/cornersww.png rename to (sequoia)/awesome/themes/awesomewm/default/layouts/cornersww.png diff --git a/awesome/themes/neo/layouts/dwindle.png b/(sequoia)/awesome/themes/awesomewm/default/layouts/dwindle.png similarity index 100% rename from awesome/themes/neo/layouts/dwindle.png rename to (sequoia)/awesome/themes/awesomewm/default/layouts/dwindle.png diff --git a/awesome/themes/neo/layouts/dwindlew.png b/(sequoia)/awesome/themes/awesomewm/default/layouts/dwindlew.png similarity index 100% rename from awesome/themes/neo/layouts/dwindlew.png rename to (sequoia)/awesome/themes/awesomewm/default/layouts/dwindlew.png diff --git a/awesome/themes/neo/layouts/fairh.png b/(sequoia)/awesome/themes/awesomewm/default/layouts/fairh.png similarity index 100% rename from awesome/themes/neo/layouts/fairh.png rename to (sequoia)/awesome/themes/awesomewm/default/layouts/fairh.png diff --git a/awesome/themes/neo/layouts/fairhw.png b/(sequoia)/awesome/themes/awesomewm/default/layouts/fairhw.png similarity index 100% rename from awesome/themes/neo/layouts/fairhw.png rename to (sequoia)/awesome/themes/awesomewm/default/layouts/fairhw.png diff --git a/awesome/themes/neo/layouts/fairv.png b/(sequoia)/awesome/themes/awesomewm/default/layouts/fairv.png similarity index 100% rename from awesome/themes/neo/layouts/fairv.png rename to (sequoia)/awesome/themes/awesomewm/default/layouts/fairv.png diff --git a/awesome/themes/neo/layouts/fairvw.png b/(sequoia)/awesome/themes/awesomewm/default/layouts/fairvw.png similarity index 100% rename from awesome/themes/neo/layouts/fairvw.png rename to (sequoia)/awesome/themes/awesomewm/default/layouts/fairvw.png diff --git a/awesome/themes/neo/layouts/floating.png b/(sequoia)/awesome/themes/awesomewm/default/layouts/floating.png similarity index 100% rename from awesome/themes/neo/layouts/floating.png rename to (sequoia)/awesome/themes/awesomewm/default/layouts/floating.png diff --git a/awesome/themes/neo/layouts/floatingw.png b/(sequoia)/awesome/themes/awesomewm/default/layouts/floatingw.png similarity index 100% rename from awesome/themes/neo/layouts/floatingw.png rename to (sequoia)/awesome/themes/awesomewm/default/layouts/floatingw.png diff --git a/awesome/themes/neo/layouts/fullscreen.png b/(sequoia)/awesome/themes/awesomewm/default/layouts/fullscreen.png similarity index 100% rename from awesome/themes/neo/layouts/fullscreen.png rename to (sequoia)/awesome/themes/awesomewm/default/layouts/fullscreen.png diff --git a/awesome/themes/neo/layouts/fullscreenw.png b/(sequoia)/awesome/themes/awesomewm/default/layouts/fullscreenw.png similarity index 100% rename from awesome/themes/neo/layouts/fullscreenw.png rename to (sequoia)/awesome/themes/awesomewm/default/layouts/fullscreenw.png diff --git a/awesome/themes/neo/layouts/magnifier.png b/(sequoia)/awesome/themes/awesomewm/default/layouts/magnifier.png similarity index 100% rename from awesome/themes/neo/layouts/magnifier.png rename to (sequoia)/awesome/themes/awesomewm/default/layouts/magnifier.png diff --git a/awesome/themes/neo/layouts/magnifierw.png b/(sequoia)/awesome/themes/awesomewm/default/layouts/magnifierw.png similarity index 100% rename from awesome/themes/neo/layouts/magnifierw.png rename to (sequoia)/awesome/themes/awesomewm/default/layouts/magnifierw.png diff --git a/awesome/themes/neo/layouts/max.png b/(sequoia)/awesome/themes/awesomewm/default/layouts/max.png similarity index 100% rename from awesome/themes/neo/layouts/max.png rename to (sequoia)/awesome/themes/awesomewm/default/layouts/max.png diff --git a/awesome/themes/neo/layouts/maxw.png b/(sequoia)/awesome/themes/awesomewm/default/layouts/maxw.png similarity index 100% rename from awesome/themes/neo/layouts/maxw.png rename to (sequoia)/awesome/themes/awesomewm/default/layouts/maxw.png diff --git a/awesome/themes/neo/layouts/spiral.png b/(sequoia)/awesome/themes/awesomewm/default/layouts/spiral.png similarity index 100% rename from awesome/themes/neo/layouts/spiral.png rename to (sequoia)/awesome/themes/awesomewm/default/layouts/spiral.png diff --git a/awesome/themes/neo/layouts/spiralw.png b/(sequoia)/awesome/themes/awesomewm/default/layouts/spiralw.png similarity index 100% rename from awesome/themes/neo/layouts/spiralw.png rename to (sequoia)/awesome/themes/awesomewm/default/layouts/spiralw.png diff --git a/awesome/themes/neo/layouts/tile.png b/(sequoia)/awesome/themes/awesomewm/default/layouts/tile.png similarity index 100% rename from awesome/themes/neo/layouts/tile.png rename to (sequoia)/awesome/themes/awesomewm/default/layouts/tile.png diff --git a/awesome/themes/neo/layouts/tilebottom.png b/(sequoia)/awesome/themes/awesomewm/default/layouts/tilebottom.png similarity index 100% rename from awesome/themes/neo/layouts/tilebottom.png rename to (sequoia)/awesome/themes/awesomewm/default/layouts/tilebottom.png diff --git a/awesome/themes/neo/layouts/tilebottomw.png b/(sequoia)/awesome/themes/awesomewm/default/layouts/tilebottomw.png similarity index 100% rename from awesome/themes/neo/layouts/tilebottomw.png rename to (sequoia)/awesome/themes/awesomewm/default/layouts/tilebottomw.png diff --git a/awesome/themes/neo/layouts/tileleft.png b/(sequoia)/awesome/themes/awesomewm/default/layouts/tileleft.png similarity index 100% rename from awesome/themes/neo/layouts/tileleft.png rename to (sequoia)/awesome/themes/awesomewm/default/layouts/tileleft.png diff --git a/awesome/themes/neo/layouts/tileleftw.png b/(sequoia)/awesome/themes/awesomewm/default/layouts/tileleftw.png similarity index 100% rename from awesome/themes/neo/layouts/tileleftw.png rename to (sequoia)/awesome/themes/awesomewm/default/layouts/tileleftw.png diff --git a/awesome/themes/neo/layouts/tiletop.png b/(sequoia)/awesome/themes/awesomewm/default/layouts/tiletop.png similarity index 100% rename from awesome/themes/neo/layouts/tiletop.png rename to (sequoia)/awesome/themes/awesomewm/default/layouts/tiletop.png diff --git a/awesome/themes/neo/layouts/tiletopw.png b/(sequoia)/awesome/themes/awesomewm/default/layouts/tiletopw.png similarity index 100% rename from awesome/themes/neo/layouts/tiletopw.png rename to (sequoia)/awesome/themes/awesomewm/default/layouts/tiletopw.png diff --git a/awesome/themes/neo/layouts/tilew.png b/(sequoia)/awesome/themes/awesomewm/default/layouts/tilew.png similarity index 100% rename from awesome/themes/neo/layouts/tilew.png rename to (sequoia)/awesome/themes/awesomewm/default/layouts/tilew.png diff --git a/awesome/themes/neo/submenu.png b/(sequoia)/awesome/themes/awesomewm/default/submenu.png similarity index 100% rename from awesome/themes/neo/submenu.png rename to (sequoia)/awesome/themes/awesomewm/default/submenu.png diff --git a/awesome/themes/neo/taglist/squarefw.png b/(sequoia)/awesome/themes/awesomewm/default/taglist/squarefw.png similarity index 100% rename from awesome/themes/neo/taglist/squarefw.png rename to (sequoia)/awesome/themes/awesomewm/default/taglist/squarefw.png diff --git a/awesome/themes/neo/taglist/squarew.png b/(sequoia)/awesome/themes/awesomewm/default/taglist/squarew.png similarity index 100% rename from awesome/themes/neo/taglist/squarew.png rename to (sequoia)/awesome/themes/awesomewm/default/taglist/squarew.png diff --git a/awesome/themes/spacestation/theme.lua b/(sequoia)/awesome/themes/awesomewm/default/theme.lua similarity index 84% rename from awesome/themes/spacestation/theme.lua rename to (sequoia)/awesome/themes/awesomewm/default/theme.lua index 860bff0..b0be480 100644 --- a/awesome/themes/spacestation/theme.lua +++ b/(sequoia)/awesome/themes/awesomewm/default/theme.lua @@ -1,6 +1,6 @@ ------------------------------- ---- spacestation - ngoomie --- ------------------------------- +--------------------------- +-- Default awesome theme -- +--------------------------- local theme_assets = require("beautiful.theme_assets") local xresources = require("beautiful.xresources") @@ -11,35 +11,24 @@ local themes_path = gfs.get_themes_dir() local theme = {} -theme.font = "Fira Code 9" +theme.font = "sans 8" -theme.bg_normal = "#ffffff4f" -theme.bg_focus = "#e1b661" -theme.bg_urgent = "#0f2356" -theme.bg_minimize = "#ffffff00" -theme.bg_systray = "#ffffff00" +theme.bg_normal = "#222222" +theme.bg_focus = "#535d6c" +theme.bg_urgent = "#ff0000" +theme.bg_minimize = "#444444" +theme.bg_systray = theme.bg_normal -theme.fg_normal = "#0f2356" -theme.fg_focus = "#0f2356" -theme.fg_urgent = "#e1b661" -theme.fg_minimize = "#0f235680" +theme.fg_normal = "#aaaaaa" +theme.fg_focus = "#ffffff" +theme.fg_urgent = "#ffffff" +theme.fg_minimize = "#ffffff" -theme.border_width = 0 -theme.border_normal = "#f0eef1" -theme.border_focus = "#e1b661" -theme.border_marked = "#ff8e9d" - -theme.taglist_bg_focus = "#e1b661" - -theme.notification_bg = "#ffffff4f" -theme.notification_fg = "#0f2356" -theme.notification_border_color = "#0f2356" - -theme.tooltip_fg_color = "#0f2356" -theme.tooltip_bg_color = "#ffffff4f" -theme.tooltip_border_color = "#0f2356" - -theme.prompt_bg = "#ffffff4f" +theme.useless_gap = dpi(0) +theme.border_width = dpi(1) +theme.border_normal = "#000000" +theme.border_focus = "#535d6c" +theme.border_marked = "#91231c" -- There are other variable sets -- overriding the default one when @@ -75,9 +64,6 @@ theme.taglist_squares_unsel = theme_assets.taglist_squares_unsel( theme.menu_submenu_icon = themes_path.."default/submenu.png" theme.menu_height = dpi(15) theme.menu_width = dpi(100) -theme.menu_bg_normal = "#ffffff4f" -theme.menu_bg_focus = "#e1b661" -theme.menu_border_color = "#233871" -- You can add as many variables as -- you wish and access them by using @@ -111,6 +97,8 @@ theme.titlebar_maximized_button_focus_inactive = themes_path.."default/titlebar theme.titlebar_maximized_button_normal_active = themes_path.."default/titlebar/maximized_normal_active.png" theme.titlebar_maximized_button_focus_active = themes_path.."default/titlebar/maximized_focus_active.png" +theme.wallpaper = themes_path.."default/background.png" + -- You can use your own layout icons like this: theme.layout_fairh = themes_path.."default/layouts/fairhw.png" theme.layout_fairv = themes_path.."default/layouts/fairvw.png" diff --git a/awesome/themes/neo/titlebar/close_focus.png b/(sequoia)/awesome/themes/awesomewm/default/titlebar/close_focus.png similarity index 100% rename from awesome/themes/neo/titlebar/close_focus.png rename to (sequoia)/awesome/themes/awesomewm/default/titlebar/close_focus.png diff --git a/awesome/themes/neo/titlebar/close_normal.png b/(sequoia)/awesome/themes/awesomewm/default/titlebar/close_normal.png similarity index 100% rename from awesome/themes/neo/titlebar/close_normal.png rename to (sequoia)/awesome/themes/awesomewm/default/titlebar/close_normal.png diff --git a/awesome/themes/neo/titlebar/floating_focus_active.png b/(sequoia)/awesome/themes/awesomewm/default/titlebar/floating_focus_active.png similarity index 100% rename from awesome/themes/neo/titlebar/floating_focus_active.png rename to (sequoia)/awesome/themes/awesomewm/default/titlebar/floating_focus_active.png diff --git a/awesome/themes/neo/titlebar/floating_focus_inactive.png b/(sequoia)/awesome/themes/awesomewm/default/titlebar/floating_focus_inactive.png similarity index 100% rename from awesome/themes/neo/titlebar/floating_focus_inactive.png rename to (sequoia)/awesome/themes/awesomewm/default/titlebar/floating_focus_inactive.png diff --git a/awesome/themes/neo/titlebar/floating_normal_active.png b/(sequoia)/awesome/themes/awesomewm/default/titlebar/floating_normal_active.png similarity index 100% rename from awesome/themes/neo/titlebar/floating_normal_active.png rename to (sequoia)/awesome/themes/awesomewm/default/titlebar/floating_normal_active.png diff --git a/awesome/themes/neo/titlebar/floating_normal_inactive.png b/(sequoia)/awesome/themes/awesomewm/default/titlebar/floating_normal_inactive.png similarity index 100% rename from awesome/themes/neo/titlebar/floating_normal_inactive.png rename to (sequoia)/awesome/themes/awesomewm/default/titlebar/floating_normal_inactive.png diff --git a/awesome/themes/neo/titlebar/maximized_focus_active.png b/(sequoia)/awesome/themes/awesomewm/default/titlebar/maximized_focus_active.png similarity index 100% rename from awesome/themes/neo/titlebar/maximized_focus_active.png rename to (sequoia)/awesome/themes/awesomewm/default/titlebar/maximized_focus_active.png diff --git a/awesome/themes/neo/titlebar/maximized_focus_inactive.png b/(sequoia)/awesome/themes/awesomewm/default/titlebar/maximized_focus_inactive.png similarity index 100% rename from awesome/themes/neo/titlebar/maximized_focus_inactive.png rename to (sequoia)/awesome/themes/awesomewm/default/titlebar/maximized_focus_inactive.png diff --git a/awesome/themes/neo/titlebar/maximized_normal_active.png b/(sequoia)/awesome/themes/awesomewm/default/titlebar/maximized_normal_active.png similarity index 100% rename from awesome/themes/neo/titlebar/maximized_normal_active.png rename to (sequoia)/awesome/themes/awesomewm/default/titlebar/maximized_normal_active.png diff --git a/awesome/themes/neo/titlebar/maximized_normal_inactive.png b/(sequoia)/awesome/themes/awesomewm/default/titlebar/maximized_normal_inactive.png similarity index 100% rename from awesome/themes/neo/titlebar/maximized_normal_inactive.png rename to (sequoia)/awesome/themes/awesomewm/default/titlebar/maximized_normal_inactive.png diff --git a/awesome/themes/neo/titlebar/minimize_focus.png b/(sequoia)/awesome/themes/awesomewm/default/titlebar/minimize_focus.png similarity index 100% rename from awesome/themes/neo/titlebar/minimize_focus.png rename to (sequoia)/awesome/themes/awesomewm/default/titlebar/minimize_focus.png diff --git a/awesome/themes/neo/titlebar/minimize_normal.png b/(sequoia)/awesome/themes/awesomewm/default/titlebar/minimize_normal.png similarity index 100% rename from awesome/themes/neo/titlebar/minimize_normal.png rename to (sequoia)/awesome/themes/awesomewm/default/titlebar/minimize_normal.png diff --git a/awesome/themes/neo/titlebar/ontop_focus_active.png b/(sequoia)/awesome/themes/awesomewm/default/titlebar/ontop_focus_active.png similarity index 100% rename from awesome/themes/neo/titlebar/ontop_focus_active.png rename to (sequoia)/awesome/themes/awesomewm/default/titlebar/ontop_focus_active.png diff --git a/awesome/themes/neo/titlebar/ontop_focus_inactive.png b/(sequoia)/awesome/themes/awesomewm/default/titlebar/ontop_focus_inactive.png similarity index 100% rename from awesome/themes/neo/titlebar/ontop_focus_inactive.png rename to (sequoia)/awesome/themes/awesomewm/default/titlebar/ontop_focus_inactive.png diff --git a/awesome/themes/neo/titlebar/ontop_normal_active.png b/(sequoia)/awesome/themes/awesomewm/default/titlebar/ontop_normal_active.png similarity index 100% rename from awesome/themes/neo/titlebar/ontop_normal_active.png rename to (sequoia)/awesome/themes/awesomewm/default/titlebar/ontop_normal_active.png diff --git a/awesome/themes/neo/titlebar/ontop_normal_inactive.png b/(sequoia)/awesome/themes/awesomewm/default/titlebar/ontop_normal_inactive.png similarity index 100% rename from awesome/themes/neo/titlebar/ontop_normal_inactive.png rename to (sequoia)/awesome/themes/awesomewm/default/titlebar/ontop_normal_inactive.png diff --git a/awesome/themes/neo/titlebar/sticky_focus_active.png b/(sequoia)/awesome/themes/awesomewm/default/titlebar/sticky_focus_active.png similarity index 100% rename from awesome/themes/neo/titlebar/sticky_focus_active.png rename to (sequoia)/awesome/themes/awesomewm/default/titlebar/sticky_focus_active.png diff --git a/awesome/themes/neo/titlebar/sticky_focus_inactive.png b/(sequoia)/awesome/themes/awesomewm/default/titlebar/sticky_focus_inactive.png similarity index 100% rename from awesome/themes/neo/titlebar/sticky_focus_inactive.png rename to (sequoia)/awesome/themes/awesomewm/default/titlebar/sticky_focus_inactive.png diff --git a/awesome/themes/neo/titlebar/sticky_normal_active.png b/(sequoia)/awesome/themes/awesomewm/default/titlebar/sticky_normal_active.png similarity index 100% rename from awesome/themes/neo/titlebar/sticky_normal_active.png rename to (sequoia)/awesome/themes/awesomewm/default/titlebar/sticky_normal_active.png diff --git a/awesome/themes/neo/titlebar/sticky_normal_inactive.png b/(sequoia)/awesome/themes/awesomewm/default/titlebar/sticky_normal_inactive.png similarity index 100% rename from awesome/themes/neo/titlebar/sticky_normal_inactive.png rename to (sequoia)/awesome/themes/awesomewm/default/titlebar/sticky_normal_inactive.png diff --git a/(sequoia)/awesome/themes/awesomewm/gtk/theme.lua b/(sequoia)/awesome/themes/awesomewm/gtk/theme.lua new file mode 100644 index 0000000..ca31be8 --- /dev/null +++ b/(sequoia)/awesome/themes/awesomewm/gtk/theme.lua @@ -0,0 +1,350 @@ +---------------------------------------------- +-- Awesome theme which follows GTK+ 3 theme -- +-- by Yauhen Kirylau -- +---------------------------------------------- + +local theme_assets = require("beautiful.theme_assets") +local dpi = require("beautiful.xresources").apply_dpi +local gfs = require("gears.filesystem") +local themes_path = gfs.get_themes_dir() +local gears_shape = require("gears.shape") +local wibox = require("wibox") +local awful_widget_clienticon = require("awful.widget.clienticon") +local gtk = require("beautiful.gtk") + + +-- Helper functions for modifying hex colors: +-- +local hex_color_match = "[a-fA-F0-9][a-fA-F0-9]" +local function darker(color_value, darker_n) + local result = "#" + local channel_counter = 1 + for s in color_value:gmatch(hex_color_match) do + local bg_numeric_value = tonumber("0x"..s) + if channel_counter <= 3 then + bg_numeric_value = bg_numeric_value - darker_n + end + if bg_numeric_value < 0 then bg_numeric_value = 0 end + if bg_numeric_value > 255 then bg_numeric_value = 255 end + result = result .. string.format("%02x", bg_numeric_value) + channel_counter = channel_counter + 1 + end + return result +end +local function is_dark(color_value) + local bg_numeric_value = 0; + local channel_counter = 1 + for s in color_value:gmatch(hex_color_match) do + bg_numeric_value = bg_numeric_value + tonumber("0x"..s); + if channel_counter == 3 then + break + end + channel_counter = channel_counter + 1 + end + local is_dark_bg = (bg_numeric_value < 383) + return is_dark_bg +end +local function mix(color1, color2, ratio) + ratio = ratio or 0.5 + local result = "#" + local channels1 = color1:gmatch(hex_color_match) + local channels2 = color2:gmatch(hex_color_match) + for _ = 1,3 do + local bg_numeric_value = math.ceil( + tonumber("0x"..channels1())*ratio + + tonumber("0x"..channels2())*(1-ratio) + ) + if bg_numeric_value < 0 then bg_numeric_value = 0 end + if bg_numeric_value > 255 then bg_numeric_value = 255 end + result = result .. string.format("%02x", bg_numeric_value) + end + return result +end +local function reduce_contrast(color, ratio) + ratio = ratio or 50 + return darker(color, is_dark(color) and -ratio or ratio) +end + +local function choose_contrast_color(reference, candidate1, candidate2) -- luacheck: no unused + if is_dark(reference) then + if not is_dark(candidate1) then + return candidate1 + else + return candidate2 + end + else + if is_dark(candidate1) then + return candidate1 + else + return candidate2 + end + end +end + + +-- inherit xresources theme: +local theme = dofile(themes_path.."xresources/theme.lua") +-- load and prepare for use gtk theme: +theme.gtk = gtk.get_theme_variables() +if not theme.gtk then + local gears_debug = require("gears.debug") + gears_debug.print_warning("Can't load GTK+3 theme. Using 'xresources' theme as a fallback.") + return theme +end +theme.gtk.button_border_radius = dpi(theme.gtk.button_border_radius or 0) +theme.gtk.button_border_width = dpi(theme.gtk.button_border_width or 1) +theme.gtk.bold_font = theme.gtk.font_family .. ' Bold ' .. theme.gtk.font_size +theme.gtk.menubar_border_color = mix( + theme.gtk.menubar_bg_color, + theme.gtk.menubar_fg_color, + 0.7 +) + + +theme.font = theme.gtk.font_family .. ' ' .. theme.gtk.font_size + +theme.bg_normal = theme.gtk.bg_color +theme.fg_normal = theme.gtk.fg_color + +theme.wibar_bg = theme.gtk.menubar_bg_color +theme.wibar_fg = theme.gtk.menubar_fg_color + +theme.bg_focus = theme.gtk.selected_bg_color +theme.fg_focus = theme.gtk.selected_fg_color + +theme.bg_urgent = theme.gtk.error_bg_color +theme.fg_urgent = theme.gtk.error_fg_color + +theme.bg_minimize = mix(theme.wibar_fg, theme.wibar_bg, 0.3) +theme.fg_minimize = mix(theme.wibar_fg, theme.wibar_bg, 0.9) + +theme.bg_systray = theme.wibar_bg + +theme.border_normal = theme.gtk.wm_border_unfocused_color +theme.border_focus = theme.gtk.wm_border_focused_color +theme.border_marked = theme.gtk.success_color + +theme.border_width = dpi(theme.gtk.button_border_width or 1) +theme.border_radius = theme.gtk.button_border_radius + +theme.useless_gap = dpi(3) + +local rounded_rect_shape = function(cr,w,h) + gears_shape.rounded_rect( + cr, w, h, theme.border_radius + ) +end + +-- There are other variable sets +-- overriding the default one when +-- defined, the sets are: +-- taglist_[bg|fg|shape|shape_border_color|shape_border_width]_[focus|urgent|occupied|empty|volatile] +-- tasklist_[bg|fg|shape|shape_border_color|shape_border_width]_[focus|urgent|minimized] +-- titlebar_[bg|fg]_[normal|focus] +-- tooltip_[font|opacity|fg_color|bg_color|border_width|border_color] +-- mouse_finder_[color|timeout|animate_timeout|radius|factor] + +theme.tasklist_fg_normal = theme.wibar_fg +theme.tasklist_bg_normal = theme.wibar_bg +theme.tasklist_fg_focus = theme.tasklist_fg_normal +theme.tasklist_bg_focus = theme.tasklist_bg_normal + +theme.tasklist_font_focus = theme.gtk.bold_font + +theme.tasklist_shape_minimized = rounded_rect_shape +theme.tasklist_shape_border_color_minimized = mix( + theme.bg_minimize, + theme.fg_minimize, + 0.85 +) +theme.tasklist_shape_border_width_minimized = theme.gtk.button_border_width + +theme.tasklist_spacing = theme.gtk.button_border_width + +--[[ Advanced taglist and tasklist styling: {{{ + +--- In order to get taglist and tasklist to follow GTK theme you need to +-- modify your rc.lua in the following way: + +diff --git a/rc.lua b/rc.lua +index 231a2f68c..533a859d2 100644 +--- a/rc.lua ++++ b/rc.lua +@@ -217,24 +217,12 @@ awful.screen.connect_for_each_screen(function(s) + filter = awful.widget.taglist.filter.all, + buttons = taglist_buttons + } ++ -- and apply shape to it ++ if beautiful.taglist_shape_container then ++ local background_shape_wrapper = wibox.container.background(s.mytaglist) ++ background_shape_wrapper._do_taglist_update_now = s.mytaglist._do_taglist_update_now ++ background_shape_wrapper._do_taglist_update = s.mytaglist._do_taglist_update ++ background_shape_wrapper.shape = beautiful.taglist_shape_container ++ background_shape_wrapper.shape_clip = beautiful.taglist_shape_clip_container ++ background_shape_wrapper.shape_border_width = beautiful.taglist_shape_border_width_container ++ background_shape_wrapper.shape_border_color = beautiful.taglist_shape_border_color_container ++ s.mytaglist = background_shape_wrapper ++ end + + -- Create a tasklist widget + s.mytasklist = awful.widget.tasklist { + screen = s, + filter = awful.widget.tasklist.filter.currenttags, ++ buttons = tasklist_buttons, ++ widget_template = beautiful.tasklist_widget_template +- buttons = tasklist_buttons + } + +--]] +theme.tasklist_widget_template = { + { + { + { + { + id = 'clienticon', + widget = awful_widget_clienticon, + }, + margins = dpi(4), + widget = wibox.container.margin, + }, + { + id = 'text_role', + widget = wibox.widget.textbox, + }, + layout = wibox.layout.fixed.horizontal, + }, + left = dpi(2), + right = dpi(4), + widget = wibox.container.margin + }, + id = 'background_role', + widget = wibox.container.background, + create_callback = function(self, c) + self:get_children_by_id('clienticon')[1].client = c + end, +} + +theme.taglist_shape_container = rounded_rect_shape +theme.taglist_shape_clip_container = true +theme.taglist_shape_border_width_container = theme.gtk.button_border_width * 2 +theme.taglist_shape_border_color_container = theme.gtk.header_button_border_color +-- }}} + +theme.taglist_bg_occupied = theme.gtk.header_button_bg_color +theme.taglist_fg_occupied = theme.gtk.header_button_fg_color + +theme.taglist_bg_empty = mix( + theme.gtk.menubar_bg_color, + theme.gtk.header_button_bg_color, + 0.3 +) +theme.taglist_fg_empty = mix( + theme.gtk.menubar_bg_color, + theme.gtk.header_button_fg_color +) + +theme.titlebar_font_normal = theme.gtk.bold_font +theme.titlebar_bg_normal = theme.gtk.wm_border_unfocused_color +theme.titlebar_fg_normal = theme.gtk.wm_title_unfocused_color +--theme.titlebar_fg_normal = choose_contrast_color( + --theme.titlebar_bg_normal, + --theme.gtk.menubar_fg_color, + --theme.gtk.menubar_bg_color +--) + +theme.titlebar_font_focus = theme.gtk.bold_font +theme.titlebar_bg_focus = theme.gtk.wm_border_focused_color +theme.titlebar_fg_focus = theme.gtk.wm_title_focused_color +--theme.titlebar_fg_focus = choose_contrast_color( + --theme.titlebar_bg_focus, + --theme.gtk.menubar_fg_color, + --theme.gtk.menubar_bg_color +--) + +theme.tooltip_fg = theme.gtk.tooltip_fg_color +theme.tooltip_bg = theme.gtk.tooltip_bg_color + +-- Variables set for theming the menu: +-- menu_[bg|fg]_[normal|focus] +-- menu_[border_color|border_width] + +theme.menu_border_width = theme.gtk.button_border_width +theme.menu_border_color = theme.gtk.menubar_border_color +theme.menu_bg_normal = theme.gtk.menubar_bg_color +theme.menu_fg_normal = theme.gtk.menubar_fg_color + +-- @TODO: get from gtk menu height +theme.menu_height = dpi(24) +theme.menu_width = dpi(150) +theme.menu_submenu_icon = nil +theme.menu_submenu = "▸ " + +-- You can add as many variables as +-- you wish and access them by using +-- beautiful.variable in your rc.lua +--theme.bg_widget = "#cc0000" + + +-- Recolor Layout icons: +theme = theme_assets.recolor_layout(theme, theme.wibar_fg) + +-- Recolor titlebar icons: +-- +theme = theme_assets.recolor_titlebar( + theme, theme.titlebar_fg_normal, "normal" +) +theme = theme_assets.recolor_titlebar( + theme, reduce_contrast(theme.titlebar_fg_normal, 50), "normal", "hover" +) +theme = theme_assets.recolor_titlebar( + theme, theme.gtk.error_bg_color, "normal", "press" +) +theme = theme_assets.recolor_titlebar( + theme, theme.titlebar_fg_focus, "focus" +) +theme = theme_assets.recolor_titlebar( + theme, reduce_contrast(theme.titlebar_fg_focus, 50), "focus", "hover" +) +theme = theme_assets.recolor_titlebar( + theme, theme.gtk.error_bg_color, "focus", "press" +) + +-- Define the icon theme for application icons. If not set then the icons +-- from /usr/share/icons and /usr/share/icons/hicolor will be used. +theme.icon_theme = nil + +-- Generate Awesome icon: +theme.awesome_icon = theme_assets.awesome_icon( + theme.menu_height, mix(theme.bg_focus, theme.fg_normal), theme.wibar_bg +) + +-- Generate taglist squares: +--local taglist_square_size = dpi(4) +--theme.taglist_squares_sel = theme_assets.taglist_squares_sel( + --taglist_square_size, theme.gtk.header_button_border_color +--) +--theme.taglist_squares_unsel = theme_assets.taglist_squares_unsel( + --taglist_square_size, theme.gtk.header_button_border_color +--) +-- Or disable them: +theme.taglist_squares_sel = nil +theme.taglist_squares_unsel = nil + +-- Generate wallpaper: +local wallpaper_bg = theme.gtk.base_color +local wallpaper_fg = theme.gtk.bg_color +local wallpaper_alt_fg = theme.gtk.selected_bg_color +if not is_dark(theme.bg_normal) then + wallpaper_bg, wallpaper_fg = wallpaper_fg, wallpaper_bg +end +wallpaper_bg = reduce_contrast(wallpaper_bg, 50) +wallpaper_fg = reduce_contrast(wallpaper_fg, 30) +wallpaper_fg = mix(wallpaper_fg, wallpaper_bg, 0.4) +wallpaper_alt_fg = mix(wallpaper_alt_fg, wallpaper_fg, 0.4) +theme.wallpaper = function(s) + return theme_assets.wallpaper(wallpaper_bg, wallpaper_fg, wallpaper_alt_fg, s) +end + +return theme + +-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80:foldmethod=marker diff --git a/(sequoia)/awesome/themes/awesomewm/sky/awesome-icon.png b/(sequoia)/awesome/themes/awesomewm/sky/awesome-icon.png new file mode 100644 index 0000000..551564e Binary files /dev/null and b/(sequoia)/awesome/themes/awesomewm/sky/awesome-icon.png differ diff --git a/(sequoia)/awesome/themes/awesomewm/sky/layouts/cornerne.png b/(sequoia)/awesome/themes/awesomewm/sky/layouts/cornerne.png new file mode 100644 index 0000000..221c4c8 Binary files /dev/null and b/(sequoia)/awesome/themes/awesomewm/sky/layouts/cornerne.png differ diff --git a/(sequoia)/awesome/themes/awesomewm/sky/layouts/cornernw.png b/(sequoia)/awesome/themes/awesomewm/sky/layouts/cornernw.png new file mode 100644 index 0000000..1147e5a Binary files /dev/null and b/(sequoia)/awesome/themes/awesomewm/sky/layouts/cornernw.png differ diff --git a/(sequoia)/awesome/themes/awesomewm/sky/layouts/cornerse.png b/(sequoia)/awesome/themes/awesomewm/sky/layouts/cornerse.png new file mode 100644 index 0000000..a0d23bc Binary files /dev/null and b/(sequoia)/awesome/themes/awesomewm/sky/layouts/cornerse.png differ diff --git a/(sequoia)/awesome/themes/awesomewm/sky/layouts/cornersw.png b/(sequoia)/awesome/themes/awesomewm/sky/layouts/cornersw.png new file mode 100644 index 0000000..c608729 Binary files /dev/null and b/(sequoia)/awesome/themes/awesomewm/sky/layouts/cornersw.png differ diff --git a/(sequoia)/awesome/themes/awesomewm/sky/layouts/dwindle.png b/(sequoia)/awesome/themes/awesomewm/sky/layouts/dwindle.png new file mode 100644 index 0000000..c985335 Binary files /dev/null and b/(sequoia)/awesome/themes/awesomewm/sky/layouts/dwindle.png differ diff --git a/(sequoia)/awesome/themes/awesomewm/sky/layouts/fairh.png b/(sequoia)/awesome/themes/awesomewm/sky/layouts/fairh.png new file mode 100644 index 0000000..e8d7ddb Binary files /dev/null and b/(sequoia)/awesome/themes/awesomewm/sky/layouts/fairh.png differ diff --git a/(sequoia)/awesome/themes/awesomewm/sky/layouts/fairv.png b/(sequoia)/awesome/themes/awesomewm/sky/layouts/fairv.png new file mode 100644 index 0000000..ef47f9f Binary files /dev/null and b/(sequoia)/awesome/themes/awesomewm/sky/layouts/fairv.png differ diff --git a/(sequoia)/awesome/themes/awesomewm/sky/layouts/floating.png b/(sequoia)/awesome/themes/awesomewm/sky/layouts/floating.png new file mode 100644 index 0000000..978f723 Binary files /dev/null and b/(sequoia)/awesome/themes/awesomewm/sky/layouts/floating.png differ diff --git a/(sequoia)/awesome/themes/awesomewm/sky/layouts/fullscreen.png b/(sequoia)/awesome/themes/awesomewm/sky/layouts/fullscreen.png new file mode 100644 index 0000000..b1de003 Binary files /dev/null and b/(sequoia)/awesome/themes/awesomewm/sky/layouts/fullscreen.png differ diff --git a/(sequoia)/awesome/themes/awesomewm/sky/layouts/magnifier.png b/(sequoia)/awesome/themes/awesomewm/sky/layouts/magnifier.png new file mode 100644 index 0000000..d69ac68 Binary files /dev/null and b/(sequoia)/awesome/themes/awesomewm/sky/layouts/magnifier.png differ diff --git a/(sequoia)/awesome/themes/awesomewm/sky/layouts/max.png b/(sequoia)/awesome/themes/awesomewm/sky/layouts/max.png new file mode 100644 index 0000000..37491f9 Binary files /dev/null and b/(sequoia)/awesome/themes/awesomewm/sky/layouts/max.png differ diff --git a/(sequoia)/awesome/themes/awesomewm/sky/layouts/spiral.png b/(sequoia)/awesome/themes/awesomewm/sky/layouts/spiral.png new file mode 100644 index 0000000..f0a07ce Binary files /dev/null and b/(sequoia)/awesome/themes/awesomewm/sky/layouts/spiral.png differ diff --git a/(sequoia)/awesome/themes/awesomewm/sky/layouts/tile.png b/(sequoia)/awesome/themes/awesomewm/sky/layouts/tile.png new file mode 100644 index 0000000..550393a Binary files /dev/null and b/(sequoia)/awesome/themes/awesomewm/sky/layouts/tile.png differ diff --git a/(sequoia)/awesome/themes/awesomewm/sky/layouts/tilebottom.png b/(sequoia)/awesome/themes/awesomewm/sky/layouts/tilebottom.png new file mode 100644 index 0000000..1dcc227 Binary files /dev/null and b/(sequoia)/awesome/themes/awesomewm/sky/layouts/tilebottom.png differ diff --git a/(sequoia)/awesome/themes/awesomewm/sky/layouts/tileleft.png b/(sequoia)/awesome/themes/awesomewm/sky/layouts/tileleft.png new file mode 100644 index 0000000..14e13f5 Binary files /dev/null and b/(sequoia)/awesome/themes/awesomewm/sky/layouts/tileleft.png differ diff --git a/(sequoia)/awesome/themes/awesomewm/sky/layouts/tiletop.png b/(sequoia)/awesome/themes/awesomewm/sky/layouts/tiletop.png new file mode 100644 index 0000000..2bcb161 Binary files /dev/null and b/(sequoia)/awesome/themes/awesomewm/sky/layouts/tiletop.png differ diff --git a/(sequoia)/awesome/themes/awesomewm/sky/sky-background.png b/(sequoia)/awesome/themes/awesomewm/sky/sky-background.png new file mode 100644 index 0000000..bbc07cc Binary files /dev/null and b/(sequoia)/awesome/themes/awesomewm/sky/sky-background.png differ diff --git a/(sequoia)/awesome/themes/awesomewm/sky/theme.lua b/(sequoia)/awesome/themes/awesomewm/sky/theme.lua new file mode 100644 index 0000000..0aa7d1b --- /dev/null +++ b/(sequoia)/awesome/themes/awesomewm/sky/theme.lua @@ -0,0 +1,102 @@ +------------------------------- +-- "Sky" awesome theme -- +-- By Andrei "Garoth" Thorp -- +------------------------------- +-- If you want SVGs and extras, get them from garoth.com/awesome/sky-theme + +local theme_assets = require("beautiful.theme_assets") +local xresources = require("beautiful.xresources") +local dpi = xresources.apply_dpi +local themes_path = require("gears.filesystem").get_themes_dir() + + +-- BASICS +local theme = {} +theme.font = "sans 8" + +theme.bg_focus = "#e2eeea" +theme.bg_normal = "#729fcf" +theme.bg_urgent = "#fce94f" +theme.bg_minimize = "#0067ce" +theme.bg_systray = theme.bg_normal + +theme.fg_normal = "#2e3436" +theme.fg_focus = "#2e3436" +theme.fg_urgent = "#2e3436" +theme.fg_minimize = "#2e3436" + +theme.useless_gap = dpi(0) +theme.border_width = dpi(2) +theme.border_normal = "#dae3e0" +theme.border_focus = "#729fcf" +theme.border_marked = "#eeeeec" + +-- IMAGES +theme.layout_fairh = themes_path .. "sky/layouts/fairh.png" +theme.layout_fairv = themes_path .. "sky/layouts/fairv.png" +theme.layout_floating = themes_path .. "sky/layouts/floating.png" +theme.layout_magnifier = themes_path .. "sky/layouts/magnifier.png" +theme.layout_max = themes_path .. "sky/layouts/max.png" +theme.layout_fullscreen = themes_path .. "sky/layouts/fullscreen.png" +theme.layout_tilebottom = themes_path .. "sky/layouts/tilebottom.png" +theme.layout_tileleft = themes_path .. "sky/layouts/tileleft.png" +theme.layout_tile = themes_path .. "sky/layouts/tile.png" +theme.layout_tiletop = themes_path .. "sky/layouts/tiletop.png" +theme.layout_spiral = themes_path .. "sky/layouts/spiral.png" +theme.layout_dwindle = themes_path .. "sky/layouts/dwindle.png" +theme.layout_cornernw = themes_path .. "sky/layouts/cornernw.png" +theme.layout_cornerne = themes_path .. "sky/layouts/cornerne.png" +theme.layout_cornersw = themes_path .. "sky/layouts/cornersw.png" +theme.layout_cornerse = themes_path .. "sky/layouts/cornerse.png" + +theme.awesome_icon = themes_path .. "sky/awesome-icon.png" + +-- from default for now... +theme.menu_submenu_icon = themes_path .. "default/submenu.png" + +-- Generate taglist squares: +local taglist_square_size = dpi(4) +theme.taglist_squares_sel = theme_assets.taglist_squares_sel( + taglist_square_size, theme.fg_normal +) +theme.taglist_squares_unsel = theme_assets.taglist_squares_unsel( + taglist_square_size, theme.fg_normal +) + +-- MISC +theme.wallpaper = themes_path .. "sky/sky-background.png" +theme.taglist_squares = "true" +theme.titlebar_close_button = "true" +theme.menu_height = dpi(15) +theme.menu_width = dpi(100) + +-- Define the image to load +theme.titlebar_close_button_normal = themes_path .. "default/titlebar/close_normal.png" +theme.titlebar_close_button_focus = themes_path .. "default/titlebar/close_focus.png" + +theme.titlebar_minimize_button_normal = themes_path .. "default/titlebar/minimize_normal.png" +theme.titlebar_minimize_button_focus = themes_path .. "default/titlebar/minimize_focus.png" + +theme.titlebar_ontop_button_normal_inactive = themes_path .. "default/titlebar/ontop_normal_inactive.png" +theme.titlebar_ontop_button_focus_inactive = themes_path .. "default/titlebar/ontop_focus_inactive.png" +theme.titlebar_ontop_button_normal_active = themes_path .. "default/titlebar/ontop_normal_active.png" +theme.titlebar_ontop_button_focus_active = themes_path .. "default/titlebar/ontop_focus_active.png" + +theme.titlebar_sticky_button_normal_inactive = themes_path .. "default/titlebar/sticky_normal_inactive.png" +theme.titlebar_sticky_button_focus_inactive = themes_path .. "default/titlebar/sticky_focus_inactive.png" +theme.titlebar_sticky_button_normal_active = themes_path .. "default/titlebar/sticky_normal_active.png" +theme.titlebar_sticky_button_focus_active = themes_path .. "default/titlebar/sticky_focus_active.png" + +theme.titlebar_floating_button_normal_inactive = themes_path .. "default/titlebar/floating_normal_inactive.png" +theme.titlebar_floating_button_focus_inactive = themes_path .. "default/titlebar/floating_focus_inactive.png" +theme.titlebar_floating_button_normal_active = themes_path .. "default/titlebar/floating_normal_active.png" +theme.titlebar_floating_button_focus_active = themes_path .. "default/titlebar/floating_focus_active.png" + +theme.titlebar_maximized_button_normal_inactive = themes_path .. "default/titlebar/maximized_normal_inactive.png" +theme.titlebar_maximized_button_focus_inactive = themes_path .. "default/titlebar/maximized_focus_inactive.png" +theme.titlebar_maximized_button_normal_active = themes_path .. "default/titlebar/maximized_normal_active.png" +theme.titlebar_maximized_button_focus_active = themes_path .. "default/titlebar/maximized_focus_active.png" + +return theme + +-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80 diff --git a/(sequoia)/awesome/themes/awesomewm/xresources/assets.lua b/(sequoia)/awesome/themes/awesomewm/xresources/assets.lua new file mode 100644 index 0000000..4fb307a --- /dev/null +++ b/(sequoia)/awesome/themes/awesomewm/xresources/assets.lua @@ -0,0 +1,2 @@ +require("gears.debug").deprecate("Use beautiful.theme_assets instead.", {raw=true}) +return require("beautiful.theme_assets") diff --git a/(sequoia)/awesome/themes/awesomewm/xresources/theme.lua b/(sequoia)/awesome/themes/awesomewm/xresources/theme.lua new file mode 100644 index 0000000..e11a83c --- /dev/null +++ b/(sequoia)/awesome/themes/awesomewm/xresources/theme.lua @@ -0,0 +1,134 @@ +--------------------------------------------- +-- Awesome theme which follows xrdb config -- +-- by Yauhen Kirylau -- +--------------------------------------------- + +local theme_assets = require("beautiful.theme_assets") +local xresources = require("beautiful.xresources") +local dpi = xresources.apply_dpi +local xrdb = xresources.get_current_theme() +local gfs = require("gears.filesystem") +local themes_path = gfs.get_themes_dir() + +-- inherit default theme +local theme = dofile(themes_path.."default/theme.lua") +-- load vector assets' generators for this theme + +theme.font = "sans 8" + +theme.bg_normal = xrdb.background +theme.bg_focus = xrdb.color12 +theme.bg_urgent = xrdb.color9 +theme.bg_minimize = xrdb.color8 +theme.bg_systray = theme.bg_normal + +theme.fg_normal = xrdb.foreground +theme.fg_focus = theme.bg_normal +theme.fg_urgent = theme.bg_normal +theme.fg_minimize = theme.bg_normal + +theme.useless_gap = dpi(3) +theme.border_width = dpi(2) +theme.border_normal = xrdb.color0 +theme.border_focus = theme.bg_focus +theme.border_marked = xrdb.color10 + +-- There are other variable sets +-- overriding the default one when +-- defined, the sets are: +-- taglist_[bg|fg]_[focus|urgent|occupied|empty|volatile] +-- tasklist_[bg|fg]_[focus|urgent] +-- titlebar_[bg|fg]_[normal|focus] +-- tooltip_[font|opacity|fg_color|bg_color|border_width|border_color] +-- mouse_finder_[color|timeout|animate_timeout|radius|factor] +-- Example: +--theme.taglist_bg_focus = "#ff0000" + +theme.tooltip_fg = theme.fg_normal +theme.tooltip_bg = theme.bg_normal + +-- Variables set for theming the menu: +-- menu_[bg|fg]_[normal|focus] +-- menu_[border_color|border_width] +theme.menu_submenu_icon = themes_path.."default/submenu.png" +theme.menu_height = dpi(16) +theme.menu_width = dpi(100) + +-- You can add as many variables as +-- you wish and access them by using +-- beautiful.variable in your rc.lua +--theme.bg_widget = "#cc0000" + +-- Recolor Layout icons: +theme = theme_assets.recolor_layout(theme, theme.fg_normal) + +-- Recolor titlebar icons: +-- +local function darker(color_value, darker_n) + local result = "#" + for s in color_value:gmatch("[a-fA-F0-9][a-fA-F0-9]") do + local bg_numeric_value = tonumber("0x"..s) - darker_n + if bg_numeric_value < 0 then bg_numeric_value = 0 end + if bg_numeric_value > 255 then bg_numeric_value = 255 end + result = result .. string.format("%2.2x", bg_numeric_value) + end + return result +end +theme = theme_assets.recolor_titlebar( + theme, theme.fg_normal, "normal" +) +theme = theme_assets.recolor_titlebar( + theme, darker(theme.fg_normal, -60), "normal", "hover" +) +theme = theme_assets.recolor_titlebar( + theme, xrdb.color1, "normal", "press" +) +theme = theme_assets.recolor_titlebar( + theme, theme.fg_focus, "focus" +) +theme = theme_assets.recolor_titlebar( + theme, darker(theme.fg_focus, -60), "focus", "hover" +) +theme = theme_assets.recolor_titlebar( + theme, xrdb.color1, "focus", "press" +) + +-- Define the icon theme for application icons. If not set then the icons +-- from /usr/share/icons and /usr/share/icons/hicolor will be used. +theme.icon_theme = nil + +-- Generate Awesome icon: +theme.awesome_icon = theme_assets.awesome_icon( + theme.menu_height, theme.bg_focus, theme.fg_focus +) + +-- Generate taglist squares: +local taglist_square_size = dpi(4) +theme.taglist_squares_sel = theme_assets.taglist_squares_sel( + taglist_square_size, theme.fg_normal +) +theme.taglist_squares_unsel = theme_assets.taglist_squares_unsel( + taglist_square_size, theme.fg_normal +) + +-- Try to determine if we are running light or dark colorscheme: +local bg_numberic_value = 0; +for s in theme.bg_normal:gmatch("[a-fA-F0-9][a-fA-F0-9]") do + bg_numberic_value = bg_numberic_value + tonumber("0x"..s); +end +local is_dark_bg = (bg_numberic_value < 383) + +-- Generate wallpaper: +local wallpaper_bg = xrdb.color8 +local wallpaper_fg = xrdb.color7 +local wallpaper_alt_fg = xrdb.color12 +if not is_dark_bg then + wallpaper_bg, wallpaper_fg = wallpaper_fg, wallpaper_bg +end +theme.wallpaper = function(s) + return theme_assets.wallpaper(wallpaper_bg, wallpaper_fg, wallpaper_alt_fg, s) +end + +return theme + +-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80 diff --git a/(sequoia)/awesome/themes/awesomewm/zenburn/awesome-icon.png b/(sequoia)/awesome/themes/awesomewm/zenburn/awesome-icon.png new file mode 100644 index 0000000..70978d3 Binary files /dev/null and b/(sequoia)/awesome/themes/awesomewm/zenburn/awesome-icon.png differ diff --git a/(sequoia)/awesome/themes/awesomewm/zenburn/layouts/cornerne.png b/(sequoia)/awesome/themes/awesomewm/zenburn/layouts/cornerne.png new file mode 100644 index 0000000..d541a43 Binary files /dev/null and b/(sequoia)/awesome/themes/awesomewm/zenburn/layouts/cornerne.png differ diff --git a/(sequoia)/awesome/themes/awesomewm/zenburn/layouts/cornernw.png b/(sequoia)/awesome/themes/awesomewm/zenburn/layouts/cornernw.png new file mode 100644 index 0000000..78fa394 Binary files /dev/null and b/(sequoia)/awesome/themes/awesomewm/zenburn/layouts/cornernw.png differ diff --git a/(sequoia)/awesome/themes/awesomewm/zenburn/layouts/cornerse.png b/(sequoia)/awesome/themes/awesomewm/zenburn/layouts/cornerse.png new file mode 100644 index 0000000..19b85c3 Binary files /dev/null and b/(sequoia)/awesome/themes/awesomewm/zenburn/layouts/cornerse.png differ diff --git a/(sequoia)/awesome/themes/awesomewm/zenburn/layouts/cornersw.png b/(sequoia)/awesome/themes/awesomewm/zenburn/layouts/cornersw.png new file mode 100644 index 0000000..a35c476 Binary files /dev/null and b/(sequoia)/awesome/themes/awesomewm/zenburn/layouts/cornersw.png differ diff --git a/(sequoia)/awesome/themes/awesomewm/zenburn/layouts/dwindle.png b/(sequoia)/awesome/themes/awesomewm/zenburn/layouts/dwindle.png new file mode 100644 index 0000000..1aa4bf2 Binary files /dev/null and b/(sequoia)/awesome/themes/awesomewm/zenburn/layouts/dwindle.png differ diff --git a/(sequoia)/awesome/themes/awesomewm/zenburn/layouts/fairh.png b/(sequoia)/awesome/themes/awesomewm/zenburn/layouts/fairh.png new file mode 100644 index 0000000..e176bb3 Binary files /dev/null and b/(sequoia)/awesome/themes/awesomewm/zenburn/layouts/fairh.png differ diff --git a/(sequoia)/awesome/themes/awesomewm/zenburn/layouts/fairv.png b/(sequoia)/awesome/themes/awesomewm/zenburn/layouts/fairv.png new file mode 100644 index 0000000..7c0a92c Binary files /dev/null and b/(sequoia)/awesome/themes/awesomewm/zenburn/layouts/fairv.png differ diff --git a/(sequoia)/awesome/themes/awesomewm/zenburn/layouts/floating.png b/(sequoia)/awesome/themes/awesomewm/zenburn/layouts/floating.png new file mode 100644 index 0000000..a399092 Binary files /dev/null and b/(sequoia)/awesome/themes/awesomewm/zenburn/layouts/floating.png differ diff --git a/(sequoia)/awesome/themes/awesomewm/zenburn/layouts/fullscreen.png b/(sequoia)/awesome/themes/awesomewm/zenburn/layouts/fullscreen.png new file mode 100644 index 0000000..a0c795c Binary files /dev/null and b/(sequoia)/awesome/themes/awesomewm/zenburn/layouts/fullscreen.png differ diff --git a/(sequoia)/awesome/themes/awesomewm/zenburn/layouts/magnifier.png b/(sequoia)/awesome/themes/awesomewm/zenburn/layouts/magnifier.png new file mode 100644 index 0000000..bca6db9 Binary files /dev/null and b/(sequoia)/awesome/themes/awesomewm/zenburn/layouts/magnifier.png differ diff --git a/(sequoia)/awesome/themes/awesomewm/zenburn/layouts/max.png b/(sequoia)/awesome/themes/awesomewm/zenburn/layouts/max.png new file mode 100644 index 0000000..a24900c Binary files /dev/null and b/(sequoia)/awesome/themes/awesomewm/zenburn/layouts/max.png differ diff --git a/(sequoia)/awesome/themes/awesomewm/zenburn/layouts/spiral.png b/(sequoia)/awesome/themes/awesomewm/zenburn/layouts/spiral.png new file mode 100644 index 0000000..8f5aeed Binary files /dev/null and b/(sequoia)/awesome/themes/awesomewm/zenburn/layouts/spiral.png differ diff --git a/(sequoia)/awesome/themes/awesomewm/zenburn/layouts/tile.png b/(sequoia)/awesome/themes/awesomewm/zenburn/layouts/tile.png new file mode 100644 index 0000000..3fcc904 Binary files /dev/null and b/(sequoia)/awesome/themes/awesomewm/zenburn/layouts/tile.png differ diff --git a/(sequoia)/awesome/themes/awesomewm/zenburn/layouts/tilebottom.png b/(sequoia)/awesome/themes/awesomewm/zenburn/layouts/tilebottom.png new file mode 100644 index 0000000..dfe7832 Binary files /dev/null and b/(sequoia)/awesome/themes/awesomewm/zenburn/layouts/tilebottom.png differ diff --git a/(sequoia)/awesome/themes/awesomewm/zenburn/layouts/tileleft.png b/(sequoia)/awesome/themes/awesomewm/zenburn/layouts/tileleft.png new file mode 100644 index 0000000..c5decfd Binary files /dev/null and b/(sequoia)/awesome/themes/awesomewm/zenburn/layouts/tileleft.png differ diff --git a/(sequoia)/awesome/themes/awesomewm/zenburn/layouts/tiletop.png b/(sequoia)/awesome/themes/awesomewm/zenburn/layouts/tiletop.png new file mode 100644 index 0000000..b251661 Binary files /dev/null and b/(sequoia)/awesome/themes/awesomewm/zenburn/layouts/tiletop.png differ diff --git a/(sequoia)/awesome/themes/awesomewm/zenburn/taglist/squarefz.png b/(sequoia)/awesome/themes/awesomewm/zenburn/taglist/squarefz.png new file mode 100644 index 0000000..0927720 Binary files /dev/null and b/(sequoia)/awesome/themes/awesomewm/zenburn/taglist/squarefz.png differ diff --git a/(sequoia)/awesome/themes/awesomewm/zenburn/taglist/squarez.png b/(sequoia)/awesome/themes/awesomewm/zenburn/taglist/squarez.png new file mode 100644 index 0000000..9b41c26 Binary files /dev/null and b/(sequoia)/awesome/themes/awesomewm/zenburn/taglist/squarez.png differ diff --git a/(sequoia)/awesome/themes/awesomewm/zenburn/theme.lua b/(sequoia)/awesome/themes/awesomewm/zenburn/theme.lua new file mode 100644 index 0000000..2b6fa08 --- /dev/null +++ b/(sequoia)/awesome/themes/awesomewm/zenburn/theme.lua @@ -0,0 +1,136 @@ +------------------------------- +-- "Zenburn" awesome theme -- +-- By Adrian C. (anrxc) -- +------------------------------- + +local themes_path = require("gears.filesystem").get_themes_dir() +local dpi = require("beautiful.xresources").apply_dpi + +-- {{{ Main +local theme = {} +theme.wallpaper = themes_path .. "zenburn/zenburn-background.png" +-- }}} + +-- {{{ Styles +theme.font = "sans 8" + +-- {{{ Colors +theme.fg_normal = "#DCDCCC" +theme.fg_focus = "#F0DFAF" +theme.fg_urgent = "#CC9393" +theme.bg_normal = "#3F3F3F" +theme.bg_focus = "#1E2320" +theme.bg_urgent = "#3F3F3F" +theme.bg_systray = theme.bg_normal +-- }}} + +-- {{{ Borders +theme.useless_gap = dpi(0) +theme.border_width = dpi(2) +theme.border_normal = "#3F3F3F" +theme.border_focus = "#6F6F6F" +theme.border_marked = "#CC9393" +-- }}} + +-- {{{ Titlebars +theme.titlebar_bg_focus = "#3F3F3F" +theme.titlebar_bg_normal = "#3F3F3F" +-- }}} + +-- There are other variable sets +-- overriding the default one when +-- defined, the sets are: +-- [taglist|tasklist]_[bg|fg]_[focus|urgent|occupied|empty|volatile] +-- titlebar_[normal|focus] +-- tooltip_[font|opacity|fg_color|bg_color|border_width|border_color] +-- Example: +--theme.taglist_bg_focus = "#CC9393" +-- }}} + +-- {{{ Widgets +-- You can add as many variables as +-- you wish and access them by using +-- beautiful.variable in your rc.lua +--theme.fg_widget = "#AECF96" +--theme.fg_center_widget = "#88A175" +--theme.fg_end_widget = "#FF5656" +--theme.bg_widget = "#494B4F" +--theme.border_widget = "#3F3F3F" +-- }}} + +-- {{{ Mouse finder +theme.mouse_finder_color = "#CC9393" +-- mouse_finder_[timeout|animate_timeout|radius|factor] +-- }}} + +-- {{{ Menu +-- Variables set for theming the menu: +-- menu_[bg|fg]_[normal|focus] +-- menu_[border_color|border_width] +theme.menu_height = dpi(15) +theme.menu_width = dpi(100) +-- }}} + +-- {{{ Icons +-- {{{ Taglist +theme.taglist_squares_sel = themes_path .. "zenburn/taglist/squarefz.png" +theme.taglist_squares_unsel = themes_path .. "zenburn/taglist/squarez.png" +--theme.taglist_squares_resize = "false" +-- }}} + +-- {{{ Misc +theme.awesome_icon = themes_path .. "zenburn/awesome-icon.png" +theme.menu_submenu_icon = themes_path .. "default/submenu.png" +-- }}} + +-- {{{ Layout +theme.layout_tile = themes_path .. "zenburn/layouts/tile.png" +theme.layout_tileleft = themes_path .. "zenburn/layouts/tileleft.png" +theme.layout_tilebottom = themes_path .. "zenburn/layouts/tilebottom.png" +theme.layout_tiletop = themes_path .. "zenburn/layouts/tiletop.png" +theme.layout_fairv = themes_path .. "zenburn/layouts/fairv.png" +theme.layout_fairh = themes_path .. "zenburn/layouts/fairh.png" +theme.layout_spiral = themes_path .. "zenburn/layouts/spiral.png" +theme.layout_dwindle = themes_path .. "zenburn/layouts/dwindle.png" +theme.layout_max = themes_path .. "zenburn/layouts/max.png" +theme.layout_fullscreen = themes_path .. "zenburn/layouts/fullscreen.png" +theme.layout_magnifier = themes_path .. "zenburn/layouts/magnifier.png" +theme.layout_floating = themes_path .. "zenburn/layouts/floating.png" +theme.layout_cornernw = themes_path .. "zenburn/layouts/cornernw.png" +theme.layout_cornerne = themes_path .. "zenburn/layouts/cornerne.png" +theme.layout_cornersw = themes_path .. "zenburn/layouts/cornersw.png" +theme.layout_cornerse = themes_path .. "zenburn/layouts/cornerse.png" +-- }}} + +-- {{{ Titlebar +theme.titlebar_close_button_focus = themes_path .. "zenburn/titlebar/close_focus.png" +theme.titlebar_close_button_normal = themes_path .. "zenburn/titlebar/close_normal.png" + +theme.titlebar_minimize_button_normal = themes_path .. "default/titlebar/minimize_normal.png" +theme.titlebar_minimize_button_focus = themes_path .. "default/titlebar/minimize_focus.png" + +theme.titlebar_ontop_button_focus_active = themes_path .. "zenburn/titlebar/ontop_focus_active.png" +theme.titlebar_ontop_button_normal_active = themes_path .. "zenburn/titlebar/ontop_normal_active.png" +theme.titlebar_ontop_button_focus_inactive = themes_path .. "zenburn/titlebar/ontop_focus_inactive.png" +theme.titlebar_ontop_button_normal_inactive = themes_path .. "zenburn/titlebar/ontop_normal_inactive.png" + +theme.titlebar_sticky_button_focus_active = themes_path .. "zenburn/titlebar/sticky_focus_active.png" +theme.titlebar_sticky_button_normal_active = themes_path .. "zenburn/titlebar/sticky_normal_active.png" +theme.titlebar_sticky_button_focus_inactive = themes_path .. "zenburn/titlebar/sticky_focus_inactive.png" +theme.titlebar_sticky_button_normal_inactive = themes_path .. "zenburn/titlebar/sticky_normal_inactive.png" + +theme.titlebar_floating_button_focus_active = themes_path .. "zenburn/titlebar/floating_focus_active.png" +theme.titlebar_floating_button_normal_active = themes_path .. "zenburn/titlebar/floating_normal_active.png" +theme.titlebar_floating_button_focus_inactive = themes_path .. "zenburn/titlebar/floating_focus_inactive.png" +theme.titlebar_floating_button_normal_inactive = themes_path .. "zenburn/titlebar/floating_normal_inactive.png" + +theme.titlebar_maximized_button_focus_active = themes_path .. "zenburn/titlebar/maximized_focus_active.png" +theme.titlebar_maximized_button_normal_active = themes_path .. "zenburn/titlebar/maximized_normal_active.png" +theme.titlebar_maximized_button_focus_inactive = themes_path .. "zenburn/titlebar/maximized_focus_inactive.png" +theme.titlebar_maximized_button_normal_inactive = themes_path .. "zenburn/titlebar/maximized_normal_inactive.png" +-- }}} +-- }}} + +return theme + +-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80 diff --git a/(sequoia)/awesome/themes/awesomewm/zenburn/titlebar/close_focus.png b/(sequoia)/awesome/themes/awesomewm/zenburn/titlebar/close_focus.png new file mode 100644 index 0000000..cccbadc Binary files /dev/null and b/(sequoia)/awesome/themes/awesomewm/zenburn/titlebar/close_focus.png differ diff --git a/(sequoia)/awesome/themes/awesomewm/zenburn/titlebar/close_normal.png b/(sequoia)/awesome/themes/awesomewm/zenburn/titlebar/close_normal.png new file mode 100644 index 0000000..6e6b645 Binary files /dev/null and b/(sequoia)/awesome/themes/awesomewm/zenburn/titlebar/close_normal.png differ diff --git a/(sequoia)/awesome/themes/awesomewm/zenburn/titlebar/floating_focus_active.png b/(sequoia)/awesome/themes/awesomewm/zenburn/titlebar/floating_focus_active.png new file mode 100644 index 0000000..77ea127 Binary files /dev/null and b/(sequoia)/awesome/themes/awesomewm/zenburn/titlebar/floating_focus_active.png differ diff --git a/(sequoia)/awesome/themes/awesomewm/zenburn/titlebar/floating_focus_inactive.png b/(sequoia)/awesome/themes/awesomewm/zenburn/titlebar/floating_focus_inactive.png new file mode 100644 index 0000000..94b0360 Binary files /dev/null and b/(sequoia)/awesome/themes/awesomewm/zenburn/titlebar/floating_focus_inactive.png differ diff --git a/(sequoia)/awesome/themes/awesomewm/zenburn/titlebar/floating_normal_active.png b/(sequoia)/awesome/themes/awesomewm/zenburn/titlebar/floating_normal_active.png new file mode 100644 index 0000000..878a9fb Binary files /dev/null and b/(sequoia)/awesome/themes/awesomewm/zenburn/titlebar/floating_normal_active.png differ diff --git a/(sequoia)/awesome/themes/awesomewm/zenburn/titlebar/floating_normal_inactive.png b/(sequoia)/awesome/themes/awesomewm/zenburn/titlebar/floating_normal_inactive.png new file mode 100644 index 0000000..4147c7d Binary files /dev/null and b/(sequoia)/awesome/themes/awesomewm/zenburn/titlebar/floating_normal_inactive.png differ diff --git a/(sequoia)/awesome/themes/awesomewm/zenburn/titlebar/maximized_focus_active.png b/(sequoia)/awesome/themes/awesomewm/zenburn/titlebar/maximized_focus_active.png new file mode 100644 index 0000000..9fc0483 Binary files /dev/null and b/(sequoia)/awesome/themes/awesomewm/zenburn/titlebar/maximized_focus_active.png differ diff --git a/(sequoia)/awesome/themes/awesomewm/zenburn/titlebar/maximized_focus_inactive.png b/(sequoia)/awesome/themes/awesomewm/zenburn/titlebar/maximized_focus_inactive.png new file mode 100644 index 0000000..298751c Binary files /dev/null and b/(sequoia)/awesome/themes/awesomewm/zenburn/titlebar/maximized_focus_inactive.png differ diff --git a/(sequoia)/awesome/themes/awesomewm/zenburn/titlebar/maximized_normal_active.png b/(sequoia)/awesome/themes/awesomewm/zenburn/titlebar/maximized_normal_active.png new file mode 100644 index 0000000..1dca071 Binary files /dev/null and b/(sequoia)/awesome/themes/awesomewm/zenburn/titlebar/maximized_normal_active.png differ diff --git a/(sequoia)/awesome/themes/awesomewm/zenburn/titlebar/maximized_normal_inactive.png b/(sequoia)/awesome/themes/awesomewm/zenburn/titlebar/maximized_normal_inactive.png new file mode 100644 index 0000000..f943ac7 Binary files /dev/null and b/(sequoia)/awesome/themes/awesomewm/zenburn/titlebar/maximized_normal_inactive.png differ diff --git a/(sequoia)/awesome/themes/awesomewm/zenburn/titlebar/ontop_focus_active.png b/(sequoia)/awesome/themes/awesomewm/zenburn/titlebar/ontop_focus_active.png new file mode 100644 index 0000000..86e61b7 Binary files /dev/null and b/(sequoia)/awesome/themes/awesomewm/zenburn/titlebar/ontop_focus_active.png differ diff --git a/(sequoia)/awesome/themes/awesomewm/zenburn/titlebar/ontop_focus_inactive.png b/(sequoia)/awesome/themes/awesomewm/zenburn/titlebar/ontop_focus_inactive.png new file mode 100644 index 0000000..04bc63a Binary files /dev/null and b/(sequoia)/awesome/themes/awesomewm/zenburn/titlebar/ontop_focus_inactive.png differ diff --git a/(sequoia)/awesome/themes/awesomewm/zenburn/titlebar/ontop_normal_active.png b/(sequoia)/awesome/themes/awesomewm/zenburn/titlebar/ontop_normal_active.png new file mode 100644 index 0000000..8d9cb5b Binary files /dev/null and b/(sequoia)/awesome/themes/awesomewm/zenburn/titlebar/ontop_normal_active.png differ diff --git a/(sequoia)/awesome/themes/awesomewm/zenburn/titlebar/ontop_normal_inactive.png b/(sequoia)/awesome/themes/awesomewm/zenburn/titlebar/ontop_normal_inactive.png new file mode 100644 index 0000000..d383c77 Binary files /dev/null and b/(sequoia)/awesome/themes/awesomewm/zenburn/titlebar/ontop_normal_inactive.png differ diff --git a/(sequoia)/awesome/themes/awesomewm/zenburn/titlebar/sticky_focus_active.png b/(sequoia)/awesome/themes/awesomewm/zenburn/titlebar/sticky_focus_active.png new file mode 100644 index 0000000..5af45c1 Binary files /dev/null and b/(sequoia)/awesome/themes/awesomewm/zenburn/titlebar/sticky_focus_active.png differ diff --git a/(sequoia)/awesome/themes/awesomewm/zenburn/titlebar/sticky_focus_inactive.png b/(sequoia)/awesome/themes/awesomewm/zenburn/titlebar/sticky_focus_inactive.png new file mode 100644 index 0000000..1a0c481 Binary files /dev/null and b/(sequoia)/awesome/themes/awesomewm/zenburn/titlebar/sticky_focus_inactive.png differ diff --git a/(sequoia)/awesome/themes/awesomewm/zenburn/titlebar/sticky_normal_active.png b/(sequoia)/awesome/themes/awesomewm/zenburn/titlebar/sticky_normal_active.png new file mode 100644 index 0000000..50a6d2b Binary files /dev/null and b/(sequoia)/awesome/themes/awesomewm/zenburn/titlebar/sticky_normal_active.png differ diff --git a/(sequoia)/awesome/themes/awesomewm/zenburn/titlebar/sticky_normal_inactive.png b/(sequoia)/awesome/themes/awesomewm/zenburn/titlebar/sticky_normal_inactive.png new file mode 100644 index 0000000..ea09406 Binary files /dev/null and b/(sequoia)/awesome/themes/awesomewm/zenburn/titlebar/sticky_normal_inactive.png differ diff --git a/(sequoia)/awesome/themes/awesomewm/zenburn/zenburn-background.png b/(sequoia)/awesome/themes/awesomewm/zenburn/zenburn-background.png new file mode 100644 index 0000000..b2c14d9 Binary files /dev/null and b/(sequoia)/awesome/themes/awesomewm/zenburn/zenburn-background.png differ diff --git a/(sequoia)/awesome/themes/nu/skeuo/awesome-icon.png b/(sequoia)/awesome/themes/nu/skeuo/awesome-icon.png new file mode 100644 index 0000000..70978d3 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/skeuo/awesome-icon.png differ diff --git a/(sequoia)/awesome/themes/nu/skeuo/layouts/cornerne.png b/(sequoia)/awesome/themes/nu/skeuo/layouts/cornerne.png new file mode 100644 index 0000000..d541a43 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/skeuo/layouts/cornerne.png differ diff --git a/(sequoia)/awesome/themes/nu/skeuo/layouts/cornernw.png b/(sequoia)/awesome/themes/nu/skeuo/layouts/cornernw.png new file mode 100644 index 0000000..78fa394 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/skeuo/layouts/cornernw.png differ diff --git a/(sequoia)/awesome/themes/nu/skeuo/layouts/cornerse.png b/(sequoia)/awesome/themes/nu/skeuo/layouts/cornerse.png new file mode 100644 index 0000000..19b85c3 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/skeuo/layouts/cornerse.png differ diff --git a/(sequoia)/awesome/themes/nu/skeuo/layouts/cornersw.png b/(sequoia)/awesome/themes/nu/skeuo/layouts/cornersw.png new file mode 100644 index 0000000..a35c476 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/skeuo/layouts/cornersw.png differ diff --git a/(sequoia)/awesome/themes/nu/skeuo/layouts/dwindle.png b/(sequoia)/awesome/themes/nu/skeuo/layouts/dwindle.png new file mode 100644 index 0000000..1aa4bf2 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/skeuo/layouts/dwindle.png differ diff --git a/(sequoia)/awesome/themes/nu/skeuo/layouts/fairh.png b/(sequoia)/awesome/themes/nu/skeuo/layouts/fairh.png new file mode 100644 index 0000000..e176bb3 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/skeuo/layouts/fairh.png differ diff --git a/(sequoia)/awesome/themes/nu/skeuo/layouts/fairv.png b/(sequoia)/awesome/themes/nu/skeuo/layouts/fairv.png new file mode 100644 index 0000000..7c0a92c Binary files /dev/null and b/(sequoia)/awesome/themes/nu/skeuo/layouts/fairv.png differ diff --git a/(sequoia)/awesome/themes/nu/skeuo/layouts/floating.png b/(sequoia)/awesome/themes/nu/skeuo/layouts/floating.png new file mode 100644 index 0000000..a399092 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/skeuo/layouts/floating.png differ diff --git a/(sequoia)/awesome/themes/nu/skeuo/layouts/fullscreen.png b/(sequoia)/awesome/themes/nu/skeuo/layouts/fullscreen.png new file mode 100644 index 0000000..a0c795c Binary files /dev/null and b/(sequoia)/awesome/themes/nu/skeuo/layouts/fullscreen.png differ diff --git a/(sequoia)/awesome/themes/nu/skeuo/layouts/magnifier.png b/(sequoia)/awesome/themes/nu/skeuo/layouts/magnifier.png new file mode 100644 index 0000000..bca6db9 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/skeuo/layouts/magnifier.png differ diff --git a/(sequoia)/awesome/themes/nu/skeuo/layouts/max.png b/(sequoia)/awesome/themes/nu/skeuo/layouts/max.png new file mode 100644 index 0000000..a24900c Binary files /dev/null and b/(sequoia)/awesome/themes/nu/skeuo/layouts/max.png differ diff --git a/(sequoia)/awesome/themes/nu/skeuo/layouts/spiral.png b/(sequoia)/awesome/themes/nu/skeuo/layouts/spiral.png new file mode 100644 index 0000000..8f5aeed Binary files /dev/null and b/(sequoia)/awesome/themes/nu/skeuo/layouts/spiral.png differ diff --git a/(sequoia)/awesome/themes/nu/skeuo/layouts/tile.png b/(sequoia)/awesome/themes/nu/skeuo/layouts/tile.png new file mode 100644 index 0000000..3fcc904 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/skeuo/layouts/tile.png differ diff --git a/(sequoia)/awesome/themes/nu/skeuo/layouts/tilebottom.png b/(sequoia)/awesome/themes/nu/skeuo/layouts/tilebottom.png new file mode 100644 index 0000000..dfe7832 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/skeuo/layouts/tilebottom.png differ diff --git a/(sequoia)/awesome/themes/nu/skeuo/layouts/tileleft.png b/(sequoia)/awesome/themes/nu/skeuo/layouts/tileleft.png new file mode 100644 index 0000000..c5decfd Binary files /dev/null and b/(sequoia)/awesome/themes/nu/skeuo/layouts/tileleft.png differ diff --git a/(sequoia)/awesome/themes/nu/skeuo/layouts/tiletop.png b/(sequoia)/awesome/themes/nu/skeuo/layouts/tiletop.png new file mode 100644 index 0000000..b251661 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/skeuo/layouts/tiletop.png differ diff --git a/awesome/themes/spacestation/submenu.png b/(sequoia)/awesome/themes/nu/skeuo/submenu.png similarity index 100% rename from awesome/themes/spacestation/submenu.png rename to (sequoia)/awesome/themes/nu/skeuo/submenu.png diff --git a/(sequoia)/awesome/themes/nu/skeuo/taglist/squarefz.png b/(sequoia)/awesome/themes/nu/skeuo/taglist/squarefz.png new file mode 100644 index 0000000..0927720 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/skeuo/taglist/squarefz.png differ diff --git a/(sequoia)/awesome/themes/nu/skeuo/taglist/squarez.png b/(sequoia)/awesome/themes/nu/skeuo/taglist/squarez.png new file mode 100644 index 0000000..9b41c26 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/skeuo/taglist/squarez.png differ diff --git a/(sequoia)/awesome/themes/nu/skeuo/theme.lua b/(sequoia)/awesome/themes/nu/skeuo/theme.lua new file mode 100644 index 0000000..ab31c95 --- /dev/null +++ b/(sequoia)/awesome/themes/nu/skeuo/theme.lua @@ -0,0 +1,138 @@ +------------------------------- +-- "Zenburn" awesome theme -- +-- By Adrian C. (anrxc) -- +------------------------------- + +--local themes_path = require("gears.filesystem").get_themes_dir() +local themes_path = "/home/nu/.config/awesome/themes/" +-- ^ there's obviously something wrong here. the commented out code should return what i have manually set in the second thing. but it doesn't! +local dpi = require("beautiful.xresources").apply_dpi + +-- {{{ Main +local theme = {} +--theme.wallpaper = themes_path .. "/mnt/Storage/Pictures and videos/Wallpapers/1636726932302.jpg" +-- }}} + +-- {{{ Styles +theme.font = "Noto Sans CJK JP, Regular 8.7" + +-- {{{ Colors +theme.fg_normal = "#DCDCCC" +theme.fg_focus = "#F0DFAF" +theme.fg_urgent = "#CC9393" +theme.bg_normal = "#3F3F3F" +theme.bg_focus = "#1E2320" +theme.bg_urgent = "#3F3F3F" +theme.bg_systray = theme.bg_normal +-- }}} + +-- {{{ Borders +theme.useless_gap = dpi(4) +theme.border_width = dpi(2) +theme.border_normal = "#3F3F3F" +theme.border_focus = "#6F6F6F" +theme.border_marked = "#CC9393" +-- }}} + +-- {{{ Titlebars +theme.titlebar_bg_focus = "#3F3F3F" +theme.titlebar_bg_normal = "#3F3F3F" +-- }}} + +-- There are other variable sets +-- overriding the default one when +-- defined, the sets are: +-- [taglist|tasklist]_[bg|fg]_[focus|urgent|occupied|empty|volatile] +-- titlebar_[normal|focus] +-- tooltip_[font|opacity|fg_color|bg_color|border_width|border_color] +-- Example: +--theme.taglist_bg_focus = "#CC9393" +-- }}} + +-- {{{ Widgets +-- You can add as many variables as +-- you wish and access them by using +-- beautiful.variable in your rc.lua +--theme.fg_widget = "#AECF96" +--theme.fg_center_widget = "#88A175" +--theme.fg_end_widget = "#FF5656" +--theme.bg_widget = "#494B4F" +--theme.border_widget = "#3F3F3F" +-- }}} + +-- {{{ Mouse finder +theme.mouse_finder_color = "#CC9393" +-- mouse_finder_[timeout|animate_timeout|radius|factor] +-- }}} + +-- {{{ Menu +-- Variables set for theming the menu: +-- menu_[bg|fg]_[normal|focus] +-- menu_[border_color|border_width] +theme.menu_height = dpi(16) +theme.menu_width = dpi(120) +-- }}} + +-- {{{ Icons +-- {{{ Taglist +theme.taglist_squares_sel = themes_path .. "nu/skeuo/taglist/squarefz.png" +theme.taglist_squares_unsel = themes_path .. "nu/skeuo/taglist/squarez.png" +--theme.taglist_squares_resize = "false" +-- }}} + +-- {{{ Misc +theme.awesome_icon = themes_path .. "nu/skeuo/awesome-icon.png" +theme.menu_submenu_icon = themes_path .. "nu/skeuo/submenu.png" +-- }}} + +-- {{{ Layout +theme.layout_tile = themes_path .. "nu/skeuo/layouts/tile.png" +theme.layout_tileleft = themes_path .. "nu/skeuo/layouts/tileleft.png" +theme.layout_tilebottom = themes_path .. "nu/skeuo/layouts/tilebottom.png" +theme.layout_tiletop = themes_path .. "nu/skeuo/layouts/tiletop.png" +theme.layout_fairv = themes_path .. "nu/skeuo/layouts/fairv.png" +theme.layout_fairh = themes_path .. "nu/skeuo/layouts/fairh.png" +theme.layout_spiral = themes_path .. "nu/skeuo/layouts/spiral.png" +theme.layout_dwindle = themes_path .. "nu/skeuo/layouts/dwindle.png" +theme.layout_max = themes_path .. "nu/skeuo/layouts/max.png" +theme.layout_fullscreen = themes_path .. "nu/skeuo/layouts/fullscreen.png" +theme.layout_magnifier = themes_path .. "nu/skeuo/layouts/magnifier.png" +theme.layout_floating = themes_path .. "nu/skeuo/layouts/floating.png" +theme.layout_cornernw = themes_path .. "nu/skeuo/layouts/cornernw.png" +theme.layout_cornerne = themes_path .. "nu/skeuo/layouts/cornerne.png" +theme.layout_cornersw = themes_path .. "nu/skeuo/layouts/cornersw.png" +theme.layout_cornerse = themes_path .. "nu/skeuo/layouts/cornerse.png" +-- }}} + +-- {{{ Titlebar +theme.titlebar_close_button_focus = themes_path .. "nu/skeuo/titlebar/close_focus.png" +theme.titlebar_close_button_normal = themes_path .. "nu/skeuo/titlebar/close_normal.png" + +theme.titlebar_minimize_button_normal = themes_path .. "nu/skeuo/titlebar/minimize_normal.png" +theme.titlebar_minimize_button_focus = themes_path .. "nu/skeuo/titlebar/minimize_focus.png" + +theme.titlebar_ontop_button_focus_active = themes_path .. "nu/skeuo/titlebar/ontop_focus_active.png" +theme.titlebar_ontop_button_normal_active = themes_path .. "nu/skeuo/titlebar/ontop_normal_active.png" +theme.titlebar_ontop_button_focus_inactive = themes_path .. "nu/skeuo/titlebar/ontop_focus_inactive.png" +theme.titlebar_ontop_button_normal_inactive = themes_path .. "nu/skeuo/titlebar/ontop_normal_inactive.png" + +theme.titlebar_sticky_button_focus_active = themes_path .. "nu/skeuo/titlebar/sticky_focus_active.png" +theme.titlebar_sticky_button_normal_active = themes_path .. "nu/skeuo/titlebar/sticky_normal_active.png" +theme.titlebar_sticky_button_focus_inactive = themes_path .. "nu/skeuo/titlebar/sticky_focus_inactive.png" +theme.titlebar_sticky_button_normal_inactive = themes_path .. "nu/skeuo/titlebar/sticky_normal_inactive.png" + +theme.titlebar_floating_button_focus_active = themes_path .. "nu/skeuo/titlebar/floating_focus_active.png" +theme.titlebar_floating_button_normal_active = themes_path .. "nu/skeuo/titlebar/floating_normal_active.png" +theme.titlebar_floating_button_focus_inactive = themes_path .. "nu/skeuo/titlebar/floating_focus_inactive.png" +theme.titlebar_floating_button_normal_inactive = themes_path .. "nu/skeuo/titlebar/floating_normal_inactive.png" + +theme.titlebar_maximized_button_focus_active = themes_path .. "nu/skeuo/titlebar/maximized_focus_active.png" +theme.titlebar_maximized_button_normal_active = themes_path .. "nu/skeuo/titlebar/maximized_normal_active.png" +theme.titlebar_maximized_button_focus_inactive = themes_path .. "nu/skeuo/titlebar/maximized_focus_inactive.png" +theme.titlebar_maximized_button_normal_inactive = themes_path .. "nu/skeuo/titlebar/maximized_normal_inactive.png" +-- }}} +-- }}} + +return theme + +-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80 diff --git a/(sequoia)/awesome/themes/nu/skeuo/titlebar/close_focus.png b/(sequoia)/awesome/themes/nu/skeuo/titlebar/close_focus.png new file mode 100644 index 0000000..cccbadc Binary files /dev/null and b/(sequoia)/awesome/themes/nu/skeuo/titlebar/close_focus.png differ diff --git a/(sequoia)/awesome/themes/nu/skeuo/titlebar/close_normal.png b/(sequoia)/awesome/themes/nu/skeuo/titlebar/close_normal.png new file mode 100644 index 0000000..6e6b645 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/skeuo/titlebar/close_normal.png differ diff --git a/(sequoia)/awesome/themes/nu/skeuo/titlebar/floating_focus_active.png b/(sequoia)/awesome/themes/nu/skeuo/titlebar/floating_focus_active.png new file mode 100644 index 0000000..77ea127 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/skeuo/titlebar/floating_focus_active.png differ diff --git a/(sequoia)/awesome/themes/nu/skeuo/titlebar/floating_focus_inactive.png b/(sequoia)/awesome/themes/nu/skeuo/titlebar/floating_focus_inactive.png new file mode 100644 index 0000000..94b0360 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/skeuo/titlebar/floating_focus_inactive.png differ diff --git a/(sequoia)/awesome/themes/nu/skeuo/titlebar/floating_normal_active.png b/(sequoia)/awesome/themes/nu/skeuo/titlebar/floating_normal_active.png new file mode 100644 index 0000000..878a9fb Binary files /dev/null and b/(sequoia)/awesome/themes/nu/skeuo/titlebar/floating_normal_active.png differ diff --git a/(sequoia)/awesome/themes/nu/skeuo/titlebar/floating_normal_inactive.png b/(sequoia)/awesome/themes/nu/skeuo/titlebar/floating_normal_inactive.png new file mode 100644 index 0000000..4147c7d Binary files /dev/null and b/(sequoia)/awesome/themes/nu/skeuo/titlebar/floating_normal_inactive.png differ diff --git a/(sequoia)/awesome/themes/nu/skeuo/titlebar/maximized_focus_active.png b/(sequoia)/awesome/themes/nu/skeuo/titlebar/maximized_focus_active.png new file mode 100644 index 0000000..9fc0483 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/skeuo/titlebar/maximized_focus_active.png differ diff --git a/(sequoia)/awesome/themes/nu/skeuo/titlebar/maximized_focus_inactive.png b/(sequoia)/awesome/themes/nu/skeuo/titlebar/maximized_focus_inactive.png new file mode 100644 index 0000000..298751c Binary files /dev/null and b/(sequoia)/awesome/themes/nu/skeuo/titlebar/maximized_focus_inactive.png differ diff --git a/(sequoia)/awesome/themes/nu/skeuo/titlebar/maximized_normal_active.png b/(sequoia)/awesome/themes/nu/skeuo/titlebar/maximized_normal_active.png new file mode 100644 index 0000000..1dca071 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/skeuo/titlebar/maximized_normal_active.png differ diff --git a/(sequoia)/awesome/themes/nu/skeuo/titlebar/maximized_normal_inactive.png b/(sequoia)/awesome/themes/nu/skeuo/titlebar/maximized_normal_inactive.png new file mode 100644 index 0000000..f943ac7 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/skeuo/titlebar/maximized_normal_inactive.png differ diff --git a/awesome/themes/spacestation/titlebar/minimize_focus.png b/(sequoia)/awesome/themes/nu/skeuo/titlebar/minimize_focus.png similarity index 100% rename from awesome/themes/spacestation/titlebar/minimize_focus.png rename to (sequoia)/awesome/themes/nu/skeuo/titlebar/minimize_focus.png diff --git a/awesome/themes/spacestation/titlebar/minimize_normal.png b/(sequoia)/awesome/themes/nu/skeuo/titlebar/minimize_normal.png similarity index 100% rename from awesome/themes/spacestation/titlebar/minimize_normal.png rename to (sequoia)/awesome/themes/nu/skeuo/titlebar/minimize_normal.png diff --git a/(sequoia)/awesome/themes/nu/skeuo/titlebar/ontop_focus_active.png b/(sequoia)/awesome/themes/nu/skeuo/titlebar/ontop_focus_active.png new file mode 100644 index 0000000..86e61b7 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/skeuo/titlebar/ontop_focus_active.png differ diff --git a/(sequoia)/awesome/themes/nu/skeuo/titlebar/ontop_focus_inactive.png b/(sequoia)/awesome/themes/nu/skeuo/titlebar/ontop_focus_inactive.png new file mode 100644 index 0000000..04bc63a Binary files /dev/null and b/(sequoia)/awesome/themes/nu/skeuo/titlebar/ontop_focus_inactive.png differ diff --git a/(sequoia)/awesome/themes/nu/skeuo/titlebar/ontop_normal_active.png b/(sequoia)/awesome/themes/nu/skeuo/titlebar/ontop_normal_active.png new file mode 100644 index 0000000..8d9cb5b Binary files /dev/null and b/(sequoia)/awesome/themes/nu/skeuo/titlebar/ontop_normal_active.png differ diff --git a/(sequoia)/awesome/themes/nu/skeuo/titlebar/ontop_normal_inactive.png b/(sequoia)/awesome/themes/nu/skeuo/titlebar/ontop_normal_inactive.png new file mode 100644 index 0000000..d383c77 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/skeuo/titlebar/ontop_normal_inactive.png differ diff --git a/(sequoia)/awesome/themes/nu/skeuo/titlebar/sticky_focus_active.png b/(sequoia)/awesome/themes/nu/skeuo/titlebar/sticky_focus_active.png new file mode 100644 index 0000000..5af45c1 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/skeuo/titlebar/sticky_focus_active.png differ diff --git a/(sequoia)/awesome/themes/nu/skeuo/titlebar/sticky_focus_inactive.png b/(sequoia)/awesome/themes/nu/skeuo/titlebar/sticky_focus_inactive.png new file mode 100644 index 0000000..1a0c481 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/skeuo/titlebar/sticky_focus_inactive.png differ diff --git a/(sequoia)/awesome/themes/nu/skeuo/titlebar/sticky_normal_active.png b/(sequoia)/awesome/themes/nu/skeuo/titlebar/sticky_normal_active.png new file mode 100644 index 0000000..50a6d2b Binary files /dev/null and b/(sequoia)/awesome/themes/nu/skeuo/titlebar/sticky_normal_active.png differ diff --git a/(sequoia)/awesome/themes/nu/skeuo/titlebar/sticky_normal_inactive.png b/(sequoia)/awesome/themes/nu/skeuo/titlebar/sticky_normal_inactive.png new file mode 100644 index 0000000..ea09406 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/skeuo/titlebar/sticky_normal_inactive.png differ diff --git a/(sequoia)/awesome/themes/nu/wip/awesome-icon.png b/(sequoia)/awesome/themes/nu/wip/awesome-icon.png new file mode 100644 index 0000000..70978d3 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/wip/awesome-icon.png differ diff --git a/(sequoia)/awesome/themes/nu/wip/layouts/cornerne.png b/(sequoia)/awesome/themes/nu/wip/layouts/cornerne.png new file mode 100644 index 0000000..d541a43 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/wip/layouts/cornerne.png differ diff --git a/(sequoia)/awesome/themes/nu/wip/layouts/cornernw.png b/(sequoia)/awesome/themes/nu/wip/layouts/cornernw.png new file mode 100644 index 0000000..78fa394 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/wip/layouts/cornernw.png differ diff --git a/(sequoia)/awesome/themes/nu/wip/layouts/cornerse.png b/(sequoia)/awesome/themes/nu/wip/layouts/cornerse.png new file mode 100644 index 0000000..19b85c3 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/wip/layouts/cornerse.png differ diff --git a/(sequoia)/awesome/themes/nu/wip/layouts/cornersw.png b/(sequoia)/awesome/themes/nu/wip/layouts/cornersw.png new file mode 100644 index 0000000..a35c476 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/wip/layouts/cornersw.png differ diff --git a/(sequoia)/awesome/themes/nu/wip/layouts/dwindle.png b/(sequoia)/awesome/themes/nu/wip/layouts/dwindle.png new file mode 100644 index 0000000..1aa4bf2 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/wip/layouts/dwindle.png differ diff --git a/(sequoia)/awesome/themes/nu/wip/layouts/fairh.png b/(sequoia)/awesome/themes/nu/wip/layouts/fairh.png new file mode 100644 index 0000000..e176bb3 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/wip/layouts/fairh.png differ diff --git a/(sequoia)/awesome/themes/nu/wip/layouts/fairv.png b/(sequoia)/awesome/themes/nu/wip/layouts/fairv.png new file mode 100644 index 0000000..7c0a92c Binary files /dev/null and b/(sequoia)/awesome/themes/nu/wip/layouts/fairv.png differ diff --git a/(sequoia)/awesome/themes/nu/wip/layouts/floating.png b/(sequoia)/awesome/themes/nu/wip/layouts/floating.png new file mode 100644 index 0000000..a399092 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/wip/layouts/floating.png differ diff --git a/(sequoia)/awesome/themes/nu/wip/layouts/fullscreen.png b/(sequoia)/awesome/themes/nu/wip/layouts/fullscreen.png new file mode 100644 index 0000000..a0c795c Binary files /dev/null and b/(sequoia)/awesome/themes/nu/wip/layouts/fullscreen.png differ diff --git a/(sequoia)/awesome/themes/nu/wip/layouts/magnifier.png b/(sequoia)/awesome/themes/nu/wip/layouts/magnifier.png new file mode 100644 index 0000000..bca6db9 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/wip/layouts/magnifier.png differ diff --git a/(sequoia)/awesome/themes/nu/wip/layouts/max.png b/(sequoia)/awesome/themes/nu/wip/layouts/max.png new file mode 100644 index 0000000..a24900c Binary files /dev/null and b/(sequoia)/awesome/themes/nu/wip/layouts/max.png differ diff --git a/(sequoia)/awesome/themes/nu/wip/layouts/spiral.png b/(sequoia)/awesome/themes/nu/wip/layouts/spiral.png new file mode 100644 index 0000000..8f5aeed Binary files /dev/null and b/(sequoia)/awesome/themes/nu/wip/layouts/spiral.png differ diff --git a/(sequoia)/awesome/themes/nu/wip/layouts/tile.png b/(sequoia)/awesome/themes/nu/wip/layouts/tile.png new file mode 100644 index 0000000..3fcc904 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/wip/layouts/tile.png differ diff --git a/(sequoia)/awesome/themes/nu/wip/layouts/tilebottom.png b/(sequoia)/awesome/themes/nu/wip/layouts/tilebottom.png new file mode 100644 index 0000000..dfe7832 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/wip/layouts/tilebottom.png differ diff --git a/(sequoia)/awesome/themes/nu/wip/layouts/tileleft.png b/(sequoia)/awesome/themes/nu/wip/layouts/tileleft.png new file mode 100644 index 0000000..c5decfd Binary files /dev/null and b/(sequoia)/awesome/themes/nu/wip/layouts/tileleft.png differ diff --git a/(sequoia)/awesome/themes/nu/wip/layouts/tiletop.png b/(sequoia)/awesome/themes/nu/wip/layouts/tiletop.png new file mode 100644 index 0000000..b251661 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/wip/layouts/tiletop.png differ diff --git a/(sequoia)/awesome/themes/nu/wip/submenu.png b/(sequoia)/awesome/themes/nu/wip/submenu.png new file mode 100644 index 0000000..b2778e2 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/wip/submenu.png differ diff --git a/(sequoia)/awesome/themes/nu/wip/taglist/squarefz.png b/(sequoia)/awesome/themes/nu/wip/taglist/squarefz.png new file mode 100644 index 0000000..0927720 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/wip/taglist/squarefz.png differ diff --git a/(sequoia)/awesome/themes/nu/wip/taglist/squarez.png b/(sequoia)/awesome/themes/nu/wip/taglist/squarez.png new file mode 100644 index 0000000..9b41c26 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/wip/taglist/squarez.png differ diff --git a/(sequoia)/awesome/themes/nu/wip/theme.lua b/(sequoia)/awesome/themes/nu/wip/theme.lua new file mode 100644 index 0000000..59fb357 --- /dev/null +++ b/(sequoia)/awesome/themes/nu/wip/theme.lua @@ -0,0 +1,138 @@ +------------------------------- +-- "Zenburn" awesome theme -- +-- By Adrian C. (anrxc) -- +------------------------------- + +--local themes_path = require("gears.filesystem").get_themes_dir() +local themes_path = "/home/nu/.config/awesome/themes/" +-- ^ there's obviously something wrong here. the commented out code should return what i have manually set in the second thing. but it doesn't! +local dpi = require("beautiful.xresources").apply_dpi + +-- {{{ Main +local theme = {} +-- theme.wallpaper = "/home/nu/.wp/DRAMAtical.Murder.full.1636462.jpg" +-- }}} + +-- {{{ Styles +theme.font = "Noto Sans CJK JP, Regular 8.7" + +-- {{{ Colors +theme.fg_normal = "#DCDCCC" +theme.fg_focus = "#F0DFAF" +theme.fg_urgent = "#CC9393" +theme.bg_normal = "#3F3F3F" +theme.bg_focus = "#1E2320" +theme.bg_urgent = "#3F3F3F" +theme.bg_systray = theme.bg_normal +-- }}} + +-- {{{ Borders +theme.useless_gap = dpi(4) +theme.border_width = dpi(2) +theme.border_normal = "#3F3F3F" +theme.border_focus = "#6F6F6F" +theme.border_marked = "#CC9393" +-- }}} + +-- {{{ Titlebars +theme.titlebar_bg_focus = "#3F3F3F" +theme.titlebar_bg_normal = "#3F3F3F" +-- }}} + +-- There are other variable sets +-- overriding the default one when +-- defined, the sets are: +-- [taglist|tasklist]_[bg|fg]_[focus|urgent|occupied|empty|volatile] +-- titlebar_[normal|focus] +-- tooltip_[font|opacity|fg_color|bg_color|border_width|border_color] +-- Example: +--theme.taglist_bg_focus = "#CC9393" +-- }}} + +-- {{{ Widgets +-- You can add as many variables as +-- you wish and access them by using +-- beautiful.variable in your rc.lua +--theme.fg_widget = "#AECF96" +--theme.fg_center_widget = "#88A175" +--theme.fg_end_widget = "#FF5656" +--theme.bg_widget = "#494B4F" +--theme.border_widget = "#3F3F3F" +-- }}} + +-- {{{ Mouse finder +theme.mouse_finder_color = "#CC9393" +-- mouse_finder_[timeout|animate_timeout|radius|factor] +-- }}} + +-- {{{ Menu +-- Variables set for theming the menu: +-- menu_[bg|fg]_[normal|focus] +-- menu_[border_color|border_width] +theme.menu_height = dpi(16) +theme.menu_width = dpi(120) +-- }}} + +-- {{{ Icons +-- {{{ Taglist +theme.taglist_squares_sel = themes_path .. "nu/skeuo/taglist/squarefz.png" +theme.taglist_squares_unsel = themes_path .. "nu/skeuo/taglist/squarez.png" +--theme.taglist_squares_resize = "false" +-- }}} + +-- {{{ Misc +theme.awesome_icon = themes_path .. "nu/skeuo/awesome-icon.png" +theme.menu_submenu_icon = themes_path .. "nu/skeuo/submenu.png" +-- }}} + +-- {{{ Layout +theme.layout_tile = themes_path .. "nu/skeuo/layouts/tile.png" +theme.layout_tileleft = themes_path .. "nu/skeuo/layouts/tileleft.png" +theme.layout_tilebottom = themes_path .. "nu/skeuo/layouts/tilebottom.png" +theme.layout_tiletop = themes_path .. "nu/skeuo/layouts/tiletop.png" +theme.layout_fairv = themes_path .. "nu/skeuo/layouts/fairv.png" +theme.layout_fairh = themes_path .. "nu/skeuo/layouts/fairh.png" +theme.layout_spiral = themes_path .. "nu/skeuo/layouts/spiral.png" +theme.layout_dwindle = themes_path .. "nu/skeuo/layouts/dwindle.png" +theme.layout_max = themes_path .. "nu/skeuo/layouts/max.png" +theme.layout_fullscreen = themes_path .. "nu/skeuo/layouts/fullscreen.png" +theme.layout_magnifier = themes_path .. "nu/skeuo/layouts/magnifier.png" +theme.layout_floating = themes_path .. "nu/skeuo/layouts/floating.png" +theme.layout_cornernw = themes_path .. "nu/skeuo/layouts/cornernw.png" +theme.layout_cornerne = themes_path .. "nu/skeuo/layouts/cornerne.png" +theme.layout_cornersw = themes_path .. "nu/skeuo/layouts/cornersw.png" +theme.layout_cornerse = themes_path .. "nu/skeuo/layouts/cornerse.png" +-- }}} + +-- {{{ Titlebar +theme.titlebar_close_button_focus = themes_path .. "nu/skeuo/titlebar/close_focus.png" +theme.titlebar_close_button_normal = themes_path .. "nu/skeuo/titlebar/close_normal.png" + +theme.titlebar_minimize_button_normal = themes_path .. "nu/skeuo/titlebar/minimize_normal.png" +theme.titlebar_minimize_button_focus = themes_path .. "nu/skeuo/titlebar/minimize_focus.png" + +theme.titlebar_ontop_button_focus_active = themes_path .. "nu/skeuo/titlebar/ontop_focus_active.png" +theme.titlebar_ontop_button_normal_active = themes_path .. "nu/skeuo/titlebar/ontop_normal_active.png" +theme.titlebar_ontop_button_focus_inactive = themes_path .. "nu/skeuo/titlebar/ontop_focus_inactive.png" +theme.titlebar_ontop_button_normal_inactive = themes_path .. "nu/skeuo/titlebar/ontop_normal_inactive.png" + +theme.titlebar_sticky_button_focus_active = themes_path .. "nu/skeuo/titlebar/sticky_focus_active.png" +theme.titlebar_sticky_button_normal_active = themes_path .. "nu/skeuo/titlebar/sticky_normal_active.png" +theme.titlebar_sticky_button_focus_inactive = themes_path .. "nu/skeuo/titlebar/sticky_focus_inactive.png" +theme.titlebar_sticky_button_normal_inactive = themes_path .. "nu/skeuo/titlebar/sticky_normal_inactive.png" + +theme.titlebar_floating_button_focus_active = themes_path .. "nu/skeuo/titlebar/floating_focus_active.png" +theme.titlebar_floating_button_normal_active = themes_path .. "nu/skeuo/titlebar/floating_normal_active.png" +theme.titlebar_floating_button_focus_inactive = themes_path .. "nu/skeuo/titlebar/floating_focus_inactive.png" +theme.titlebar_floating_button_normal_inactive = themes_path .. "nu/skeuo/titlebar/floating_normal_inactive.png" + +theme.titlebar_maximized_button_focus_active = themes_path .. "nu/skeuo/titlebar/maximized_focus_active.png" +theme.titlebar_maximized_button_normal_active = themes_path .. "nu/skeuo/titlebar/maximized_normal_active.png" +theme.titlebar_maximized_button_focus_inactive = themes_path .. "nu/skeuo/titlebar/maximized_focus_inactive.png" +theme.titlebar_maximized_button_normal_inactive = themes_path .. "nu/skeuo/titlebar/maximized_normal_inactive.png" +-- }}} +-- }}} + +return theme + +-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80 diff --git a/(sequoia)/awesome/themes/nu/wip/titlebar/close_focus.png b/(sequoia)/awesome/themes/nu/wip/titlebar/close_focus.png new file mode 100644 index 0000000..cccbadc Binary files /dev/null and b/(sequoia)/awesome/themes/nu/wip/titlebar/close_focus.png differ diff --git a/(sequoia)/awesome/themes/nu/wip/titlebar/close_normal.png b/(sequoia)/awesome/themes/nu/wip/titlebar/close_normal.png new file mode 100644 index 0000000..6e6b645 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/wip/titlebar/close_normal.png differ diff --git a/(sequoia)/awesome/themes/nu/wip/titlebar/floating_focus_active.png b/(sequoia)/awesome/themes/nu/wip/titlebar/floating_focus_active.png new file mode 100644 index 0000000..77ea127 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/wip/titlebar/floating_focus_active.png differ diff --git a/(sequoia)/awesome/themes/nu/wip/titlebar/floating_focus_inactive.png b/(sequoia)/awesome/themes/nu/wip/titlebar/floating_focus_inactive.png new file mode 100644 index 0000000..94b0360 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/wip/titlebar/floating_focus_inactive.png differ diff --git a/(sequoia)/awesome/themes/nu/wip/titlebar/floating_normal_active.png b/(sequoia)/awesome/themes/nu/wip/titlebar/floating_normal_active.png new file mode 100644 index 0000000..878a9fb Binary files /dev/null and b/(sequoia)/awesome/themes/nu/wip/titlebar/floating_normal_active.png differ diff --git a/(sequoia)/awesome/themes/nu/wip/titlebar/floating_normal_inactive.png b/(sequoia)/awesome/themes/nu/wip/titlebar/floating_normal_inactive.png new file mode 100644 index 0000000..4147c7d Binary files /dev/null and b/(sequoia)/awesome/themes/nu/wip/titlebar/floating_normal_inactive.png differ diff --git a/(sequoia)/awesome/themes/nu/wip/titlebar/maximized_focus_active.png b/(sequoia)/awesome/themes/nu/wip/titlebar/maximized_focus_active.png new file mode 100644 index 0000000..9fc0483 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/wip/titlebar/maximized_focus_active.png differ diff --git a/(sequoia)/awesome/themes/nu/wip/titlebar/maximized_focus_inactive.png b/(sequoia)/awesome/themes/nu/wip/titlebar/maximized_focus_inactive.png new file mode 100644 index 0000000..298751c Binary files /dev/null and b/(sequoia)/awesome/themes/nu/wip/titlebar/maximized_focus_inactive.png differ diff --git a/(sequoia)/awesome/themes/nu/wip/titlebar/maximized_normal_active.png b/(sequoia)/awesome/themes/nu/wip/titlebar/maximized_normal_active.png new file mode 100644 index 0000000..1dca071 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/wip/titlebar/maximized_normal_active.png differ diff --git a/(sequoia)/awesome/themes/nu/wip/titlebar/maximized_normal_inactive.png b/(sequoia)/awesome/themes/nu/wip/titlebar/maximized_normal_inactive.png new file mode 100644 index 0000000..f943ac7 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/wip/titlebar/maximized_normal_inactive.png differ diff --git a/(sequoia)/awesome/themes/nu/wip/titlebar/minimize_focus.png b/(sequoia)/awesome/themes/nu/wip/titlebar/minimize_focus.png new file mode 100644 index 0000000..caaceb2 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/wip/titlebar/minimize_focus.png differ diff --git a/(sequoia)/awesome/themes/nu/wip/titlebar/minimize_normal.png b/(sequoia)/awesome/themes/nu/wip/titlebar/minimize_normal.png new file mode 100644 index 0000000..36621d0 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/wip/titlebar/minimize_normal.png differ diff --git a/(sequoia)/awesome/themes/nu/wip/titlebar/ontop_focus_active.png b/(sequoia)/awesome/themes/nu/wip/titlebar/ontop_focus_active.png new file mode 100644 index 0000000..86e61b7 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/wip/titlebar/ontop_focus_active.png differ diff --git a/(sequoia)/awesome/themes/nu/wip/titlebar/ontop_focus_inactive.png b/(sequoia)/awesome/themes/nu/wip/titlebar/ontop_focus_inactive.png new file mode 100644 index 0000000..04bc63a Binary files /dev/null and b/(sequoia)/awesome/themes/nu/wip/titlebar/ontop_focus_inactive.png differ diff --git a/(sequoia)/awesome/themes/nu/wip/titlebar/ontop_normal_active.png b/(sequoia)/awesome/themes/nu/wip/titlebar/ontop_normal_active.png new file mode 100644 index 0000000..8d9cb5b Binary files /dev/null and b/(sequoia)/awesome/themes/nu/wip/titlebar/ontop_normal_active.png differ diff --git a/(sequoia)/awesome/themes/nu/wip/titlebar/ontop_normal_inactive.png b/(sequoia)/awesome/themes/nu/wip/titlebar/ontop_normal_inactive.png new file mode 100644 index 0000000..d383c77 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/wip/titlebar/ontop_normal_inactive.png differ diff --git a/(sequoia)/awesome/themes/nu/wip/titlebar/sticky_focus_active.png b/(sequoia)/awesome/themes/nu/wip/titlebar/sticky_focus_active.png new file mode 100644 index 0000000..5af45c1 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/wip/titlebar/sticky_focus_active.png differ diff --git a/(sequoia)/awesome/themes/nu/wip/titlebar/sticky_focus_inactive.png b/(sequoia)/awesome/themes/nu/wip/titlebar/sticky_focus_inactive.png new file mode 100644 index 0000000..1a0c481 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/wip/titlebar/sticky_focus_inactive.png differ diff --git a/(sequoia)/awesome/themes/nu/wip/titlebar/sticky_normal_active.png b/(sequoia)/awesome/themes/nu/wip/titlebar/sticky_normal_active.png new file mode 100644 index 0000000..50a6d2b Binary files /dev/null and b/(sequoia)/awesome/themes/nu/wip/titlebar/sticky_normal_active.png differ diff --git a/(sequoia)/awesome/themes/nu/wip/titlebar/sticky_normal_inactive.png b/(sequoia)/awesome/themes/nu/wip/titlebar/sticky_normal_inactive.png new file mode 100644 index 0000000..ea09406 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/wip/titlebar/sticky_normal_inactive.png differ diff --git a/(sequoia)/awesome/themes/nu/zenburn-custom/awesome-icon.png b/(sequoia)/awesome/themes/nu/zenburn-custom/awesome-icon.png new file mode 100644 index 0000000..70978d3 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/zenburn-custom/awesome-icon.png differ diff --git a/(sequoia)/awesome/themes/nu/zenburn-custom/layouts/cornerne.png b/(sequoia)/awesome/themes/nu/zenburn-custom/layouts/cornerne.png new file mode 100644 index 0000000..d541a43 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/zenburn-custom/layouts/cornerne.png differ diff --git a/(sequoia)/awesome/themes/nu/zenburn-custom/layouts/cornernw.png b/(sequoia)/awesome/themes/nu/zenburn-custom/layouts/cornernw.png new file mode 100644 index 0000000..78fa394 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/zenburn-custom/layouts/cornernw.png differ diff --git a/(sequoia)/awesome/themes/nu/zenburn-custom/layouts/cornerse.png b/(sequoia)/awesome/themes/nu/zenburn-custom/layouts/cornerse.png new file mode 100644 index 0000000..19b85c3 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/zenburn-custom/layouts/cornerse.png differ diff --git a/(sequoia)/awesome/themes/nu/zenburn-custom/layouts/cornersw.png b/(sequoia)/awesome/themes/nu/zenburn-custom/layouts/cornersw.png new file mode 100644 index 0000000..a35c476 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/zenburn-custom/layouts/cornersw.png differ diff --git a/(sequoia)/awesome/themes/nu/zenburn-custom/layouts/dwindle.png b/(sequoia)/awesome/themes/nu/zenburn-custom/layouts/dwindle.png new file mode 100644 index 0000000..1aa4bf2 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/zenburn-custom/layouts/dwindle.png differ diff --git a/(sequoia)/awesome/themes/nu/zenburn-custom/layouts/fairh.png b/(sequoia)/awesome/themes/nu/zenburn-custom/layouts/fairh.png new file mode 100644 index 0000000..e176bb3 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/zenburn-custom/layouts/fairh.png differ diff --git a/(sequoia)/awesome/themes/nu/zenburn-custom/layouts/fairv.png b/(sequoia)/awesome/themes/nu/zenburn-custom/layouts/fairv.png new file mode 100644 index 0000000..7c0a92c Binary files /dev/null and b/(sequoia)/awesome/themes/nu/zenburn-custom/layouts/fairv.png differ diff --git a/(sequoia)/awesome/themes/nu/zenburn-custom/layouts/floating.png b/(sequoia)/awesome/themes/nu/zenburn-custom/layouts/floating.png new file mode 100644 index 0000000..a399092 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/zenburn-custom/layouts/floating.png differ diff --git a/(sequoia)/awesome/themes/nu/zenburn-custom/layouts/fullscreen.png b/(sequoia)/awesome/themes/nu/zenburn-custom/layouts/fullscreen.png new file mode 100644 index 0000000..a0c795c Binary files /dev/null and b/(sequoia)/awesome/themes/nu/zenburn-custom/layouts/fullscreen.png differ diff --git a/(sequoia)/awesome/themes/nu/zenburn-custom/layouts/magnifier.png b/(sequoia)/awesome/themes/nu/zenburn-custom/layouts/magnifier.png new file mode 100644 index 0000000..bca6db9 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/zenburn-custom/layouts/magnifier.png differ diff --git a/(sequoia)/awesome/themes/nu/zenburn-custom/layouts/max.png b/(sequoia)/awesome/themes/nu/zenburn-custom/layouts/max.png new file mode 100644 index 0000000..a24900c Binary files /dev/null and b/(sequoia)/awesome/themes/nu/zenburn-custom/layouts/max.png differ diff --git a/(sequoia)/awesome/themes/nu/zenburn-custom/layouts/spiral.png b/(sequoia)/awesome/themes/nu/zenburn-custom/layouts/spiral.png new file mode 100644 index 0000000..8f5aeed Binary files /dev/null and b/(sequoia)/awesome/themes/nu/zenburn-custom/layouts/spiral.png differ diff --git a/(sequoia)/awesome/themes/nu/zenburn-custom/layouts/tile.png b/(sequoia)/awesome/themes/nu/zenburn-custom/layouts/tile.png new file mode 100644 index 0000000..3fcc904 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/zenburn-custom/layouts/tile.png differ diff --git a/(sequoia)/awesome/themes/nu/zenburn-custom/layouts/tilebottom.png b/(sequoia)/awesome/themes/nu/zenburn-custom/layouts/tilebottom.png new file mode 100644 index 0000000..dfe7832 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/zenburn-custom/layouts/tilebottom.png differ diff --git a/(sequoia)/awesome/themes/nu/zenburn-custom/layouts/tileleft.png b/(sequoia)/awesome/themes/nu/zenburn-custom/layouts/tileleft.png new file mode 100644 index 0000000..c5decfd Binary files /dev/null and b/(sequoia)/awesome/themes/nu/zenburn-custom/layouts/tileleft.png differ diff --git a/(sequoia)/awesome/themes/nu/zenburn-custom/layouts/tiletop.png b/(sequoia)/awesome/themes/nu/zenburn-custom/layouts/tiletop.png new file mode 100644 index 0000000..b251661 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/zenburn-custom/layouts/tiletop.png differ diff --git a/(sequoia)/awesome/themes/nu/zenburn-custom/submenu.png b/(sequoia)/awesome/themes/nu/zenburn-custom/submenu.png new file mode 100644 index 0000000..b2778e2 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/zenburn-custom/submenu.png differ diff --git a/(sequoia)/awesome/themes/nu/zenburn-custom/taglist/squarefz.png b/(sequoia)/awesome/themes/nu/zenburn-custom/taglist/squarefz.png new file mode 100644 index 0000000..0927720 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/zenburn-custom/taglist/squarefz.png differ diff --git a/(sequoia)/awesome/themes/nu/zenburn-custom/taglist/squarez.png b/(sequoia)/awesome/themes/nu/zenburn-custom/taglist/squarez.png new file mode 100644 index 0000000..9b41c26 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/zenburn-custom/taglist/squarez.png differ diff --git a/(sequoia)/awesome/themes/nu/zenburn-custom/theme.lua b/(sequoia)/awesome/themes/nu/zenburn-custom/theme.lua new file mode 100644 index 0000000..8b82318 --- /dev/null +++ b/(sequoia)/awesome/themes/nu/zenburn-custom/theme.lua @@ -0,0 +1,136 @@ +------------------------------- +-- "Zenburn" awesome theme -- +-- By Adrian C. (anrxc) -- +------------------------------- + +local themes_path = require("gears.filesystem").get_themes_dir() +local dpi = require("beautiful.xresources").apply_dpi + +-- {{{ Main +local theme = {} +theme.wallpaper = themes_path .. "/home/nu/.wp/DRAMAtical.Murder.full.1636462.jpg" +-- }}} + +-- {{{ Styles +theme.font = "Atkinson Hyperlegible Next, Regular 9.45" + +-- {{{ Colors +theme.fg_normal = "#DCDCCC" +theme.fg_focus = "#F0DFAF" +theme.fg_urgent = "#CC9393" +theme.bg_normal = "#3F3F3F" +theme.bg_focus = "#1E2320" +theme.bg_urgent = "#3F3F3F" +theme.bg_systray = theme.bg_normal +-- }}} + +-- {{{ Borders +theme.useless_gap = dpi(4) +theme.border_width = dpi(2) +theme.border_normal = "#3F3F3F" +theme.border_focus = "#6F6F6F" +theme.border_marked = "#CC9393" +-- }}} + +-- {{{ Titlebars +theme.titlebar_bg_focus = "#3F3F3F" +theme.titlebar_bg_normal = "#3F3F3F" +-- }}} + +-- There are other variable sets +-- overriding the default one when +-- defined, the sets are: +-- [taglist|tasklist]_[bg|fg]_[focus|urgent|occupied|empty|volatile] +-- titlebar_[normal|focus] +-- tooltip_[font|opacity|fg_color|bg_color|border_width|border_color] +-- Example: +--theme.taglist_bg_focus = "#CC9393" +-- }}} + +-- {{{ Widgets +-- You can add as many variables as +-- you wish and access them by using +-- beautiful.variable in your rc.lua +--theme.fg_widget = "#AECF96" +--theme.fg_center_widget = "#88A175" +--theme.fg_end_widget = "#FF5656" +--theme.bg_widget = "#494B4F" +--theme.border_widget = "#3F3F3F" +-- }}} + +-- {{{ Mouse finder +theme.mouse_finder_color = "#CC9393" +-- mouse_finder_[timeout|animate_timeout|radius|factor] +-- }}} + +-- {{{ Menu +-- Variables set for theming the menu: +-- menu_[bg|fg]_[normal|focus] +-- menu_[border_color|border_width] +theme.menu_height = dpi(16) +theme.menu_width = dpi(120) +-- }}} + +-- {{{ Icons +-- {{{ Taglist +theme.taglist_squares_sel = themes_path .. "nu/zenburn-custom/taglist/squarefz.png" +theme.taglist_squares_unsel = themes_path .. "nu/zenburn-custom/taglist/squarez.png" +--theme.taglist_squares_resize = "false" +-- }}} + +-- {{{ Misc +theme.awesome_icon = themes_path .. "nu/zenburn-custom/awesome-icon.png" +theme.menu_submenu_icon = themes_path .. "nu/zenburn-custom/submenu.png" +-- }}} + +-- {{{ Layout +theme.layout_tile = themes_path .. "nu/zenburn-custom/layouts/tile.png" +theme.layout_tileleft = themes_path .. "nu/zenburn-custom/layouts/tileleft.png" +theme.layout_tilebottom = themes_path .. "nu/zenburn-custom/layouts/tilebottom.png" +theme.layout_tiletop = themes_path .. "nu/zenburn-custom/layouts/tiletop.png" +theme.layout_fairv = themes_path .. "nu/zenburn-custom/layouts/fairv.png" +theme.layout_fairh = themes_path .. "nu/zenburn-custom/layouts/fairh.png" +theme.layout_spiral = themes_path .. "nu/zenburn-custom/layouts/spiral.png" +theme.layout_dwindle = themes_path .. "nu/zenburn-custom/layouts/dwindle.png" +theme.layout_max = themes_path .. "nu/zenburn-custom/layouts/max.png" +theme.layout_fullscreen = themes_path .. "nu/zenburn-custom/layouts/fullscreen.png" +theme.layout_magnifier = themes_path .. "nu/zenburn-custom/layouts/magnifier.png" +theme.layout_floating = themes_path .. "nu/zenburn-custom/layouts/floating.png" +theme.layout_cornernw = themes_path .. "nu/zenburn-custom/layouts/cornernw.png" +theme.layout_cornerne = themes_path .. "nu/zenburn-custom/layouts/cornerne.png" +theme.layout_cornersw = themes_path .. "nu/zenburn-custom/layouts/cornersw.png" +theme.layout_cornerse = themes_path .. "nu/zenburn-custom/layouts/cornerse.png" +-- }}} + +-- {{{ Titlebar +theme.titlebar_close_button_focus = themes_path .. "nu/zenburn-custom/titlebar/close_focus.png" +theme.titlebar_close_button_normal = themes_path .. "nu/zenburn-custom/titlebar/close_normal.png" + +theme.titlebar_minimize_button_normal = themes_path .. "nu/zenburn-custom/titlebar/minimize_normal.png" +theme.titlebar_minimize_button_focus = themes_path .. "nu/zenburn-custom/titlebar/minimize_focus.png" + +theme.titlebar_ontop_button_focus_active = themes_path .. "nu/zenburn-custom/titlebar/ontop_focus_active.png" +theme.titlebar_ontop_button_normal_active = themes_path .. "nu/zenburn-custom/titlebar/ontop_normal_active.png" +theme.titlebar_ontop_button_focus_inactive = themes_path .. "nu/zenburn-custom/titlebar/ontop_focus_inactive.png" +theme.titlebar_ontop_button_normal_inactive = themes_path .. "nu/zenburn-custom/titlebar/ontop_normal_inactive.png" + +theme.titlebar_sticky_button_focus_active = themes_path .. "nu/zenburn-custom/titlebar/sticky_focus_active.png" +theme.titlebar_sticky_button_normal_active = themes_path .. "nu/zenburn-custom/titlebar/sticky_normal_active.png" +theme.titlebar_sticky_button_focus_inactive = themes_path .. "nu/zenburn-custom/titlebar/sticky_focus_inactive.png" +theme.titlebar_sticky_button_normal_inactive = themes_path .. "nu/zenburn-custom/titlebar/sticky_normal_inactive.png" + +theme.titlebar_floating_button_focus_active = themes_path .. "nu/zenburn-custom/titlebar/floating_focus_active.png" +theme.titlebar_floating_button_normal_active = themes_path .. "nu/zenburn-custom/titlebar/floating_normal_active.png" +theme.titlebar_floating_button_focus_inactive = themes_path .. "nu/zenburn-custom/titlebar/floating_focus_inactive.png" +theme.titlebar_floating_button_normal_inactive = themes_path .. "nu/zenburn-custom/titlebar/floating_normal_inactive.png" + +theme.titlebar_maximized_button_focus_active = themes_path .. "nu/zenburn-custom/titlebar/maximized_focus_active.png" +theme.titlebar_maximized_button_normal_active = themes_path .. "nu/zenburn-custom/titlebar/maximized_normal_active.png" +theme.titlebar_maximized_button_focus_inactive = themes_path .. "nu/zenburn-custom/titlebar/maximized_focus_inactive.png" +theme.titlebar_maximized_button_normal_inactive = themes_path .. "nu/zenburn-custom/titlebar/maximized_normal_inactive.png" +-- }}} +-- }}} + +return theme + +-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80 diff --git a/(sequoia)/awesome/themes/nu/zenburn-custom/titlebar/close_focus.png b/(sequoia)/awesome/themes/nu/zenburn-custom/titlebar/close_focus.png new file mode 100644 index 0000000..cccbadc Binary files /dev/null and b/(sequoia)/awesome/themes/nu/zenburn-custom/titlebar/close_focus.png differ diff --git a/(sequoia)/awesome/themes/nu/zenburn-custom/titlebar/close_normal.png b/(sequoia)/awesome/themes/nu/zenburn-custom/titlebar/close_normal.png new file mode 100644 index 0000000..6e6b645 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/zenburn-custom/titlebar/close_normal.png differ diff --git a/(sequoia)/awesome/themes/nu/zenburn-custom/titlebar/floating_focus_active.png b/(sequoia)/awesome/themes/nu/zenburn-custom/titlebar/floating_focus_active.png new file mode 100644 index 0000000..77ea127 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/zenburn-custom/titlebar/floating_focus_active.png differ diff --git a/(sequoia)/awesome/themes/nu/zenburn-custom/titlebar/floating_focus_inactive.png b/(sequoia)/awesome/themes/nu/zenburn-custom/titlebar/floating_focus_inactive.png new file mode 100644 index 0000000..94b0360 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/zenburn-custom/titlebar/floating_focus_inactive.png differ diff --git a/(sequoia)/awesome/themes/nu/zenburn-custom/titlebar/floating_normal_active.png b/(sequoia)/awesome/themes/nu/zenburn-custom/titlebar/floating_normal_active.png new file mode 100644 index 0000000..878a9fb Binary files /dev/null and b/(sequoia)/awesome/themes/nu/zenburn-custom/titlebar/floating_normal_active.png differ diff --git a/(sequoia)/awesome/themes/nu/zenburn-custom/titlebar/floating_normal_inactive.png b/(sequoia)/awesome/themes/nu/zenburn-custom/titlebar/floating_normal_inactive.png new file mode 100644 index 0000000..4147c7d Binary files /dev/null and b/(sequoia)/awesome/themes/nu/zenburn-custom/titlebar/floating_normal_inactive.png differ diff --git a/(sequoia)/awesome/themes/nu/zenburn-custom/titlebar/maximized_focus_active.png b/(sequoia)/awesome/themes/nu/zenburn-custom/titlebar/maximized_focus_active.png new file mode 100644 index 0000000..9fc0483 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/zenburn-custom/titlebar/maximized_focus_active.png differ diff --git a/(sequoia)/awesome/themes/nu/zenburn-custom/titlebar/maximized_focus_inactive.png b/(sequoia)/awesome/themes/nu/zenburn-custom/titlebar/maximized_focus_inactive.png new file mode 100644 index 0000000..298751c Binary files /dev/null and b/(sequoia)/awesome/themes/nu/zenburn-custom/titlebar/maximized_focus_inactive.png differ diff --git a/(sequoia)/awesome/themes/nu/zenburn-custom/titlebar/maximized_normal_active.png b/(sequoia)/awesome/themes/nu/zenburn-custom/titlebar/maximized_normal_active.png new file mode 100644 index 0000000..1dca071 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/zenburn-custom/titlebar/maximized_normal_active.png differ diff --git a/(sequoia)/awesome/themes/nu/zenburn-custom/titlebar/maximized_normal_inactive.png b/(sequoia)/awesome/themes/nu/zenburn-custom/titlebar/maximized_normal_inactive.png new file mode 100644 index 0000000..f943ac7 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/zenburn-custom/titlebar/maximized_normal_inactive.png differ diff --git a/(sequoia)/awesome/themes/nu/zenburn-custom/titlebar/minimize_focus.png b/(sequoia)/awesome/themes/nu/zenburn-custom/titlebar/minimize_focus.png new file mode 100644 index 0000000..caaceb2 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/zenburn-custom/titlebar/minimize_focus.png differ diff --git a/(sequoia)/awesome/themes/nu/zenburn-custom/titlebar/minimize_normal.png b/(sequoia)/awesome/themes/nu/zenburn-custom/titlebar/minimize_normal.png new file mode 100644 index 0000000..36621d0 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/zenburn-custom/titlebar/minimize_normal.png differ diff --git a/(sequoia)/awesome/themes/nu/zenburn-custom/titlebar/ontop_focus_active.png b/(sequoia)/awesome/themes/nu/zenburn-custom/titlebar/ontop_focus_active.png new file mode 100644 index 0000000..86e61b7 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/zenburn-custom/titlebar/ontop_focus_active.png differ diff --git a/(sequoia)/awesome/themes/nu/zenburn-custom/titlebar/ontop_focus_inactive.png b/(sequoia)/awesome/themes/nu/zenburn-custom/titlebar/ontop_focus_inactive.png new file mode 100644 index 0000000..04bc63a Binary files /dev/null and b/(sequoia)/awesome/themes/nu/zenburn-custom/titlebar/ontop_focus_inactive.png differ diff --git a/(sequoia)/awesome/themes/nu/zenburn-custom/titlebar/ontop_normal_active.png b/(sequoia)/awesome/themes/nu/zenburn-custom/titlebar/ontop_normal_active.png new file mode 100644 index 0000000..8d9cb5b Binary files /dev/null and b/(sequoia)/awesome/themes/nu/zenburn-custom/titlebar/ontop_normal_active.png differ diff --git a/(sequoia)/awesome/themes/nu/zenburn-custom/titlebar/ontop_normal_inactive.png b/(sequoia)/awesome/themes/nu/zenburn-custom/titlebar/ontop_normal_inactive.png new file mode 100644 index 0000000..d383c77 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/zenburn-custom/titlebar/ontop_normal_inactive.png differ diff --git a/(sequoia)/awesome/themes/nu/zenburn-custom/titlebar/sticky_focus_active.png b/(sequoia)/awesome/themes/nu/zenburn-custom/titlebar/sticky_focus_active.png new file mode 100644 index 0000000..5af45c1 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/zenburn-custom/titlebar/sticky_focus_active.png differ diff --git a/(sequoia)/awesome/themes/nu/zenburn-custom/titlebar/sticky_focus_inactive.png b/(sequoia)/awesome/themes/nu/zenburn-custom/titlebar/sticky_focus_inactive.png new file mode 100644 index 0000000..1a0c481 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/zenburn-custom/titlebar/sticky_focus_inactive.png differ diff --git a/(sequoia)/awesome/themes/nu/zenburn-custom/titlebar/sticky_normal_active.png b/(sequoia)/awesome/themes/nu/zenburn-custom/titlebar/sticky_normal_active.png new file mode 100644 index 0000000..50a6d2b Binary files /dev/null and b/(sequoia)/awesome/themes/nu/zenburn-custom/titlebar/sticky_normal_active.png differ diff --git a/(sequoia)/awesome/themes/nu/zenburn-custom/titlebar/sticky_normal_inactive.png b/(sequoia)/awesome/themes/nu/zenburn-custom/titlebar/sticky_normal_inactive.png new file mode 100644 index 0000000..ea09406 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/zenburn-custom/titlebar/sticky_normal_inactive.png differ diff --git a/(sequoia)/awesome/themes/nu/zenburn-custom/zenburn-background.png b/(sequoia)/awesome/themes/nu/zenburn-custom/zenburn-background.png new file mode 100644 index 0000000..b2c14d9 Binary files /dev/null and b/(sequoia)/awesome/themes/nu/zenburn-custom/zenburn-background.png differ diff --git a/(sequoia)/environment.d/80-path.conf b/(sequoia)/environment.d/80-path.conf new file mode 100644 index 0000000..b55d81a --- /dev/null +++ b/(sequoia)/environment.d/80-path.conf @@ -0,0 +1 @@ +PATH=$PATH:/home/nu/.opt/bin \ No newline at end of file diff --git a/(sequoia)/environment.d/90-input.conf b/(sequoia)/environment.d/90-input.conf new file mode 100644 index 0000000..591d67a --- /dev/null +++ b/(sequoia)/environment.d/90-input.conf @@ -0,0 +1,4 @@ +GTK_IM_MODULE=fcitx +XMODIFIERS=@im=fcitx +QT_IM_MODULE=ibus +GLFW_IM_MODULE=ibus diff --git a/picom/picom.conf b/(sequoia)/picom/picom.conf similarity index 96% rename from picom/picom.conf rename to (sequoia)/picom/picom.conf index dcb493d..bfa0330 100644 --- a/picom/picom.conf +++ b/(sequoia)/picom/picom.conf @@ -9,13 +9,13 @@ shadow = true; # The blur radius for shadows, in pixels. (defaults to 12) -shadow-radius = 12; +shadow-radius = 15; # The opacity of shadows. (0.0 - 1.0, defaults to 0.75) -shadow-opacity = .80 +shadow-opacity = .90 # The left offset for shadows, in pixels. (defaults to -15) -shadow-offset-x = -12; +#shadow-offset-x = -12; # The top offset for shadows, in pixels. (defaults to -15) shadow-offset-y = -12; @@ -40,6 +40,7 @@ shadow-exclude = [ "class_g ~= 'slop'", "class_g ~= 'maim'", "class_i ~= 'slop'", "class_i ~= 'maim'", "name ~= 'slop'", "name ~= 'maim'", + "name ~= 'OCR Overlay'", "_GTK_FRAME_EXTENTS@:c" ]; @@ -67,10 +68,10 @@ shadow-exclude = [ fading = true; # Opacity change between steps while fading in. (0.01 - 1.0, defaults to 0.028) -fade-in-step = 0.12; +fade-in-step = 0.13; # Opacity change between steps while fading out. (0.01 - 1.0, defaults to 0.03) -fade-out-step = 0.12; +fade-out-step = 0.13; # The time between steps in fade step, in milliseconds. (> 0, defaults to 10) # fade-delta = 10 @@ -119,7 +120,7 @@ focus-exclude = [ "class_g = 'Cairo-clock'" ]; # example: # opacity-rule = [ "80:class_g = 'URxvt'" ]; # -# opacity-rule = [] +#opacity-rule = [] ################################# @@ -129,7 +130,7 @@ focus-exclude = [ "class_g = 'Cairo-clock'" ]; # Sets the radius of rounded window corners. When > 0, the compositor will # round the corners of windows. Does not interact well with # `transparent-clipping`. -corner-radius = 0; +corner-radius = 4; # Exclude conditions for rounded corners. rounded-corners-exclude = [ @@ -145,16 +146,13 @@ rounded-corners-exclude = [ # Parameters for background blurring, see the *BLUR* section for more information. blur-method = "dual_kawase"; -blur-size = 4; - -blur-deviation = 2; - -blur-strength = 5; +# blur-size = 5; +# blur-deviation = 0; +blur-strength = 7; # Blur background of semi-transparent / ARGB windows. # Bad in performance, with driver-dependent behavior. # The name of the switch may change without prior notifications. -# blur-background = true; # Blur background of windows when the window frame is not opaque. @@ -180,6 +178,7 @@ blur-background-exclude = [ "class_g ~= 'slop'", "class_g ~= 'maim'", "class_i ~= 'slop'", "class_i ~= 'maim'", "name ~= 'slop'", "name ~= 'maim'", + "name ~= 'OCR Overlay'", "_GTK_FRAME_EXTENTS@:c" ]; @@ -187,9 +186,6 @@ blur-background-exclude = [ # General Settings # ################################# -# Enable remote control via D-Bus. See the man page for more details. -# dbus = true - # Daemonize process. Fork to background after initialization. Causes issues with certain (badly-written) drivers. daemon = true; @@ -205,8 +201,6 @@ vsync = true; # Try to detect WM windows (a non-override-redirect window with no # child that has 'WM_STATE') and mark them as active. -# -# mark-wmwin-focused = false mark-wmwin-focused = true; # Mark override-redirect windows that doesn't have a child window with 'WM_STATE' focused. @@ -215,26 +209,21 @@ mark-ovredir-focused = true; # Try to detect windows with rounded corners and don't consider them # shaped windows. The accuracy is not very high, unfortunately. -# -# detect-rounded-corners = false detect-rounded-corners = true; # Detect '_NET_WM_WINDOW_OPACITY' on client windows, useful for window managers # not passing '_NET_WM_WINDOW_OPACITY' of client windows to frame windows. -# -# detect-client-opacity = false detect-client-opacity = true; # Use EWMH '_NET_ACTIVE_WINDOW' to determine currently focused window, # rather than listening to 'FocusIn'/'FocusOut' event. Might have more accuracy, # provided that the WM supports it. -# -# use-ewmh-active-win = false +use-ewmh-active-win = true # Unredirect all windows if a full-screen opaque window is detected, # to maximize performance for full-screen windows. Known to cause flickering # when redirecting/unredirecting windows. -# + # unredir-if-possible = false # Delay before unredirecting the window, in milliseconds. Defaults to 0. @@ -291,7 +280,7 @@ detect-client-leader = true; # This cause the whole screen to be redrawn every time, instead of the part of the screen # has actually changed. Potentially degrades the performance, but might fix some artifacts. # The opposing option is use-damage -use-damage = true; +use-damage = false; # Use X Sync fence to sync clients' draw calls, to make sure all draw # calls are finished before picom starts drawing. Needed on nvidia-drivers diff --git a/picom/spaceship.conf b/(sequoia)/picom/spaceship.conf similarity index 100% rename from picom/spaceship.conf rename to (sequoia)/picom/spaceship.conf diff --git a/rofi/config.rasi b/(sequoia)/rofi/config.rasi similarity index 100% rename from rofi/config.rasi rename to (sequoia)/rofi/config.rasi diff --git a/rofi/spaceship/config.rasi b/(sequoia)/rofi/spaceship/config.rasi similarity index 100% rename from rofi/spaceship/config.rasi rename to (sequoia)/rofi/spaceship/config.rasi diff --git a/rofi/spaceship/theme.rasi b/(sequoia)/rofi/spaceship/theme.rasi similarity index 100% rename from rofi/spaceship/theme.rasi rename to (sequoia)/rofi/spaceship/theme.rasi diff --git a/thunar/uca.xml b/(sequoia)/thunar/uca.xml similarity index 100% rename from thunar/uca.xml rename to (sequoia)/thunar/uca.xml diff --git a/.gitignore b/.gitignore index b0e613f..83d2a16 100644 --- a/.gitignore +++ b/.gitignore @@ -14,6 +14,7 @@ # ---> awesomewm awesome/awesome-wm-widgets/ awesome/cyclefocus/ +awesome/themes/awesomewm/ # ---> fish/oh my fish fish/bundle diff --git a/alacritty/alacritty.yml b/alacritty/alacritty.yml deleted file mode 100644 index 892c903..0000000 --- a/alacritty/alacritty.yml +++ /dev/null @@ -1,258 +0,0 @@ -# Import additional configuration files -import: - - ~/.config/alacritty/style_spaceship.yml - -# Any items in the `env` entry below will be added as -# environment variables. -env: - TERM: alacritty - -window: - dimensions: - columns: 65 - lines: 18 - - startup_mode: Windowed - - title: Alacritty - dynamic_title: true - - # Window class (Linux/BSD only): - class: - # Application instance name - instance: Alacritty - # General application class - general: Alacritty - -scrolling: - history: 150 - transparent_background_colors: true - -# The bell is rung every time the BEL control character is received. -#bell: - # Visual Bell Animation - # - # Animation effect for flashing the screen when the visual bell is rung. - # - # Values for `animation`: - # - Ease - # - EaseOut - # - EaseOutSine - # - EaseOutQuad - # - EaseOutCubic - # - EaseOutQuart - # - EaseOutQuint - # - EaseOutExpo - # - EaseOutCirc - # - Linear - #animation: EaseOutExpo - - # Duration of the visual bell flash in milliseconds. A `duration` of `0` will - # disable the visual bell animation. - #duration: 0 - - # Visual bell animation color. - #color: '#ffffff' - - # Bell Command - # - # This program is executed whenever the bell is rung. - # - # When set to `command: None`, no command will be executed. - # - # Example: - # command: - # program: notify-send - # args: ["Hello, World!"] - # - #command: None - -#selection: - # This string contains all characters that are used as separators for - # "semantic words" in Alacritty. - #semantic_escape_chars: ",│`|:\"' ()[]{}<>\t" - - # When set to `true`, selected text will be copied to the primary clipboard. - #save_to_clipboard: false - -cursor: - style: - shape: Block - - # Cursor blinking state - # - Never: Prevent the cursor from ever blinking - # - Off: Disable blinking by default - # - On: Enable blinking by default - # - Always: Force the cursor to always blink - blinking: On - - # Cursor blinking interval in milliseconds. - blink_interval: 750 - - # Time after which cursor stops blinking, in seconds. - blink_timeout: 5 - - # If this is `true`, the cursor will be rendered as a hollow box when the - # window is not focused. - #unfocused_hollow: false - - # Thickness of the cursor relative to the cell width as floating point number - # from `0.0` to `1.0`. - #thickness: 0.15 - -live_config_reload: true - -# Offer IPC using `alacritty msg` (unix only) -#ipc_socket: true - -#mouse: - # Click settings - # - # The `double_click` and `triple_click` settings control the time - # alacritty should wait for accepting multiple clicks as one double - # or triple click. - #double_click: { threshold: 300 } - #triple_click: { threshold: 300 } - - # If this is `true`, the cursor is temporarily hidden when typing. - #hide_when_typing: false - -# Hints -# -# Terminal hints can be used to find text or hyperlink in the visible part of -# the terminal and pipe it to other applications. -#hints: - # Keys used for the hint labels. - #alphabet: "jfkdls;ahgurieowpq" - - # List with all available hints - # - # Each hint must have any of `regex` or `hyperlinks` field and either an - # `action` or a `command` field. The fields `mouse`, `binding` and - # `post_processing` are optional. - # - # The `hyperlinks` option will cause OSC 8 escape sequence hyperlinks to be - # highlighted. - # - # The fields `command`, `binding.key`, `binding.mods`, `binding.mode` and - # `mouse.mods` accept the same values as they do in the `key_bindings` section. - # - # The `mouse.enabled` field controls if the hint should be underlined while - # the mouse with all `mouse.mods` keys held or the vi mode cursor is above it. - # - # If the `post_processing` field is set to `true`, heuristics will be used to - # shorten the match if there are characters likely not to be part of the hint - # (e.g. a trailing `.`). This is most useful for URIs and applies only to - # `regex` matches. - # - # Values for `action`: - # - Copy - # Copy the hint's text to the clipboard. - # - Paste - # Paste the hint's text to the terminal or search. - # - Select - # Select the hint's text. - # - MoveViModeCursor - # Move the vi mode cursor to the beginning of the hint. - #enabled: - # - regex: "(ipfs:|ipns:|magnet:|mailto:|gemini:|gopher:|https:|http:|news:|file:|git:|ssh:|ftp:)\ - # [^\u0000-\u001F\u007F-\u009F<>\"\\s{-}\\^⟨⟩`]+" - # hyperlinks: true - # command: xdg-open - # post_processing: true - # mouse: - # enabled: true - # mods: None - # binding: - # key: U - # mods: Control|Shift - -# Mouse bindings -# -# Mouse bindings are specified as a list of objects, much like the key -# bindings further below. -# -# To trigger mouse bindings when an application running within Alacritty -# captures the mouse, the `Shift` modifier is automatically added as a -# requirement. -# -# Each mouse binding will specify a: -# -# - `mouse`: -# -# - Middle -# - Left -# - Right -# - Numeric identifier such as `5` -# -# - `action` (see key bindings for actions not exclusive to mouse mode) -# -# - Mouse exclusive actions: -# -# - ExpandSelection -# Expand the selection to the current mouse cursor location. -# -# And optionally: -# -# - `mods` (see key bindings) -#mouse_bindings: -# - { mouse: Right, action: ExpandSelection } -# - { mouse: Right, mods: Control, action: ExpandSelection } -# - { mouse: Middle, mode: ~Vi, action: PasteSelection } - -#key_bindings: - #- { key: Paste, action: Paste } - #- { key: Copy, action: Copy } - #- { key: L, mods: Control, action: ClearLogNotice } - #- { key: L, mods: Control, mode: ~Vi|~Search, chars: "\x0c" } - #- { key: PageUp, mods: Shift, mode: ~Alt, action: ScrollPageUp } - #- { key: PageDown, mods: Shift, mode: ~Alt, action: ScrollPageDown } - #- { key: Home, mods: Shift, mode: ~Alt, action: ScrollToTop } - #- { key: End, mods: Shift, mode: ~Alt, action: ScrollToBottom } - - # (Windows, Linux, and BSD only) - #- { key: V, mods: Control|Shift, mode: ~Vi, action: Paste } - #- { key: C, mods: Control|Shift, action: Copy } - #- { key: F, mods: Control|Shift, mode: ~Search, action: SearchForward } - #- { key: B, mods: Control|Shift, mode: ~Search, action: SearchBackward } - #- { key: C, mods: Control|Shift, mode: Vi|~Search, action: ClearSelection } - #- { key: Insert, mods: Shift, action: PasteSelection } - #- { key: Key0, mods: Control, action: ResetFontSize } - #- { key: Equals, mods: Control, action: IncreaseFontSize } - #- { key: Plus, mods: Control, action: IncreaseFontSize } - #- { key: NumpadAdd, mods: Control, action: IncreaseFontSize } - #- { key: Minus, mods: Control, action: DecreaseFontSize } - #- { key: NumpadSubtract, mods: Control, action: DecreaseFontSize } - - # (Windows only) - #- { key: Return, mods: Alt, action: ToggleFullscreen } - -#debug: - # Display the time it takes to redraw each frame. - #render_timer: false - - # Keep the log file after quitting Alacritty. - #persistent_logging: false - - # Log level - # - # Values for `log_level`: - # - Off - # - Error - # - Warn - # - Info - # - Debug - # - Trace - #log_level: Warn - - # Renderer override. - # - glsl3 - # - gles2 - # - gles2_pure - #renderer: None - - # Print all received window events. - #print_events: false - - # Highlight window damage information. - #highlight_damage: false diff --git a/alacritty/style_spaceship.yml b/alacritty/style_spaceship.yml deleted file mode 100644 index d720ab1..0000000 --- a/alacritty/style_spaceship.yml +++ /dev/null @@ -1,37 +0,0 @@ -window: - padding: - x: 8 - y: 8 - opacity: 0.58 - -# Font configuration -font: - normal: - family: Fira Code - size: 11 - builtin_box_drawing: true - -colors: - primary: - background: '0xffffff' - foreground: '0x0f2356' - - normal: - black: '0xe1e1e1' - red: '0x5b0e00' - green: '0x728100' - yellow: '0xaf4200' - blue: '0x004183' - magenta: '0x400090' - cyan: '0x2d6848' - white: '0x8e98b0' - - bright: - black: '0xababab' - red: '0xe75d21' - green: '0xc3d607' - yellow: '0xfaa500' - blue: '0x007fff' - magenta: '0xbb00ff' - cyan: '0x2eda7e' - white: '0x141519' diff --git a/awesome/README.md b/awesome/README.md deleted file mode 100644 index 66b15c7..0000000 --- a/awesome/README.md +++ /dev/null @@ -1,19 +0,0 @@ -# awesome config - -## Deps - -- picom -- [Fira Code](https://github.com/tonsky/FiraCode) *(technically optional, but the `spacestation` theme uses it)* -- pactl [fc38 `pulseaudio-utils`] (for `volume_widget`) - -## Credits - -### Widgets/modules/etc I use - -You'll need to download these yourself if you're taking bits from my dotfiles - -- `volume_widget` comes from [awesome-wm-widgets by streetturtle](https://github.com/streetturtle/awesome-wm-widgets) (MIT) - -### Other people's dotfiles I took from - -- Modularization is from [epsi-rns' awesome dotfiles](https://gitlab.com/epsi-rns/dotfiles) (MIT) diff --git a/awesome/bindings/keys/client.lua b/awesome/bindings/keys/client.lua deleted file mode 100644 index 06b42c3..0000000 --- a/awesome/bindings/keys/client.lua +++ /dev/null @@ -1,88 +0,0 @@ ---- awesome stdlib -local gears = require("gears") -local awful = require("awful") - -local _M = {} -local modkey = RC.vars.modkey ------------------------------------------- -function _M.get() - local client_keys = gears.table.join( - awful.key({ modkey }, "f", - function(c) - c.fullscreen = not c.fullscreen - c:raise() - end, - { description = "toggle fullscreen", - group = "client"}), - - awful.key({ modkey, "Shift" }, "c", - function(c) - c:kill() - end, - { description = "close", - group = "client" }), - - awful.key({ modkey, "Control" }, "space", - awful.client.floating.toggle, - { description = "toggle floating", - group = "client" }), - - awful.key({ modkey, "Control" }, "Return", - function(c) - c:swap(awful.client.getmaster()) - end, - { description = "move to master", - group = "client" }), - - awful.key({ modkey }, "o", - function(c) - c:move_to_screen() - end, - { description = "move to screen", - group = "client" }), - - awful.key({ modkey }, "t", - function(c) - c.ontop = not c.ontop - end, - { description = "toggle keep on top", - group = "client" }), - - awful.key({ modkey }, "n", - function(c) - -- The client currently has the input focus, so it cannot be - -- minimized, since minimized clients can't have the focus. - c.minimized = true - end, - { description = "minimize", - group = "client"}), - - awful.key({ modkey, }, "m", - function(c) - c.maximized = not c.maximized - c:raise() - end, - { description = "(un)maximize", - group = "client" }), - - awful.key({ modkey, "Control" }, "m", - function(c) - c.maximized_vertical = not c.maximized_vertical - c:raise() - end, - { description = "(un)maximize vertically", - group = "client" }), - - awful.key({ modkey, "Shift" }, "m", - function(c) - c.maximized_horizontal = not c.maximized_horizontal - c:raise() - end, - { description = "(un)maximize horizontally", - group = "client" }) - ) - - return client_keys -end ------------------------------------------- -return setmetatable({}, { __call = function(_, ...) return _M.get(...) end }) diff --git a/awesome/bindings/keys/global.lua b/awesome/bindings/keys/global.lua deleted file mode 100644 index 79f95ad..0000000 --- a/awesome/bindings/keys/global.lua +++ /dev/null @@ -1,308 +0,0 @@ ---- awesome stdlib -local gears = require("gears") -local awful = require("awful") ---- others -local hotkeys_popup = require("awful.hotkeys_popup") -local menubar = require("menubar") ---- resource configuration -local modkey = RC.vars.modkey -local terminal = RC.vars.terminal - -local _M = {} ------------------- -function _M.get() - local global_keys = gears.table.join( - --- show help [mod+s] - awful.key({ modkey }, "s", - hotkeys_popup.show_help, - { description = "show help", - group = "awesome" }), - - ------------------ - --------- tag browsing - --- view previous tag [global::mod+left] - awful.key({ modkey }, "Left", - awful.tag.viewprev, - { description = "view previous", - group = "tag" }), - - --- view next tag [global::mod+right] - awful.key({ modkey }, "Right", - awful.tag.viewnext, - { description = "view next", - group = "tag" }), - - ------------------ - --------- screen focus - awful.key({ modkey, "Control" }, "j", - function() - awful.screen.focus_relative( 1) - end, - { description = "focus the next screen", - group = "screen" }), - - awful.key({ modkey, "Control" }, "k", - function() - awful.screen.focus_relative(-1) - end, - { description = "focus the previous screen", - group = "screen" }), - - awful.key({ modkey }, "u", - awful.client.urgent.jumpto, - { description = "jump to urgent client", - group = "client" }), - - awful.key({ modkey }, "Tab", - function() awful.client.focus.history.previous() - if client.focus then - client.focus:raise() - end - end, - { description = "go back", - group = "client" }), - - ------------------ - --------- tiling manip - awful.key({ modkey, "Shift" }, "l", - function() - awful.tag.incmwfact( 0.05 ) - end, - { description = "increase master width factor", - group = "layout" }), - - awful.key({ modkey, "Shift" }, "h", - function() - awful.tag.incmwfact( -0.05 ) - end, - { description = "decrease master width factor", - group = "layout" }), - - awful.key({ modkey }, "h", - function() - awful.tag.incnmaster( 1, nil, true ) - end, - { description = "increase the number of master clients", - group = "layout" }), - - awful.key({ modkey }, "l", - function() - awful.tag.incnmaster(-1, nil, true) - end, - { description = "decrease the number of master clients", - group = "layout" }), - - awful.key({ modkey, "Control" }, "h", - function() - awful.tag.incncol(1, nil, true) - end, - { description = "increase the number of columns", - group = "layout" }), - - awful.key({ modkey, "Control" }, "l", - function() - awful.tag.incncol(-1, nil, true) - end, - { description = "decrease the number of columns", - group = "layout" }), - - --------- client controls - ------ focus switching - --- focus next client by index [global::mod+j] - awful.key({ modkey }, "j", - function() - awful.client.focus.byidx( 1) - end, - { description = "focus next by index", - group = "client" }), - - --- focus last client by index [global::mod+k] - awful.key({ modkey }, "k", - function() - awful.client.focus.byidx(-1) - end, - { description = "focus previous by index", - group = "client" }), - - ------ reordering - --- swap with next client by index [global::mod+shift+j] - awful.key({ modkey, "Shift" }, "j", - function() - awful.client.swap.byidx( 1) - end, - { description = "swap with next client by index", - group = "client" }), - - --- swap with previous client by index [global::mod+shift+k] - awful.key({ modkey, "Shift" }, "k", - function() - awful.client.swap.byidx( -1) - end, - { description = "swap with previous client by index", - group = "client" }), - - ------ resize - - awful.key({ modkey, "Control" }, "Down", - function() - awful.client.moveresize(0, 0, 0, -20) - end), - - awful.key({ modkey, "Control" }, "Up", - function() - awful.client.moveresize(0, 0, 0, 20) - end), - - awful.key({ modkey, "Control" }, "Left", - function() - awful.client.moveresize(0, 0, -20, 0) - end), - - awful.key({ modkey, "Control" }, "Right", - function() - awful.client.moveresize(0, 0, 20, 0) - end), - - ------ move - awful.key({ modkey, "Shift" }, "Down", - function() - awful.client.moveresize(0, 20, 0, 0) - end), - - awful.key({ modkey, "Shift" }, "Up", - function() - awful.client.moveresize(0, -20, 0, 0) - end), - - awful.key({ modkey, "Shift" }, "Left", - function() - awful.client.moveresize(-20, 0, 0, 0) - end), - - awful.key({ modkey, "Shift" }, "Right", - function() - awful.client.moveresize(20, 0, 0, 0) - end), - - awful.key({modkey, "Control" }, "n", - function() local c = awful.client.restore() - --- focus restored client - if c then c:emit_signal("request::activate", - "key.unminimize", {raise = true}) - end - end, - { description = "restore minimized", - group = "client" }), - - ------------------ - --------- prompt - ------ awesome - --- show main menu [global::mod+w] - awful.key({ modkey }, "w", - function() - RC.mainmenu:show() - end, - { description = "show main menu", - group = "awesome" }), - - --- reload awesome [global::mod+ctrl+r] - awful.key({ modkey, "Control" }, "r", - awesome.restart, - { description = "reload awesome", - group = "awesome" }), - - --- open the run prompt [global::mod+r] - awful.key({ modkey, "Shift" }, "r", - function() - awful.screen.focused().mypromptbox:run() - end, - { description = "prompt: execute command", - group = "launcher" }), - - --- open the lua code prompt [global::mod+x] - awful.key({ modkey }, "x", - function() - awful.prompt.run { - prompt = "Run Lua code: ", - textbox = - awful.screen.focused().mypromptbox.widget, - exe_callback = awful.util.eval, - history_path = awful.util.get_cache_dir() .. - "/history_eval" } - end, - { description = "prompt: execute lua", - group = "awesome" }), - - ------ external - --- open terminal [global::mod+enter] - awful.key({ modkey }, "Return", - function() - awful.spawn(terminal) - end, - { description = "open terminal", - group = "launcher" }), - - --- take screenshot of entire screen [global::mod+y] - awful.key( {modkey }, "y", - function() - awful.util.spawn("scrot") - end, - { description = "take fullscreen screenshot", - group = "launcher" }), - - --- open rofi launcher [global::mod+p] - awful.key({ modkey }, "p", - function() - awful.util.spawn("rofi -show drun") - end, - { description = "open rofi launcher", - group = "launcher" }), - - --- ames: start/stop audio recording [global::mod+alt+r] - awful.key({ modkey, "Mod1" }, "r", - function() - awful.util.spawn("bash /home/nu/opt/ames/ames.sh -r") - end, - { description = "start/stop audio recording", - group = "ames" }), - - --- ames: screenshot selection [global::mod+alt+s] - awful.key({ modkey, "Mod1" }, "s", - function() - awful.util.spawn("bash /home/nu/opt/ames/ames.sh -s") - end, - { description = "screenshot selection", - group = "ames" }), - - --- ames: repeat previous screenshot selection [global::mod+alt+a] - awful.key({ modkey, "Mod1" }, "a", - function() - awful.util.spawn("bash /home/nu/opt/ames/ames.sh -a") - end, - { description = "repeat previous screenshot selection", - group = "ames" }), - - --- ames: screenshot active window [global::mod+alt+w] - awful.key({ modkey, "Mod1" }, "w", - function() - awful.util.spawn("bash /home/nu/opt/ames/ames.sh -w") - end, - { description = "screenshot active window", - group = "ames" }), - - --- ames: export copied text to card [global::mod+alt+c] - awful.key({ modkey, "Mod1" }, "c", - function() - awful.util.spawn("bash /home/nu/opt/ames/ames.sh -c") - end, - { description = "export copied text to card", - group = "ames" }) - ) - - return global_keys -end ------------------- -return setmetatable({}, { - __call = function(_, ...) - return _M.get(...) - end }) \ No newline at end of file diff --git a/awesome/bindings/keys/tags.lua b/awesome/bindings/keys/tags.lua deleted file mode 100644 index 52085d1..0000000 --- a/awesome/bindings/keys/tags.lua +++ /dev/null @@ -1,72 +0,0 @@ ---- awesome stdlib -local gears = require("gears") -local awful = require("awful") - -local _M = {} -local modkey = RC.vars.modkey ------------------------------------------- -function _M.get(global_keys) - -- Bind all key numbers to tags. - -- Be careful: we use keycodes to make it work on any keyboard layout. - -- This should map on the top row of your keyboard, usually 1 to 9. - for i = 1, 9 do - global_keys = gears.table.join(global_keys, - - -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - -- View tag only. - awful.key({ modkey }, "#" .. i + 9, - function () - local screen = awful.screen.focused() - local tag = screen.tags[i] - if tag then - tag:view_only() - end - end, - {description = "view tag #"..i, group = "tag"}), - - -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - -- Toggle tag display. - awful.key({ modkey, "Control" }, "#" .. i + 9, - function () - local screen = awful.screen.focused() - local tag = screen.tags[i] - if tag then - awful.tag.viewtoggle(tag) - end - end, - {description = "toggle tag #" .. i, group = "tag"}), - - -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - -- Move client to tag. - awful.key({ modkey, "Shift" }, "#" .. i + 9, - function () - if client.focus then - local tag = client.focus.screen.tags[i] - if tag then - client.focus:move_to_tag(tag) - end - end - end, - {description = "move focused client to tag #"..i, group = "tag"}), - - -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - -- Toggle tag on focused client. - awful.key({ modkey, "Control", "Shift" }, "#" .. i + 9, - function () - if client.focus then - local tag = client.focus.screen.tags[i] - if tag then - client.focus:toggle_tag(tag) - end - end - end, - {description = "toggle focused client on tag #" .. i, group = "tag"}) - - -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - ) - end - - return global_keys -end ------------------------------------------- -return setmetatable({}, { __call = function(_, ...) return _M.get(...) end }) diff --git a/awesome/bindings/mouse/client.lua b/awesome/bindings/mouse/client.lua deleted file mode 100644 index f115fa8..0000000 --- a/awesome/bindings/mouse/client.lua +++ /dev/null @@ -1,36 +0,0 @@ ---- awesome stdlib -local gears = require("gears") -local awful = require("awful") - -local _M = {} ------------------------------------------- -function _M.get() - local client_buttons = gears.table.join( - --- focus client [client::click] - awful.button({ }, 1, - function(c) - c:emit_signal("request::activate", "mouse_click", - {raise = true}) - end), - --- move client [client::mod+click] - awful.button({ modkey }, 1, - function(c) - c:emit_signal("request::activate", "mouse_click", - {raise = true}) - awful.mouse.client.move(c) - end), - --- resize client [client::mod+click_r] - awful.button({ modkey }, 3, - function(c) - c:emit_signal("request::activate", "mouse_click", - {raise = true}) - awful.mouse.client.resize(c) - end) - ) - return client_buttons -end ------------------------------------------- -return setmetatable({}, { - __call = function(_, ...) - return _M.get(...) - end }) \ No newline at end of file diff --git a/awesome/bindings/mouse/global.lua b/awesome/bindings/mouse/global.lua deleted file mode 100644 index 4ad0c3c..0000000 --- a/awesome/bindings/mouse/global.lua +++ /dev/null @@ -1,35 +0,0 @@ ---- awesome stdlib -local gears = require("gears") -local awful = require("awful") - -local _M = {} ------------------------------------------- -function _M.get() - local global_buttons = gears.table.join( - --- hide menu [desktop::click] - awful.button({ }, 1, - function() - RC.mainmenu:hide() - end), - - --- toggle menu [desktop::click_r] - awful.button({ }, 3, - function () - RC.mainmenu:toggle() - end), - - --- go to previous tag [desktop::scroll_u] - awful.button({ }, 4, - awful.tag.viewprev), - - --- go to next tag [desktop::scroll_d] - awful.button({ }, 5, - awful.tag.viewnext) - ) - return global_buttons -end ------------------------------------------- -return setmetatable({}, { - __call = function(_, ...) - return _M.get(...) - end }) \ No newline at end of file diff --git a/awesome/deco/borders.lua b/awesome/deco/borders.lua deleted file mode 100644 index 5c53dbc..0000000 --- a/awesome/deco/borders.lua +++ /dev/null @@ -1,5 +0,0 @@ -local beautiful = require("beautiful") - --- Gaps between windows -beautiful.useless_gap = 5 -beautiful.gap_single_client = true \ No newline at end of file diff --git a/awesome/deco/taglist.lua b/awesome/deco/taglist.lua deleted file mode 100644 index bb2cb67..0000000 --- a/awesome/deco/taglist.lua +++ /dev/null @@ -1,34 +0,0 @@ --- {{{ Required libraries -local gears = require("gears") -local awful = require("awful") --- }}} - -local _M = {} - --- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - -function _M.get() - -- Create a wibox for each screen and add it - local taglist_buttons = gears.table.join( - awful.button({ }, 1, function(t) t:view_only() end), - awful.button({ modkey }, 1, function(t) - if client.focus then - client.focus:move_to_tag(t) - end - end), - awful.button({ }, 3, awful.tag.viewtoggle), - awful.button({ modkey }, 3, function(t) - if client.focus then - client.focus:toggle_tag(t) - end - end), - awful.button({ }, 4, function(t) awful.tag.viewnext(t.screen) end), - awful.button({ }, 5, function(t) awful.tag.viewprev(t.screen) end) - ) - - return taglist_buttons -end - --- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - -return setmetatable({}, { __call = function(_, ...) return _M.get(...) end }) diff --git a/awesome/deco/tasklist.lua b/awesome/deco/tasklist.lua deleted file mode 100644 index a5802bf..0000000 --- a/awesome/deco/tasklist.lua +++ /dev/null @@ -1,39 +0,0 @@ --- {{{ Required libraries -local gears = require("gears") -local awful = require("awful") --- }}} - -local _M = {} - --- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - -function _M.get() - local tasklist_buttons = gears.table.join( - awful.button({ }, 1, function (c) - if c == client.focus then - c.minimized = true - else - c:emit_signal( - "request::activate", - "tasklist", - {raise = true} - ) - end - end), - awful.button({ }, 3, function() - awful.menu.client_list({ theme = { width = 250 } }) - end), - awful.button({ }, 4, function () - awful.client.focus.byidx(1) - end), - awful.button({ }, 5, function () - awful.client.focus.byidx(-1) - end) - ) - - return tasklist_buttons -end - --- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - -return setmetatable({}, { __call = function(_, ...) return _M.get(...) end }) diff --git a/awesome/deco/titlebar.lua b/awesome/deco/titlebar.lua deleted file mode 100644 index dd582f6..0000000 --- a/awesome/deco/titlebar.lua +++ /dev/null @@ -1,47 +0,0 @@ --- module("anybox.titlebar", package.seeall) - --- Standard awesome library -local gears = require("gears") -local awful = require("awful") - --- Widget and layout library -local wibox = require("wibox") - --- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - --- Add a titlebar if titlebars_enabled is set to true in the rules. -client.connect_signal("request::titlebars", function(c) - -- buttons for the titlebar - local buttons = gears.table.join( - awful.button({ }, 1, function() - c:emit_signal("request::activate", "titlebar", {raise = true}) - awful.mouse.client.move(c) - end), - awful.button({ }, 3, function() - c:emit_signal("request::activate", "titlebar", {raise = true}) - awful.mouse.client.resize(c) - end) - ) - - awful.titlebar(c) : setup { - { -- Left - awful.titlebar.widget.iconwidget(c), - buttons = buttons, - layout = wibox.layout.fixed.horizontal - }, - { -- Middle - { -- Title - align = "left", - widget = awful.titlebar.widget.titlewidget(c) - }, - buttons = buttons, - layout = wibox.layout.flex.horizontal - }, - { -- Right - awful.titlebar.widget.floatingbutton (c), - awful.titlebar.widget.maximizedbutton(c), - layout = wibox.layout.fixed.horizontal() - }, - layout = wibox.layout.align.horizontal - } -end) diff --git a/awesome/deco/wallpaper.lua b/awesome/deco/wallpaper.lua deleted file mode 100644 index 2199e95..0000000 --- a/awesome/deco/wallpaper.lua +++ /dev/null @@ -1,20 +0,0 @@ --- Standard awesome library -local gears = require("gears") -local beautiful = require("beautiful") - --- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - -function set_wallpaper(s) - -- Wallpaper - if beautiful.wallpaper then - local wallpaper = beautiful.wallpaper - -- If wallpaper is a function, call it with the screen - if type(wallpaper) == "function" then - wallpaper = wallpaper(s) - end - gears.wallpaper.maximized(wallpaper, s, false) - end -end - --- Re-set wallpaper when a screen's geometry changes (e.g. different resolution) -screen.connect_signal("property::geometry", set_wallpaper) diff --git a/awesome/main/errors.lua b/awesome/main/errors.lua deleted file mode 100644 index ebf0bf1..0000000 --- a/awesome/main/errors.lua +++ /dev/null @@ -1,31 +0,0 @@ --- Notification library -local naughty = require("naughty") - --- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - --- Check if awesome encountered an error during startup and fell back to --- another config (This code will only ever execute for the fallback config) -if awesome.startup_errors then - naughty.notify({ - preset = naughty.config.presets.critical, - title = "Oops, there were errors during startup!", - text = awesome.startup_errors - }) -end - --- Handle runtime errors after startup -do - local in_error = false - awesome.connect_signal("debug::error", function (err) - -- Make sure we don't go into an endless error loop - if in_error then return end - in_error = true - - naughty.notify({ - preset = naughty.config.presets.critical, - title = "Oops, an error happened!", - text = tostring(err) - }) - in_error = false - end) -end diff --git a/awesome/main/layouts.lua b/awesome/main/layouts.lua deleted file mode 100644 index 4fc933f..0000000 --- a/awesome/main/layouts.lua +++ /dev/null @@ -1,29 +0,0 @@ --- Standard awesome library -local awful = require("awful") - -local _M = {} - --- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - -function _M.get () - -- Table of layouts to cover with awful.layout.inc, order matters. - local layouts = { - awful.layout.suit.floating, - - awful.layout.suit.tile, - awful.layout.suit.tile.left, - awful.layout.suit.tile.bottom, - awful.layout.suit.tile.top, - - awful.layout.suit.fair, - awful.layout.suit.fair.horizontal, - - awful.layout.suit.max, - } - - return layouts -end - --- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - -return setmetatable({}, { __call = function(_, ...) return _M.get(...) end }) diff --git a/awesome/main/menu.lua b/awesome/main/menu.lua deleted file mode 100644 index 9da453a..0000000 --- a/awesome/main/menu.lua +++ /dev/null @@ -1,68 +0,0 @@ ---- awesome stdlib -local awful = require("awful") -local hotkeys_popup = require("awful.hotkeys_popup").widget ---- theme lib -local beautiful = require("beautiful") --- for awesome.icon - -local M = {} -local _M = {} ------------------------------------------- ---- import preferred programs -local terminal = RC.vars.terminal -local file_manager = RC.vars.file_manager - ---- import editor variable from OS environment -local editor = os.getenv("EDITOR") or "nano" -local editor_cmd = terminal .. " -e " .. editor - ------------------------------------------- ---- make it harder to quit awesome accidentally -M.quitmenu = - {{ "i mean it!", - function() awesome.quit() end }} - ---- "awesome" menu -M.awesome = { - { "hotkeys", - function() - hotkeys_popup.show_help(nil,awful.screen.focused()) - end }, - - { "manual", - terminal .. " -e man awesome" }, - - { "edit config", - editor_cmd .. " " .. awesome.conffile }, - - { "terminal", terminal }, - - { "restart", awesome.restart }, - - { "quit", M.quitmenu } -} - ---- stuff that doesn't show up in rofi -M.misc = { - { "youtube", - "/usr/lib64/chromium-browser/chromium-browser.sh\ - --profile-directory=Default\ - --app-id=agimnkijcaahngcdmfeangaknmldooml" }, -} - ------------------------------------------- -function _M.get() - ---- main menu -local menu_items = { - { "awesome", - M.awesome, beautiful.awesome_subicon }, - { "terminal", terminal }, - { "files" , file_manager }, - { "search" , "catfish" }, - { "wally" , "wally" }, - { "misc" , M.misc } -} - return menu_items -end ------------------------------------------- -return setmetatable({}, { __call = function(_, ...) return _M.get(...) end }) diff --git a/awesome/main/rules.lua b/awesome/main/rules.lua deleted file mode 100644 index 84174e4..0000000 --- a/awesome/main/rules.lua +++ /dev/null @@ -1,89 +0,0 @@ --- Standard awesome library -local awful = require("awful") --- Theme handling library -local beautiful = require("beautiful") - -local _M = {} - --- reading --- https://awesomewm.org/apidoc/libraries/awful.rules.html - --- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - -function _M.get(clientkeys, clientbuttons) - local rules = { - - -- All clients will match this rule. - { rule = { }, - properties = { - border_width = beautiful.border_width, - border_color = beautiful.border_normal, - focus = awful.client.focus.filter, - raise = true, - keys = clientkeys, - buttons = clientbuttons, - screen = awful.screen.preferred, - placement = awful.placement.no_overlap+awful.placement.no_offscreen - }, - }, - - -- Floating clients. - { rule_any = { - instance = { - "copyq", -- Includes session name in class. - "pinentry" - }, - class = { - "Tor Browser", -- Needs a fixed window size to avoid fingerprinting by screen size. - "steamwebhelper", - "mate-calc", - "Mate-calc", - "steam_app_2060480", - "Alacritty", - "discord", - "Spotify" - }, - - -- Note that the name property shown in xprop might be set slightly after creation of the client - -- and the name shown there might not match defined rules here. - name = { - "Friends List", - "infinitefusion", -- Pokémon Infinite Fusion - "Picture-in-picture", - "review files to import", -- Hydrus import window - "Spotify", - "Calculator", - "Steam Games List" - }, - role = { - "AlarmWindow", -- Thunderbird's calendar. - "ConfigManager", -- Thunderbird's about:config. - "pop-up", -- e.g. Google Chrome's (detached) Developer Tools. - } - }, - properties = { - floating = true - } - }, - - -- Add titlebars to normal clients and dialogs - { rule_any = { - type = { "normal", "dialog" } - }, - properties = { - titlebars_enabled = false - } - }, - - -- Set Firefox to always map on the tag named "2" on screen 1. - -- { rule = { class = "Firefox" }, - -- properties = { screen = 1, tag = "2" } }, - - } - - return rules -end - --- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - -return setmetatable({}, { __call = function(_, ...) return _M.get(...) end }) diff --git a/awesome/main/signals.lua b/awesome/main/signals.lua deleted file mode 100644 index 992d82e..0000000 --- a/awesome/main/signals.lua +++ /dev/null @@ -1,35 +0,0 @@ ---- awesome stdlib -local gears = require("gears") -local awful = require("awful") ---- widget and layout lib -local wibox = require("wibox") ---- theme lib -local beautiful = require("beautiful") ---- custom local lib -require("deco.titlebar") - --- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - --- {{{ Signals --- Signal function to execute when a new client appears. -client.connect_signal("manage", function (c) - -- Set the windows at the slave, - -- 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 awesome.startup - and not c.size_hints.user_position - and not c.size_hints.program_position then - -- Prevent clients from being unreachable after screen count changes. - awful.placement.no_offscreen(c) - end -end) - --- Enable sloppy focus, so that focus follows mouse. -client.connect_signal("mouse::enter", function(c) - c:emit_signal("request::activate", "mouse_enter", {raise = false}) -end) - -client.connect_signal("focus", function(c) c.border_color = beautiful.border_focus end) -client.connect_signal("unfocus", function(c) c.border_color = beautiful.border_normal end) --- }}} diff --git a/awesome/main/startup.lua b/awesome/main/startup.lua deleted file mode 100644 index 043e9cd..0000000 --- a/awesome/main/startup.lua +++ /dev/null @@ -1,7 +0,0 @@ -local awful = require("awful") - -awful.spawn.single_instance("picom --config /home/nu/.config/picom/picom.conf") ---- TODO: fix reloads spawning an additional instance of caffeine ---- adding `killall -9 caffeine-ng` before doesn't work for some reason? ---- awful.spawn.single_instance("caffeine") -awful.spawn.single_instance("ibus-daemon -drxR") \ No newline at end of file diff --git a/awesome/main/tags.lua b/awesome/main/tags.lua deleted file mode 100644 index 9e3f807..0000000 --- a/awesome/main/tags.lua +++ /dev/null @@ -1,25 +0,0 @@ --- Standard awesome library -local awful = require("awful") - -local _M = {} - --- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - -function _M.get () - local tags = {} - - awful.tag.add("1", - { layout = awful.layout.suit.floating, }) - - awful.tag.add("2", - { layout = awful.layout.suit.floating, }) - - awful.tag.add("3", - { layout = awful.layout.suit.floating, }) - - return tags -end - --- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - -return setmetatable({}, { __call = function(_, ...) return _M.get(...) end }) diff --git a/awesome/main/user_vars.lua b/awesome/main/user_vars.lua deleted file mode 100644 index cdac120..0000000 --- a/awesome/main/user_vars.lua +++ /dev/null @@ -1,9 +0,0 @@ -local home = os.getenv("HOME") - -local _M = { - terminal = "alacritty", - file_manager = "Thunar", - modkey = "Mod4" -} - -return _M diff --git a/awesome/rc.lua b/awesome/rc.lua deleted file mode 100644 index 3f66e90..0000000 --- a/awesome/rc.lua +++ /dev/null @@ -1,87 +0,0 @@ ------- includes ---- enable luarocks if installed -pcall(require, "luarocks.loader") ---- awesome stdlib -local gears = require("gears") -local awful = require("awful") ---- theme lib -local beautiful = require("beautiful") ---- other awesome libs -local menubar = require("menubar") - -RC = {} -- global namespace, on top before require any modules -RC.vars = require("main.user_vars") ------------------------------------------- ------- error handling -require("main.errors") - ------- theme stuff -local themename = "spacestation" -local style = { - vars = require("themes." .. themename .. ".vars") -} -beautiful.init("~/.config/awesome/themes/" .. themename .. "/theme.lua") -beautiful.wallpaper = style.vars.wallpaper - -------- custom Local Library ---- main -local main = { - layouts = require("main.layouts"), - tags = require("main.tags" ), - menu = require("main.menu" ), - rules = require("main.rules" ) -} - ---- keybindings and mouse buttons -local bindings = { - global_keys = require("bindings.keys.global" ), - tags = require("bindings.keys.tags" ), - client_keys = require("bindings.keys.client" ), - global_buttons = require("bindings.mouse.global"), - client_buttons = require("bindings.mouse.client") -} - -modkey = RC.vars.modkey - ------- layouts -RC.layouts = main.layouts() ------- tags -RC.tags = main.tags() ------- menu -RC.mainmenu = awful.menu({ items = main.menu() }) -- in globalkeys - ---- a variable needed in statusbar (helper) -RC.launcher = awful.widget.launcher( - { image = beautiful.awesome_icon, menu = RC.mainmenu } -) - ------- menubar config -menubar.utils.terminal = RC.vars.terminal - ------- enable keybindings and mouse buttons -RC.global_keys = bindings.global_keys() -RC.global_keys = bindings.tags(RC.global_keys) - ------- set root -root.buttons(bindings.global_buttons()) -root.keys(RC.global_keys) - ------- keyboard layout indicator ---- * since i use ibus, i don't know if this does anything? -mykeyboardlayout = awful.widget.keyboardlayout() - ------- statusbar -require("themes."..themename..".statusbar") - ------- rules ---- rules to apply to new clients -awful.rules.rules = main.rules( - bindings.client_keys(), - bindings.client_buttons() -) - ------- signals -require("main.signals") - ------- startup -require("main.startup") \ No newline at end of file diff --git a/awesome/themes/neo/statusbar.lua b/awesome/themes/neo/statusbar.lua deleted file mode 100644 index 14615eb..0000000 --- a/awesome/themes/neo/statusbar.lua +++ /dev/null @@ -1,84 +0,0 @@ --- Standard awesome library -local gears = require("gears") -local awful = require("awful") - --- Wibox handling library -local wibox = require("wibox") - --- Custom Local Library: Common Functional Decoration -local deco = { - wallpaper = require("deco.wallpaper"), - taglist = require("deco.taglist"), - tasklist = require("deco.tasklist"), - borders = require("deco.borders") -} - -local taglist_buttons = deco.taglist() -local tasklist_buttons = deco.tasklist() - -local _M = {} - --- Custom Local Library: widgets -local volume_widget = require('awesome-wm-widgets.pactl-widget.volume') - --- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - --- Create a textclock widget -text_clock = wibox.widget.textclock('%l:%M %p :: %b. %e, %Y ') - -awful.screen.connect_for_each_screen(function(s) - -- Wallpaper - set_wallpaper(s) - - -- Create a promptbox for each screen - s.mypromptbox = awful.widget.prompt() - - -- Create an imagebox widget which will contain an icon indicating which layout we're using. - -- We need one layoutbox per screen. - s.mylayoutbox = awful.widget.layoutbox(s) - s.mylayoutbox:buttons(gears.table.join( - awful.button({ }, 1, function () awful.layout.inc( 1) end), - awful.button({ }, 3, function () awful.layout.inc(-1) end), - awful.button({ }, 4, function () awful.layout.inc( 1) end), - awful.button({ }, 5, function () awful.layout.inc(-1) end) - )) - - -- Create a taglist widget - s.mytaglist = awful.widget.taglist { - screen = s, - filter = awful.widget.taglist.filter.all, - buttons = taglist_buttons - } - - -- Create a tasklist widget - s.mytasklist = awful.widget.tasklist { - screen = s, - filter = awful.widget.tasklist.filter.currenttags, - buttons = tasklist_buttons - } - - -- Create the wibox - s.mywibox = awful.wibar({ position = "top", screen = s, height = 25 }) - - -- Add widgets to the wibox - s.mywibox:setup { - layout = wibox.layout.align.horizontal, - { -- Left widgets - layout = wibox.layout.fixed.horizontal, --- RC.launcher, - s.mytaglist, - s.mypromptbox, - }, - s.mytasklist, -- Middle widget - { -- Right widgets - layout = wibox.layout.fixed.horizontal, - wibox.widget.systray(), - volume_widget{ - widget_type = 'arc', - tooltip = 'true' - }, - text_clock, - s.mylayoutbox - }, - } -end) diff --git a/awesome/themes/neo/theme.lua b/awesome/themes/neo/theme.lua deleted file mode 100644 index 672b570..0000000 --- a/awesome/themes/neo/theme.lua +++ /dev/null @@ -1,153 +0,0 @@ ------------------------------- ---- spacestation - ngoomie --- ------------------------------- - -local theme_assets = require("beautiful.theme_assets") -local xresources = require("beautiful.xresources") -local dpi = xresources.apply_dpi - -local gfs = require("gears.filesystem") -local themes_path = gfs.get_themes_dir() - -local theme = { - color = { - transparent = "#00000000", - dark = "#3b3b3b", - white = "#fbfbfb", - black = "#191919", - }, - fonts = { - main = "Noto Sans CJK JP " - } -} - -theme.font = theme.fonts.main .. "Medium 9" - -theme.bg_normal = theme.color.dark .. "70" -theme.bg_focus = theme.color.white -theme.bg_urgent = theme.color.dark -theme.bg_minimize = theme.color.transparent -theme.bg_systray = theme.color.transparent - -theme.fg_normal = theme.color.white -theme.fg_focus = theme.color.black -theme.fg_urgent = theme.color.white -theme.fg_minimize = theme.color.white - -theme.border_width = 0 -theme.border_normal = theme.color.dark -theme.border_focus = theme.color.dark -theme.border_marked = theme.color.dark - -theme.notification_font = theme.fonts.main .. "10" - -theme.notification_bg = theme.bg_normal -theme.notification_fg = theme.fg_normal -theme.notification_border_color = theme.border_normal - -theme.tooltip_fg_color = theme.color.white -theme.tooltip_bg_color = theme.color.dark .. 38 -theme.tooltip_border_color = theme.color.dark - -theme.prompt_bg = theme.bg_normal - -theme.tasklist_bg_normal = theme.bg_minimize - --- There are other variable sets --- overriding the default one when --- defined, the sets are: --- taglist_[bg|fg]_[focus|urgent|occupied|empty|volatile] --- tasklist_[bg|fg]_[focus|urgent] --- titlebar_[bg|fg]_[normal|focus] --- tooltip_[font|opacity|fg_color|bg_color|border_width|border_color] --- mouse_finder_[color|timeout|animate_timeout|radius|factor] --- prompt_[fg|bg|fg_cursor|bg_cursor|font] --- hotkeys_[bg|fg|border_width|border_color|shape|opacity|modifiers_fg|label_bg|label_fg|group_margin|font|description_font] --- Example: ---theme.taglist_bg_focus = "#ff0000" - --- Generate taglist squares: -local taglist_square_size = dpi(4) -theme.taglist_squares_sel = theme_assets.taglist_squares_sel( - taglist_square_size, theme.fg_normal -) -theme.taglist_squares_unsel = theme_assets.taglist_squares_unsel( - taglist_square_size, theme.fg_normal -) - --- Variables set for theming notifications: --- notification_font --- notification_[bg|fg] --- notification_[width|height|margin] --- notification_[border_color|border_width|shape|opacity] - --- Variables set for theming the menu: --- menu_[bg|fg]_[normal|focus] --- menu_[border_color|border_width] -theme.menu_submenu_icon = themes_path.."default/submenu.png" -theme.menu_height = dpi(17) -theme.menu_width = dpi(100) -theme.menu_bg_normal = theme.bg_normal -theme.menu_bg_focus = theme.bg_focus -theme.menu_border_color = theme.fg_normal - --- You can add as many variables as --- you wish and access them by using --- beautiful.variable in your rc.lua ---theme.bg_widget = "#cc0000" - --- Define the image to load -theme.titlebar_close_button_normal = themes_path.."default/titlebar/close_normal.png" -theme.titlebar_close_button_focus = themes_path.."default/titlebar/close_focus.png" - -theme.titlebar_minimize_button_normal = themes_path.."default/titlebar/minimize_normal.png" -theme.titlebar_minimize_button_focus = themes_path.."default/titlebar/minimize_focus.png" - -theme.titlebar_ontop_button_normal_inactive = themes_path.."default/titlebar/ontop_normal_inactive.png" -theme.titlebar_ontop_button_focus_inactive = themes_path.."default/titlebar/ontop_focus_inactive.png" -theme.titlebar_ontop_button_normal_active = themes_path.."default/titlebar/ontop_normal_active.png" -theme.titlebar_ontop_button_focus_active = themes_path.."default/titlebar/ontop_focus_active.png" - -theme.titlebar_sticky_button_normal_inactive = themes_path.."default/titlebar/sticky_normal_inactive.png" -theme.titlebar_sticky_button_focus_inactive = themes_path.."default/titlebar/sticky_focus_inactive.png" -theme.titlebar_sticky_button_normal_active = themes_path.."default/titlebar/sticky_normal_active.png" -theme.titlebar_sticky_button_focus_active = themes_path.."default/titlebar/sticky_focus_active.png" - -theme.titlebar_floating_button_normal_inactive = themes_path.."default/titlebar/floating_normal_inactive.png" -theme.titlebar_floating_button_focus_inactive = themes_path.."default/titlebar/floating_focus_inactive.png" -theme.titlebar_floating_button_normal_active = themes_path.."default/titlebar/floating_normal_active.png" -theme.titlebar_floating_button_focus_active = themes_path.."default/titlebar/floating_focus_active.png" - -theme.titlebar_maximized_button_normal_inactive = themes_path.."default/titlebar/maximized_normal_inactive.png" -theme.titlebar_maximized_button_focus_inactive = themes_path.."default/titlebar/maximized_focus_inactive.png" -theme.titlebar_maximized_button_normal_active = themes_path.."default/titlebar/maximized_normal_active.png" -theme.titlebar_maximized_button_focus_active = themes_path.."default/titlebar/maximized_focus_active.png" - --- You can use your own layout icons like this: -theme.layout_fairh = themes_path.."default/layouts/fairhw.png" -theme.layout_fairv = themes_path.."default/layouts/fairvw.png" -theme.layout_floating = themes_path.."default/layouts/floatingw.png" -theme.layout_magnifier = themes_path.."default/layouts/magnifierw.png" -theme.layout_max = themes_path.."default/layouts/maxw.png" -theme.layout_fullscreen = themes_path.."default/layouts/fullscreenw.png" -theme.layout_tilebottom = themes_path.."default/layouts/tilebottomw.png" -theme.layout_tileleft = themes_path.."default/layouts/tileleftw.png" -theme.layout_tile = themes_path.."default/layouts/tilew.png" -theme.layout_tiletop = themes_path.."default/layouts/tiletopw.png" -theme.layout_spiral = themes_path.."default/layouts/spiralw.png" -theme.layout_dwindle = themes_path.."default/layouts/dwindlew.png" -theme.layout_cornernw = themes_path.."default/layouts/cornernww.png" -theme.layout_cornerne = themes_path.."default/layouts/cornernew.png" -theme.layout_cornersw = themes_path.."default/layouts/cornersww.png" -theme.layout_cornerse = themes_path.."default/layouts/cornersew.png" - --- Generate Awesome icon: -theme.awesome_icon = theme_assets.awesome_icon( - theme.menu_height, theme.bg_focus, theme.fg_focus -) - --- Define the icon theme for application icons. If not set then the icons --- from /usr/share/icons and /usr/share/icons/hicolor will be used. -theme.icon_theme = nil - -return theme diff --git a/awesome/themes/neo/vars.lua b/awesome/themes/neo/vars.lua deleted file mode 100644 index b3f74bf..0000000 --- a/awesome/themes/neo/vars.lua +++ /dev/null @@ -1,5 +0,0 @@ -local _M = { - wallpaper = "/usr/share/backgrounds/custom/space_station.jpg" -} - -return _M \ No newline at end of file diff --git a/awesome/themes/spacestation/layouts/cornerne.png b/awesome/themes/spacestation/layouts/cornerne.png deleted file mode 100644 index c85bd56..0000000 Binary files a/awesome/themes/spacestation/layouts/cornerne.png and /dev/null differ diff --git a/awesome/themes/spacestation/layouts/cornernew.png b/awesome/themes/spacestation/layouts/cornernew.png deleted file mode 100644 index c3fd986..0000000 Binary files a/awesome/themes/spacestation/layouts/cornernew.png and /dev/null differ diff --git a/awesome/themes/spacestation/layouts/cornernw.png b/awesome/themes/spacestation/layouts/cornernw.png deleted file mode 100644 index dfe78b3..0000000 Binary files a/awesome/themes/spacestation/layouts/cornernw.png and /dev/null differ diff --git a/awesome/themes/spacestation/layouts/cornernww.png b/awesome/themes/spacestation/layouts/cornernww.png deleted file mode 100644 index f489010..0000000 Binary files a/awesome/themes/spacestation/layouts/cornernww.png and /dev/null differ diff --git a/awesome/themes/spacestation/layouts/cornerse.png b/awesome/themes/spacestation/layouts/cornerse.png deleted file mode 100644 index 023ae79..0000000 Binary files a/awesome/themes/spacestation/layouts/cornerse.png and /dev/null differ diff --git a/awesome/themes/spacestation/layouts/cornersew.png b/awesome/themes/spacestation/layouts/cornersew.png deleted file mode 100644 index f7cfa1c..0000000 Binary files a/awesome/themes/spacestation/layouts/cornersew.png and /dev/null differ diff --git a/awesome/themes/spacestation/layouts/cornersw.png b/awesome/themes/spacestation/layouts/cornersw.png deleted file mode 100644 index c1453c9..0000000 Binary files a/awesome/themes/spacestation/layouts/cornersw.png and /dev/null differ diff --git a/awesome/themes/spacestation/layouts/cornersww.png b/awesome/themes/spacestation/layouts/cornersww.png deleted file mode 100644 index a65a043..0000000 Binary files a/awesome/themes/spacestation/layouts/cornersww.png and /dev/null differ diff --git a/awesome/themes/spacestation/layouts/dwindle.png b/awesome/themes/spacestation/layouts/dwindle.png deleted file mode 100644 index 9902d22..0000000 Binary files a/awesome/themes/spacestation/layouts/dwindle.png and /dev/null differ diff --git a/awesome/themes/spacestation/layouts/dwindlew.png b/awesome/themes/spacestation/layouts/dwindlew.png deleted file mode 100644 index 9199049..0000000 Binary files a/awesome/themes/spacestation/layouts/dwindlew.png and /dev/null differ diff --git a/awesome/themes/spacestation/layouts/fairh.png b/awesome/themes/spacestation/layouts/fairh.png deleted file mode 100644 index d41deea..0000000 Binary files a/awesome/themes/spacestation/layouts/fairh.png and /dev/null differ diff --git a/awesome/themes/spacestation/layouts/fairhw.png b/awesome/themes/spacestation/layouts/fairhw.png deleted file mode 100644 index bb50e3a..0000000 Binary files a/awesome/themes/spacestation/layouts/fairhw.png and /dev/null differ diff --git a/awesome/themes/spacestation/layouts/fairv.png b/awesome/themes/spacestation/layouts/fairv.png deleted file mode 100644 index f5f0288..0000000 Binary files a/awesome/themes/spacestation/layouts/fairv.png and /dev/null differ diff --git a/awesome/themes/spacestation/layouts/fairvw.png b/awesome/themes/spacestation/layouts/fairvw.png deleted file mode 100644 index 4f4ed52..0000000 Binary files a/awesome/themes/spacestation/layouts/fairvw.png and /dev/null differ diff --git a/awesome/themes/spacestation/layouts/floating.png b/awesome/themes/spacestation/layouts/floating.png deleted file mode 100644 index b8061a0..0000000 Binary files a/awesome/themes/spacestation/layouts/floating.png and /dev/null differ diff --git a/awesome/themes/spacestation/layouts/floatingw.png b/awesome/themes/spacestation/layouts/floatingw.png deleted file mode 100644 index 4815894..0000000 Binary files a/awesome/themes/spacestation/layouts/floatingw.png and /dev/null differ diff --git a/awesome/themes/spacestation/layouts/fullscreen.png b/awesome/themes/spacestation/layouts/fullscreen.png deleted file mode 100644 index d02f6fc..0000000 Binary files a/awesome/themes/spacestation/layouts/fullscreen.png and /dev/null differ diff --git a/awesome/themes/spacestation/layouts/fullscreenw.png b/awesome/themes/spacestation/layouts/fullscreenw.png deleted file mode 100644 index 5c35bfa..0000000 Binary files a/awesome/themes/spacestation/layouts/fullscreenw.png and /dev/null differ diff --git a/awesome/themes/spacestation/layouts/magnifier.png b/awesome/themes/spacestation/layouts/magnifier.png deleted file mode 100644 index 2925414..0000000 Binary files a/awesome/themes/spacestation/layouts/magnifier.png and /dev/null differ diff --git a/awesome/themes/spacestation/layouts/magnifierw.png b/awesome/themes/spacestation/layouts/magnifierw.png deleted file mode 100644 index 6209556..0000000 Binary files a/awesome/themes/spacestation/layouts/magnifierw.png and /dev/null differ diff --git a/awesome/themes/spacestation/layouts/max.png b/awesome/themes/spacestation/layouts/max.png deleted file mode 100644 index 8d20844..0000000 Binary files a/awesome/themes/spacestation/layouts/max.png and /dev/null differ diff --git a/awesome/themes/spacestation/layouts/maxw.png b/awesome/themes/spacestation/layouts/maxw.png deleted file mode 100644 index 85f5ce3..0000000 Binary files a/awesome/themes/spacestation/layouts/maxw.png and /dev/null differ diff --git a/awesome/themes/spacestation/layouts/spiral.png b/awesome/themes/spacestation/layouts/spiral.png deleted file mode 100644 index d9434be..0000000 Binary files a/awesome/themes/spacestation/layouts/spiral.png and /dev/null differ diff --git a/awesome/themes/spacestation/layouts/spiralw.png b/awesome/themes/spacestation/layouts/spiralw.png deleted file mode 100644 index b78dd86..0000000 Binary files a/awesome/themes/spacestation/layouts/spiralw.png and /dev/null differ diff --git a/awesome/themes/spacestation/layouts/tile.png b/awesome/themes/spacestation/layouts/tile.png deleted file mode 100644 index 3ede21e..0000000 Binary files a/awesome/themes/spacestation/layouts/tile.png and /dev/null differ diff --git a/awesome/themes/spacestation/layouts/tilebottom.png b/awesome/themes/spacestation/layouts/tilebottom.png deleted file mode 100644 index 6f8c257..0000000 Binary files a/awesome/themes/spacestation/layouts/tilebottom.png and /dev/null differ diff --git a/awesome/themes/spacestation/layouts/tilebottomw.png b/awesome/themes/spacestation/layouts/tilebottomw.png deleted file mode 100644 index a1de7b2..0000000 Binary files a/awesome/themes/spacestation/layouts/tilebottomw.png and /dev/null differ diff --git a/awesome/themes/spacestation/layouts/tileleft.png b/awesome/themes/spacestation/layouts/tileleft.png deleted file mode 100644 index 31d6870..0000000 Binary files a/awesome/themes/spacestation/layouts/tileleft.png and /dev/null differ diff --git a/awesome/themes/spacestation/layouts/tileleftw.png b/awesome/themes/spacestation/layouts/tileleftw.png deleted file mode 100644 index cf14c25..0000000 Binary files a/awesome/themes/spacestation/layouts/tileleftw.png and /dev/null differ diff --git a/awesome/themes/spacestation/layouts/tiletop.png b/awesome/themes/spacestation/layouts/tiletop.png deleted file mode 100644 index 98cade2..0000000 Binary files a/awesome/themes/spacestation/layouts/tiletop.png and /dev/null differ diff --git a/awesome/themes/spacestation/layouts/tiletopw.png b/awesome/themes/spacestation/layouts/tiletopw.png deleted file mode 100644 index d1d0872..0000000 Binary files a/awesome/themes/spacestation/layouts/tiletopw.png and /dev/null differ diff --git a/awesome/themes/spacestation/layouts/tilew.png b/awesome/themes/spacestation/layouts/tilew.png deleted file mode 100644 index fde2ca4..0000000 Binary files a/awesome/themes/spacestation/layouts/tilew.png and /dev/null differ diff --git a/awesome/themes/spacestation/statusbar.lua b/awesome/themes/spacestation/statusbar.lua deleted file mode 100644 index 77ecffa..0000000 --- a/awesome/themes/spacestation/statusbar.lua +++ /dev/null @@ -1,84 +0,0 @@ --- Standard awesome library -local gears = require("gears") -local awful = require("awful") - --- Wibox handling library -local wibox = require("wibox") - --- Custom Local Library: Common Functional Decoration -local deco = { - wallpaper = require("deco.wallpaper"), - taglist = require("deco.taglist"), - tasklist = require("deco.tasklist"), - borders = require("deco.borders") -} - -local taglist_buttons = deco.taglist() -local tasklist_buttons = deco.tasklist() - -local _M = {} - --- Custom Local Library: widgets -local volume_widget = require('awesome-wm-widgets.pactl-widget.volume') - --- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - --- Create a textclock widget -text_clock = wibox.widget.textclock('%l:%M %p ⁂ %a. %B %e, %Y ') - -awful.screen.connect_for_each_screen(function(s) - -- Wallpaper - set_wallpaper(s) - - -- Create a promptbox for each screen - s.mypromptbox = awful.widget.prompt() - - -- Create an imagebox widget which will contain an icon indicating which layout we're using. - -- We need one layoutbox per screen. - s.mylayoutbox = awful.widget.layoutbox(s) - s.mylayoutbox:buttons(gears.table.join( - awful.button({ }, 1, function () awful.layout.inc( 1) end), - awful.button({ }, 3, function () awful.layout.inc(-1) end), - awful.button({ }, 4, function () awful.layout.inc( 1) end), - awful.button({ }, 5, function () awful.layout.inc(-1) end) - )) - - -- Create a taglist widget - s.mytaglist = awful.widget.taglist { - screen = s, - filter = awful.widget.taglist.filter.all, - buttons = taglist_buttons - } - - -- Create a tasklist widget - s.mytasklist = awful.widget.tasklist { - screen = s, - filter = awful.widget.tasklist.filter.currenttags, - buttons = tasklist_buttons - } - - -- Create the wibox - s.mywibox = awful.wibar({ position = "top", screen = s, height = 24 }) - - -- Add widgets to the wibox - s.mywibox:setup { - layout = wibox.layout.align.horizontal, - { -- Left widgets - layout = wibox.layout.fixed.horizontal, --- RC.launcher, - s.mytaglist, - s.mypromptbox, - }, - s.mytasklist, -- Middle widget - { -- Right widgets - layout = wibox.layout.fixed.horizontal, - wibox.widget.systray(), - volume_widget{ - widget_type = 'arc', - tooltip = 'true' - }, - text_clock, - s.mylayoutbox - }, - } -end) \ No newline at end of file diff --git a/awesome/themes/spacestation/taglist/squarefw.png b/awesome/themes/spacestation/taglist/squarefw.png deleted file mode 100644 index 2a86430..0000000 Binary files a/awesome/themes/spacestation/taglist/squarefw.png and /dev/null differ diff --git a/awesome/themes/spacestation/taglist/squarew.png b/awesome/themes/spacestation/taglist/squarew.png deleted file mode 100644 index 913f2ca..0000000 Binary files a/awesome/themes/spacestation/taglist/squarew.png and /dev/null differ diff --git a/awesome/themes/spacestation/titlebar/close_focus.png b/awesome/themes/spacestation/titlebar/close_focus.png deleted file mode 100644 index 01ef825..0000000 Binary files a/awesome/themes/spacestation/titlebar/close_focus.png and /dev/null differ diff --git a/awesome/themes/spacestation/titlebar/close_normal.png b/awesome/themes/spacestation/titlebar/close_normal.png deleted file mode 100644 index 5448ed8..0000000 Binary files a/awesome/themes/spacestation/titlebar/close_normal.png and /dev/null differ diff --git a/awesome/themes/spacestation/titlebar/floating_focus_active.png b/awesome/themes/spacestation/titlebar/floating_focus_active.png deleted file mode 100644 index 82dcc7c..0000000 Binary files a/awesome/themes/spacestation/titlebar/floating_focus_active.png and /dev/null differ diff --git a/awesome/themes/spacestation/titlebar/floating_focus_inactive.png b/awesome/themes/spacestation/titlebar/floating_focus_inactive.png deleted file mode 100644 index c19ba80..0000000 Binary files a/awesome/themes/spacestation/titlebar/floating_focus_inactive.png and /dev/null differ diff --git a/awesome/themes/spacestation/titlebar/floating_normal_active.png b/awesome/themes/spacestation/titlebar/floating_normal_active.png deleted file mode 100644 index 62342d1..0000000 Binary files a/awesome/themes/spacestation/titlebar/floating_normal_active.png and /dev/null differ diff --git a/awesome/themes/spacestation/titlebar/floating_normal_inactive.png b/awesome/themes/spacestation/titlebar/floating_normal_inactive.png deleted file mode 100644 index e2bbdfa..0000000 Binary files a/awesome/themes/spacestation/titlebar/floating_normal_inactive.png and /dev/null differ diff --git a/awesome/themes/spacestation/titlebar/maximized_focus_active.png b/awesome/themes/spacestation/titlebar/maximized_focus_active.png deleted file mode 100644 index d7dffd7..0000000 Binary files a/awesome/themes/spacestation/titlebar/maximized_focus_active.png and /dev/null differ diff --git a/awesome/themes/spacestation/titlebar/maximized_focus_inactive.png b/awesome/themes/spacestation/titlebar/maximized_focus_inactive.png deleted file mode 100644 index 844389f..0000000 Binary files a/awesome/themes/spacestation/titlebar/maximized_focus_inactive.png and /dev/null differ diff --git a/awesome/themes/spacestation/titlebar/maximized_normal_active.png b/awesome/themes/spacestation/titlebar/maximized_normal_active.png deleted file mode 100644 index a705f81..0000000 Binary files a/awesome/themes/spacestation/titlebar/maximized_normal_active.png and /dev/null differ diff --git a/awesome/themes/spacestation/titlebar/maximized_normal_inactive.png b/awesome/themes/spacestation/titlebar/maximized_normal_inactive.png deleted file mode 100644 index 4c1ab1f..0000000 Binary files a/awesome/themes/spacestation/titlebar/maximized_normal_inactive.png and /dev/null differ diff --git a/awesome/themes/spacestation/titlebar/ontop_focus_active.png b/awesome/themes/spacestation/titlebar/ontop_focus_active.png deleted file mode 100644 index 312c00b..0000000 Binary files a/awesome/themes/spacestation/titlebar/ontop_focus_active.png and /dev/null differ diff --git a/awesome/themes/spacestation/titlebar/ontop_focus_inactive.png b/awesome/themes/spacestation/titlebar/ontop_focus_inactive.png deleted file mode 100644 index a48e1c5..0000000 Binary files a/awesome/themes/spacestation/titlebar/ontop_focus_inactive.png and /dev/null differ diff --git a/awesome/themes/spacestation/titlebar/ontop_normal_active.png b/awesome/themes/spacestation/titlebar/ontop_normal_active.png deleted file mode 100644 index 117a203..0000000 Binary files a/awesome/themes/spacestation/titlebar/ontop_normal_active.png and /dev/null differ diff --git a/awesome/themes/spacestation/titlebar/ontop_normal_inactive.png b/awesome/themes/spacestation/titlebar/ontop_normal_inactive.png deleted file mode 100644 index d3a10c8..0000000 Binary files a/awesome/themes/spacestation/titlebar/ontop_normal_inactive.png and /dev/null differ diff --git a/awesome/themes/spacestation/titlebar/sticky_focus_active.png b/awesome/themes/spacestation/titlebar/sticky_focus_active.png deleted file mode 100644 index 814499b..0000000 Binary files a/awesome/themes/spacestation/titlebar/sticky_focus_active.png and /dev/null differ diff --git a/awesome/themes/spacestation/titlebar/sticky_focus_inactive.png b/awesome/themes/spacestation/titlebar/sticky_focus_inactive.png deleted file mode 100644 index 21b000d..0000000 Binary files a/awesome/themes/spacestation/titlebar/sticky_focus_inactive.png and /dev/null differ diff --git a/awesome/themes/spacestation/titlebar/sticky_normal_active.png b/awesome/themes/spacestation/titlebar/sticky_normal_active.png deleted file mode 100644 index bdb5595..0000000 Binary files a/awesome/themes/spacestation/titlebar/sticky_normal_active.png and /dev/null differ diff --git a/awesome/themes/spacestation/titlebar/sticky_normal_inactive.png b/awesome/themes/spacestation/titlebar/sticky_normal_inactive.png deleted file mode 100644 index a96b9b1..0000000 Binary files a/awesome/themes/spacestation/titlebar/sticky_normal_inactive.png and /dev/null differ diff --git a/awesome/themes/spacestation/vars.lua b/awesome/themes/spacestation/vars.lua deleted file mode 100644 index b3f74bf..0000000 --- a/awesome/themes/spacestation/vars.lua +++ /dev/null @@ -1,5 +0,0 @@ -local _M = { - wallpaper = "/usr/share/backgrounds/custom/space_station.jpg" -} - -return _M \ No newline at end of file diff --git a/discord/data/stable/custom.scss b/discord/data/stable/custom.scss deleted file mode 100644 index 5627d1c..0000000 --- a/discord/data/stable/custom.scss +++ /dev/null @@ -1,52 +0,0 @@ -// --- hide nitro and other nonsense -// -- "Send a gift!" chat window button -button[aria-label="Send a gift"], -// -- literally any super reacts ever, hopefully -div.reactionInner__4135b[aria-label*="press to super react"], -// -- stuff encouraging buying avatar frames -.container_d6bff4, -// -- hide "select avatar decoration" in profile edit -div.sectionsContainer_a37883 > div.customizationSection__16fec:nth-child(4), -// -- hide "change profile effect" -div.sectionsContainer_a37883 > div.customizationSection__16fec:nth-child(5), -// -- hide "try out nitro!" -div.tryItOutSection__0f9fb { - display: none; - width: 0; - height: 0; -} - -// --- hide other shit i find annoying -// -- snowsgiving snow animation and etc on DMs button -.childWrapper__01b9c:before, .childWrapper__01b9c:after { - background-image: none !important; - animation: none !important; -} -// --- SQUARE ICONS -// -- border radius vars -$small: 4px; -$medium: $small; -$large: 6px; - -// -- clear mask that makes icons round in various spots -foreignObject[mask*="url(#"] { - mask: none; - //! SIDENOTE: while this removes the rounding, it also removes any cutout for the status icon. i'm going to be frank and say i think this looks like shit. i will look into crafting my own SVG instead at some point if i can, as an alternative to just entirely clearing it (but i'll still be using border rads for custom icon rounding) - //! NOTE 2: check the SVG masks for avatar frames! they might help -} - -// -- now apply border rads -// - user list icons (DM list, server member list) -.wrapper_edb6e0 svg foreignObject { - border-radius: $small; -} - -// - user icons in chat -.avatar__08316 { - border-radius: $medium; -} - -// - profile modal icons -.clickable__35918 svg foreignObject { - border-radius: $large; -} \ No newline at end of file diff --git a/discord/data/stable/settings.json b/discord/data/stable/settings.json deleted file mode 100644 index 94080c4..0000000 --- a/discord/data/stable/settings.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "general": { - "voiceDisconnect": false, - "showToasts": true, - "mediaKeys": true - }, - "addons": { - "addonErrors": true, - "editAction": "detached" - }, - "customcss": { - "customcss": true, - "liveUpdate": true, - "openAction": "system" - }, - "editor": { - "lineNumbers": true, - "minimap": true, - "hover": true, - "quickSuggestions": true, - "fontSize": 14, - "renderWhitespace": "selection" - }, - "window": { - "transparency": false, - "removeMinimumSize": true, - "frame": false - }, - "developer": { - "debugLogs": false, - "devTools": true, - "debuggerHotkey": false, - "reactDevTools": false, - "inspectElement": true, - "devToolsWarning": true - } -} \ No newline at end of file diff --git a/discord/plugins/CollapsibleUI.config.json b/discord/plugins/CollapsibleUI.config.json deleted file mode 100644 index 1d1ba3f..0000000 --- a/discord/plugins/CollapsibleUI.config.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "currentVersionInfo": { - "version": "7.4.2", - "hasShownChangelog": true - }, - "cuiSettingsVersion": "10", - "disableTransitions": "false", - "transitionSpeed": "250", - "disableToolbarCollapse": "false", - "disableSettingsCollapse": "false", - "disableMsgBarBtnCollapse": "false", - "enableFullToolbarCollapse": "false", - "dynamicUncollapse": "true", - "dynamicUncollapseDistance": "30,30,30,30,30,30,30,30", - "dynamicUncollapseCloseDistance": "30,30,30,30,30,30,30,30", - "dynamicUncollapseDelay": "15", - "autoCollapse": "true", - "autoCollapseThreshold": "500,600,400,200,1200,300,550,0", - "conditionalAutoCollapse": "false", - "autoCollapseConditionals": ",,,,,,,", - "resizableChannelList": "true", - "resizableMembersList": "true", - "channelListWidth": "0", - "buttonsOrder": "1,2,4,6,7,3,5,8", - "dynamicUncollapseEnabled": "true,true,true,true,false,true,true,false", - "disabledButtonsStayCollapsed": "true", - "keyBindsEnabled": "true", - "keyStringList": "Alt+S,Alt+C,Alt+T,Alt+W,Alt+M,Alt+U,Alt+P,Alt+I", - "settingsButtonsMaxWidth": "100", - "messageBarButtonsMaxWidth": "200", - "messageBarButtonsMinWidth": "40", - "toolbarIconMaxWidth": "300", - "profilePanelMaxWidth": "0", - "toolbarMaxWidth": "800", - "userAreaMaxHeight": "300", - "msgBarMaxHeight": "400", - "windowBarHeight": "18", - "collapsedDistance": "0", - "buttonCollapseFudgeFactor": "10", - "serverListButtonActive": "true", - "channelListButtonActive": "true", - "msgBarButtonActive": "true", - "userAreaButtonActive": "true", - "profilePanelButtonActive": "false", - "membersListButtonActive": "false", - "callContainerButtonActive": "true" -} \ No newline at end of file diff --git a/firefox/Addons/uBlacklist/Subscriptions.json.part b/firefox/Addons/uBlacklist/Subscriptions.json.part deleted file mode 100644 index ae7869e..0000000 --- a/firefox/Addons/uBlacklist/Subscriptions.json.part +++ /dev/null @@ -1,32 +0,0 @@ -"subscriptions": [ - { - "name": "uBlacklist GitHub Translation", - "url": "https://github.com/arosh/ublacklist-github-translation", - "enabled": true - }, - { - "name": "uBlacklist Stack Overflow Translation", - "url": "https://github.com/arosh/ublacklist-stackoverflow-translation", - "enabled": true - }, - { - "name": "ublacklist-pinterest", - "url": "https://github.com/rjaus/ublacklist-pinterest", - "enabled": true - }, - { - "name": "uBlacklistRule", - "url": "https://github.com/ncaq/uBlacklistRule", - "enabled": true - }, - { - "name": "StopModRepost", - "url": "https://api.stopmodreposts.org/minecraft/ublacklist.txt", - "enabled": true - }, - { - "name": "uBlacklistFandomWikis", - "url": "https://git.32bit.cafe/nu/uBlacklistFandomWikis/raw/branch/main/ublacklist-fandom.txt", - "enabled": true - } - ] \ No newline at end of file diff --git a/fish/init.fish b/fish/init.fish deleted file mode 100644 index 356cdc7..0000000 --- a/fish/init.fish +++ /dev/null @@ -1,13 +0,0 @@ -## kawasaki theme settings -# use kawasaki env prompt -set -x VIRTUAL_ENV_DISABLE_PROMPT 1 -# other -set -g theme_display_group no -set -g theme_display_virtualenv yes -set -g theme_display_time yes - -# Perl -set -xg DBIC_TRACE 1 - -# MangoHud -set -xg MANGOHUD_CONFIGFILE /home/nu/.mangohud \ No newline at end of file diff --git a/fish/theme b/fish/theme deleted file mode 100644 index 5597cc8..0000000 --- a/fish/theme +++ /dev/null @@ -1 +0,0 @@ -kawasaki diff --git a/linkdir-sequoia.pl b/linkdir-sequoia.pl new file mode 100755 index 0000000..269e4d0 --- /dev/null +++ b/linkdir-sequoia.pl @@ -0,0 +1,33 @@ +#!/usr/bin/env perl + +if ($< != 0) { die "Can't link dirs. Please re-run as root." } + +my $conf = + "/home/nu/.config/"; +my $git = + "/mnt/Storage/Programming/dotfiles/(sequoia)/"; + +my %confDirs = ( +# `.conf` dir -> git repo dir + "alacritty" => "alacritty", + "awesome" => "awesome", + "picom" => "picom", +# "rofi" => "rofi", +# "Thunar" => "thunar", + "environment.d" => "environment.d" +); +#my %otherDirs = ( +# "/home/nu/.var/app/com.discordapp.Discord/config/BetterDiscord/" +# => "discord" +#); + +# mount from %confDirs +while (my ($key, $value) = each %confDirs) { + `mount --bind "/home/nu/.config\/$key" "$git$value"` +} +# mount from %otherDirs +#while (my ($key, $value) = each %otherDirs) { +# `mount --bind "$key" "$git$value"` +#} + +print("Done!\n"); diff --git a/linkdir.pl b/linkdir.pl deleted file mode 100755 index 89ba64e..0000000 --- a/linkdir.pl +++ /dev/null @@ -1,34 +0,0 @@ -#!/usr/bin/env perl - -if ($< != 0) { die "Can't link dirs. Please re-run as root." } - -my $conf = - "/home/nu/.config/"; -my $git = - "/mnt/Storage/(500) Programming/598.\ Groups\ of\ smaller\ projects/dotfiles/"; - -my %confDirs = ( -# `.conf` dir -> git repo dir - "alacritty" => "alacritty", - "awesome" => "awesome", - "omf" => "fish", - "picom" => "picom", - "rofi" => "rofi", - "Thunar" => "thunar", - "polybar" => "polybar" -); -my %otherDirs = ( - "/home/nu/.var/app/com.discordapp.Discord/config/BetterDiscord/" - => "discord" -); - -# mount from %confDirs -while (my ($key, $value) = each %confDirs) { - `mount --bind "/home/nu/.config\/$key" "/mnt/Storage/(500) Programming/598. Groups of smaller projects/dotfiles\/$value"` -} -# mount from %otherDirs -while (my ($key, $value) = each %otherDirs) { - `mount --bind "$key" "/mnt/Storage/(500) Programming/598. Groups of smaller projects/dotfiles\/$value"` -} - -print("Done!"); \ No newline at end of file diff --git a/perl/.perltidyrc b/miscellany/.perltidyrc similarity index 100% rename from perl/.perltidyrc rename to miscellany/.perltidyrc diff --git a/polybar/config.ini b/polybar/config.ini deleted file mode 100644 index d407fe2..0000000 --- a/polybar/config.ini +++ /dev/null @@ -1,172 +0,0 @@ -;========================================================== -; -; -; ██████╗ ██████╗ ██╗ ██╗ ██╗██████╗ █████╗ ██████╗ -; ██╔══██╗██╔═══██╗██║ ╚██╗ ██╔╝██╔══██╗██╔══██╗██╔══██╗ -; ██████╔╝██║ ██║██║ ╚████╔╝ ██████╔╝███████║██████╔╝ -; ██╔═══╝ ██║ ██║██║ ╚██╔╝ ██╔══██╗██╔══██║██╔══██╗ -; ██║ ╚██████╔╝███████╗██║ ██████╔╝██║ ██║██║ ██║ -; ╚═╝ ╚═════╝ ╚══════╝╚═╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝ -; -; -; To learn more about how to configure Polybar -; go to https://github.com/polybar/polybar -; -; The README contains a lot of information -; -;========================================================== - -[colors] -background = #282A2E -background-alt = #373B41 -foreground = #C5C8C6 -primary = #F0C674 -secondary = #8ABEB7 -alert = #A54242 -disabled = #707880 - -[bar/example] -width = 100% -height = 24pt -radius = 6 - -; dpi = 96 - -background = ${colors.background} -foreground = ${colors.foreground} - -line-size = 3pt - -border-size = 4pt -border-color = #00000000 - -padding-left = 0 -padding-right = 1 - -module-margin = 1 - -separator = | -separator-foreground = ${colors.disabled} - -font-0 = monospace;2 - -modules-left = xworkspaces xwindow -modules-right = filesystem pulseaudio xkeyboard memory cpu wlan eth date - -cursor-click = pointer -cursor-scroll = ns-resize - -enable-ipc = true - -; tray-position = right - -; wm-restack = generic -; wm-restack = bspwm -; wm-restack = i3 - -; override-redirect = true - -[module/xworkspaces] -type = internal/xworkspaces - -label-active = %name% -label-active-background = ${colors.background-alt} -label-active-underline= ${colors.primary} -label-active-padding = 1 - -label-occupied = %name% -label-occupied-padding = 1 - -label-urgent = %name% -label-urgent-background = ${colors.alert} -label-urgent-padding = 1 - -label-empty = %name% -label-empty-foreground = ${colors.disabled} -label-empty-padding = 1 - -[module/xwindow] -type = internal/xwindow -label = %title:0:60:...% - -[module/filesystem] -type = internal/fs -interval = 25 - -mount-0 = / - -label-mounted = %{F#F0C674}%mountpoint%%{F-} %percentage_used%% - -label-unmounted = %mountpoint% not mounted -label-unmounted-foreground = ${colors.disabled} - -[module/pulseaudio] -type = internal/pulseaudio - -format-volume-prefix = "VOL " -format-volume-prefix-foreground = ${colors.primary} -format-volume = - -label-volume = %percentage%% - -label-muted = muted -label-muted-foreground = ${colors.disabled} - -[module/xkeyboard] -type = internal/xkeyboard -blacklist-0 = num lock - -label-layout = %layout% -label-layout-foreground = ${colors.primary} - -label-indicator-padding = 2 -label-indicator-margin = 1 -label-indicator-foreground = ${colors.background} -label-indicator-background = ${colors.secondary} - -[module/memory] -type = internal/memory -interval = 2 -format-prefix = "RAM " -format-prefix-foreground = ${colors.primary} -label = %percentage_used:2%% - -[module/cpu] -type = internal/cpu -interval = 2 -format-prefix = "CPU " -format-prefix-foreground = ${colors.primary} -label = %percentage:2%% - -[network-base] -type = internal/network -interval = 5 -format-connected = -format-disconnected = -label-disconnected = %{F#F0C674}%ifname%%{F#707880} disconnected - -[module/wlan] -inherit = network-base -interface-type = wireless -label-connected = %{F#F0C674}%ifname%%{F-} %essid% %local_ip% - -[module/eth] -inherit = network-base -interface-type = wired -label-connected = %{F#F0C674}%ifname%%{F-} %local_ip% - -[module/date] -type = internal/date -interval = 1 - -date = %H:%M -date-alt = %Y-%m-%d %H:%M:%S - -label = %date% -label-foreground = ${colors.primary} - -[settings] -screenchange-reload = true -pseudo-transparency = true - -; vim:ft=dosini diff --git a/firefox/Addons/uBlacklist/Filters.txt b/programs/firefox/Addons/uBlacklist/Filters.txt similarity index 100% rename from firefox/Addons/uBlacklist/Filters.txt rename to programs/firefox/Addons/uBlacklist/Filters.txt diff --git a/firefox/Addons/uBlock Origin/Filters.txt b/programs/firefox/Addons/uBlock Origin/Filters.txt similarity index 100% rename from firefox/Addons/uBlock Origin/Filters.txt rename to programs/firefox/Addons/uBlock Origin/Filters.txt diff --git a/firefox/Addons/uMatrix.txt b/programs/firefox/Addons/uMatrix.txt similarity index 100% rename from firefox/Addons/uMatrix.txt rename to programs/firefox/Addons/uMatrix.txt diff --git a/firefox/README.md b/programs/firefox/README.md similarity index 100% rename from firefox/README.md rename to programs/firefox/README.md diff --git a/firefox/chrome/userChrome files/TST.css b/programs/firefox/chrome/userChrome files/TST.css similarity index 100% rename from firefox/chrome/userChrome files/TST.css rename to programs/firefox/chrome/userChrome files/TST.css diff --git a/games/Civ 6/Zebenjis Additional Religions/ZRK_Config.sql b/programs/games/Civ 6/Zebenjis Additional Religions/ZRK_Config.sql similarity index 100% rename from games/Civ 6/Zebenjis Additional Religions/ZRK_Config.sql rename to programs/games/Civ 6/Zebenjis Additional Religions/ZRK_Config.sql diff --git a/thunderbird/filters/AliExpress/README.md b/programs/thunderbird/filters/AliExpress/README.md similarity index 100% rename from thunderbird/filters/AliExpress/README.md rename to programs/thunderbird/filters/AliExpress/README.md diff --git a/thunderbird/filters/AliExpress/[SPAM] ae-news.dat b/programs/thunderbird/filters/AliExpress/[SPAM] ae-news.dat similarity index 100% rename from thunderbird/filters/AliExpress/[SPAM] ae-news.dat rename to programs/thunderbird/filters/AliExpress/[SPAM] ae-news.dat diff --git a/thunderbird/filters/AliExpress/[SPAM] promotion.dat b/programs/thunderbird/filters/AliExpress/[SPAM] promotion.dat similarity index 100% rename from thunderbird/filters/AliExpress/[SPAM] promotion.dat rename to programs/thunderbird/filters/AliExpress/[SPAM] promotion.dat diff --git a/thunderbird/filters/AliExpress/sort.dat b/programs/thunderbird/filters/AliExpress/sort.dat similarity index 100% rename from thunderbird/filters/AliExpress/sort.dat rename to programs/thunderbird/filters/AliExpress/sort.dat diff --git a/thunderbird/filters/Etsy/[SPAM] email@email.etsy.com.dat b/programs/thunderbird/filters/Etsy/[SPAM] email@email.etsy.com.dat similarity index 100% rename from thunderbird/filters/Etsy/[SPAM] email@email.etsy.com.dat rename to programs/thunderbird/filters/Etsy/[SPAM] email@email.etsy.com.dat diff --git a/thunderbird/filters/Etsy/sort.dat b/programs/thunderbird/filters/Etsy/sort.dat similarity index 100% rename from thunderbird/filters/Etsy/sort.dat rename to programs/thunderbird/filters/Etsy/sort.dat diff --git a/thunderbird/filters/MyUS/sort.dat b/programs/thunderbird/filters/MyUS/sort.dat similarity index 100% rename from thunderbird/filters/MyUS/sort.dat rename to programs/thunderbird/filters/MyUS/sort.dat diff --git a/thunderbird/filters/README.md b/programs/thunderbird/filters/README.md similarity index 100% rename from thunderbird/filters/README.md rename to programs/thunderbird/filters/README.md diff --git a/miscellany/websites/invidious/wider.css b/websites/invidious/wider.css similarity index 100% rename from miscellany/websites/invidious/wider.css rename to websites/invidious/wider.css diff --git a/websites/piclog/2023-07.css b/websites/piclog/2023-07.css new file mode 100644 index 0000000..923380c --- /dev/null +++ b/websites/piclog/2023-07.css @@ -0,0 +1,99 @@ +html, body { + font-family: sans-serif; +} + +a { + text-decoration: none; + font-family: monospace; + font-weight: bold; +} + +.main-header, main, .main-footer { + max-width: 60rem; +} + +.main-header, h1:nth-of-type(1), p.rss { + text-align: center; +} + +h1:nth-of-type(1), p.rss, div#nuAboutCont, div.pagination { + grid-column: 1/-1; +} + +main { + display: grid; + grid-template-columns: 1fr 1fr 1fr 1fr; + gap: 0.6rem; +} + +@media screen and (max-width: 480px) { + main { + grid-template-columns: 1fr 1fr; + } +} +p.about, p:nth-of-type(2) { + display: none; +} + +div#nuAboutCont { + display: flex; + justify-content: center; +} + +div#nuAboutInnr { + max-width: 35rem; + border: 1px solid black; +} + +div.nuAboutSec { + padding: 1.2rem; + border-top: 1px solid black; +} + +div.nuAboutSec:nth-of-type(1) { + border-top: none; +} + +h3.nuAboutHdr { + margin-top: 0; +} + +div.nuAboutTbl { + display: grid; + grid-template-columns: 1fr 1fr 1fr 1fr; + gap: 1.2rem; +} +div.nuAboutTbl div.nuAboutTblItem { + width: 100%; + text-align: center; +} + +@media screen and (max-width: 480px) { + div.nuAboutTbl { + grid-template-columns: 1fr 1fr; + } +} +article { + padding: 0.6rem; + width: 100%; + aspect-ratio: 1/1; + overflow: scroll; + border: 1px solid black; +} +article img { + max-width: 100%; +} + +h2.title { + font-size: 1rem; +} + +p.description { + font-size: 0.8rem; + padding: 0; +} + +div.meta { + font-size: 0.8rem; + font-style: italic; +}/*# sourceMappingURL=2023-07.css.map */ \ No newline at end of file diff --git a/websites/piclog/2023-07.css.map b/websites/piclog/2023-07.css.map new file mode 100644 index 0000000..4e45414 --- /dev/null +++ b/websites/piclog/2023-07.css.map @@ -0,0 +1 @@ +{"version":3,"sources":["2023-07.scss","2023-07.css"],"names":[],"mappings":"AAMA;EACE,uBAAA;ACLF;;ADQA;EACE,qBAAA;EACA,sBAAA;EACA,iBAAA;ACLF;;ADQA;EACE,gBAAA;ACLF;;ADQA;EACE,kBAAA;ACLF;;ADQA;EACE,iBAAA;ACLF;;ADSA;EACE,aAAA;EACA,sCAAA;EACA,WAAA;ACNF;;ADSA;EACE;IAAO,8BAAA;ECLP;AACF;ADSA;EACE,aAAA;ACPF;;ADUA;EACE,aAAA;EACA,uBAAA;ACPF;;ADUA;EACE,gBAAA;EACA,uBAlDO;AC2CT;;ADUA;EACE,eArDQ;EAsDR,2BAAA;ACPF;;ADUA;EACE,gBAAA;ACPF;;ADUA;EACE,aAAA;ACPF;;ADUA;EACE,aAAA;EACA,sCAAA;EACA,WApEQ;AC6DV;ADQE;EACE,WAAA;EACA,kBAAA;ACNJ;;ADUA;EACE;IAAiB,8BAAA;ECNjB;AACF;ADSA;EACE,eAAA;EACA,WAAA;EACA,iBAAA;EACA,gBAAA;EAEA,uBAvFO;AC+ET;ADOE;EAAM,eAAA;ACJR;;ADQA;EACE,eAAA;ACLF;;ADQA;EACE,iBAAA;EACA,UAAA;ACLF;;ADQA;EACE,iBAAA;EACA,kBAAA;ACLF","file":"2023-07.css"} \ No newline at end of file diff --git a/miscellany/websites/piclog/2023-07.scss b/websites/piclog/2023-07.scss similarity index 100% rename from miscellany/websites/piclog/2023-07.scss rename to websites/piclog/2023-07.scss diff --git a/miscellany/websites/piclog/README b/websites/piclog/README similarity index 100% rename from miscellany/websites/piclog/README rename to websites/piclog/README diff --git a/websites/piclog/_generic/fourSquareGridGallery.css b/websites/piclog/_generic/fourSquareGridGallery.css new file mode 100644 index 0000000..bbda962 --- /dev/null +++ b/websites/piclog/_generic/fourSquareGridGallery.css @@ -0,0 +1,122 @@ +/* + +four-column square-grid gallery template + for piclog, by ngoomie + +compile to standard CSS and put in your 'about' + section within