diff options
| author | Blista Kanjo | 2022-09-01 20:03:35 -0400 |
|---|---|---|
| committer | Blista Kanjo | 2022-09-01 20:03:35 -0400 |
| commit | a208eadd1289461bab82dd9554a2316898e7d23d (patch) | |
| tree | dc52940c6271490f2df6bd58f4edf9ec16f7b7df /awesome | |
| parent | 77051c67db148b81aadaa562dbbbfff9e5f69bef (diff) | |
refactor: organized the entire repo | feat: added pomodoro aliases inspired by bashbunni
Diffstat (limited to 'awesome')
244 files changed, 0 insertions, 1386 deletions
diff --git a/awesome/autorun.sh b/awesome/autorun.sh deleted file mode 100755 index 0260666..0000000 --- a/awesome/autorun.sh +++ /dev/null @@ -1,42 +0,0 @@ -#!/bin/sh - -run () { - if ! pgrep -f "$1" ; - then - "$@"& - fi -} - -#run picom --experimental-backends -run picom -b -run nitrogen --restore -run volumeicon -# run lxsession -run xfce4-volumed-pulse -run /usr/lib/gsd-datetime -# run /usr/lib/baloo_file -run xfce4-clipman -# run emojione-picker -# run emote -run /usr/lib/geoclue-2.0/demos/agent -run /usr/lib/kdeconnectd -run kdeconnect-indicator -run nm-applet -run system-config-printer-applet -run start-pulseaudio-x11 -# run /bin/snap userd --autostart -run /usr/lib/tracker-miner-fs-3 -run /usr/lib/tracker-miner-rss-3 -# run /usr/lib/xapps/sn-watcher/xapp-sn-watcher -run /usr/lib/at-spi-bus-launcher --launch-immediately -run /usr/bin/gnome-keyring-daemon --start --components=pkcs11 -run /usr/lib/gsd-power -run /usr/bin/gnome-keyring-daemon --start --components=secrets -run /usr/bin/gnome-keyring-daemon --start --components=ssh -run xfce4-power-manager -run /usr/lib/xfce4/notifyd/xfce4-notifyd -run ~/.config/awesome/keymapper.sh -run ~/.config/awesome/xinput-daemon.sh -run ibus-daemon -drxR -run /usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1 -run wineserver diff --git a/awesome/keymapper.sh b/awesome/keymapper.sh deleted file mode 100755 index 734667b..0000000 --- a/awesome/keymapper.sh +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/sh - -input-remapper-control --command stop-all && input-remapper-control --command autoload && sleep 2 && setxkbmap -option compose:ralt && sleep 1 && xmodmap ~/.Xmodmap && sleep 1 && xset r rate 300 50 diff --git a/awesome/rc.lua b/awesome/rc.lua deleted file mode 100644 index f4adca2..0000000 --- a/awesome/rc.lua +++ /dev/null @@ -1,774 +0,0 @@ --- 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") -xdg_menu = require("xdgmenu") -menubar.cache_entries = true - --- {{{ Variable definitions --- Themes define colours, icons, font and wallpapers. --- beautiful.init(gears.filesystem.get_configuration_dir() .. "/themes/default/theme.lua") -local theme_path = string.format("%s/.config/awesome/themes/%s/theme.lua", os.getenv("HOME"), "adwaita") -beautiful.init(theme_path) - --- This is used later as the default terminal and editor to run. -terminal = "alacritty" -editor = os.getenv("EDITOR") or "gvim" -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 have 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.tile, - awful.layout.suit.max, --- awful.layout.suit.fair, --- awful.layout.suit.tile.left, --- awful.layout.suit.tile.bottom, --- awful.layout.suit.tile.top, --- awful.layout.suit.fair.horizontal, --- awful.layout.suit.spiral, --- awful.layout.suit.spiral.dwindle, --- 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, --- awful.layout.suit.floating, -} --- }}} - --- {{{ Menu --- Create a launcher widget and a main menu -myawesomemenu = { - { "show hotkeys", function() hotkeys_popup.show_help(nil, awful.screen.focused()) end }, - -- { "manual", terminal .. " -e man awesome" }, - { "config file", editor .. " " .. awesome.conffile }, - { "picom config", function() awful.spawn.easy_async_with_shell("sh -c 'gvim $HOME/.config/picom.conf'") end }, - { "change wallpaper", function() awful.spawn.easy_async_with_shell("sh -c 'nitrogen'") end }, - { "xdg_menu refresh", function() awful.spawn.easy_async_with_shell("sh -c 'xdg_menu --format awesome --root-menu /etc/xdg/menus/arch-applications.menu > ~/.config/awesome/xdgmenu.lua'") end, }, - { "refresh", awesome.restart }, - { "reboot" , function() awful.spawn("sh -c 'gksudo reboot now'") end }, - -- { "quit", function() awesome.quit() end }, - { "shutdown", function() awful.spawn("sh -c 'gksudo shutdown now'") end}, - { "stagnate", function() awful.spawn.easy_async_with_shell("sh -c 'systemctl hibernate'") end}, - { "suspend", function() awful.spawn.easy_async_with_shell("sh -c 'systemctl suspend'") end}, - { "logout", function () awful.spawn("sh -c 'pkill -9 -u $USER'") end }, - { "lock", function() awful.spawn.easy_async_with_shell("sh -c 'xflock4'") end}, -} - -mymainmenu = awful.menu({ items = { { "applications", xdgmenu, beautiful.awesome_icon }, - { "system stuff", myawesomemenu }, - { "open terminal", terminal }, - { "run prompt", function () awful.screen.focused().mypromptbox:run() end} -} -}) - -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 -mytextclock = wibox.widget.textclock(" %m/%d (%a) %H%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({ " 1 ", " 2 ", " 3 ", " 4 ", " 5 ", " 6 ", " 7 ", " 8 ", " 9 " }, 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 - } - - -- Create the wibox - s.mywibox = awful.wibar({ position = "top", screen = s }) - - -- Add widgets to the wibox - s.mywibox:setup { - layout = wibox.layout.align.horizontal, - { -- Left widgets - layout = wibox.layout.fixed.horizontal, - -- mylauncher, - 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, }, "h", hotkeys_popup.show_help, - {description="show help", group="awesome"}), - awful.key({ "Control", "Mod1" }, "Left", awful.tag.viewprev, - {description = "view previous", group = "tag"}), - awful.key({ "Control", "Mod1" }, "Right", awful.tag.viewnext, - {description = "view next", group = "tag"}), - awful.key({ modkey, }, "Escape", awful.tag.history.restore, - {description = "go back", group = "tag"}), - - -- Change window focus in maximized layout - awful.key({ modkey, }, "Tab", - function () - awful.client.focus.byidx(1) - end, - {description = "focus next by index", group = "client"} - ), - awful.key({ modkey, "Shift" }, "Tab", - function () - awful.client.focus.byidx(-1) - end, - {description = "focus previous by index", group = "client"} - ), - - -- Change window focus in maximized layout (alternate keybinds) - awful.key({ modkey, "Mod1" }, "j", - function () - awful.client.focus.byidx(1) - end, - {description = "focus next by index", group = "client"} - ), - awful.key({ modkey, "Mod1" }, "k", - function () - awful.client.focus.byidx(-1) - end, - {description = "focus previous by index", group = "client"} - ), - - -- -------------------------------------------------------------- - - awful.key({ modkey, }, "Menu", function () mymainmenu:show() end, - {description = "show main menu", group = "awesome"}), - - -- Move Window by Index - awful.key({ modkey, "Control" }, "j", function () awful.client.swap.byidx( 1) end, - {description = "swap with next client by index", group = "client"}), - awful.key({ modkey, "Control"}, "k", function () awful.client.swap.byidx( -1) end, - {description = "swap with previous client by index", group = "client"}), - - -- Move window by direction in tiling layout - awful.key({ modkey, "Control" }, "Down", function (c) awful.client.swap.global_bydirection("down") c:raise() end, - {description = "swap with next window up", group = "client"}), - awful.key({ modkey, "Control" }, "Up", function (c) awful.client.swap.global_bydirection("up") c:raise() end, - {description = "swap with next window down", group = "client"}), - awful.key({ modkey, "Control" }, "Right", function (c) awful.client.swap.global_bydirection("right") c:raise() end, - {description = "swap with next window right", group = "client"}), - awful.key({ modkey, "Control" }, "Left", function (c) awful.client.swap.global_bydirection("left") c:raise() end, - {description = "swap with next window left", group = "client"}), - - -- Move window FOCUS by direction in tiling layout - awful.key({ modkey, "Mod1" }, "Down", function (c) awful.client.focus.global_bydirection("down") c:lower() end, - {description = "focus to next window up", group = "client"}), - awful.key({ modkey, "Mod1" }, "Up", function (c) awful.client.focus.global_bydirection("up") c:lower() end, - {description = "focus to next window down", group = "client"}), - awful.key({ modkey, "Mod1" }, "Right", function (c) awful.client.focus.global_bydirection("right") c:lower() end, - {description = "focus to next window right", group = "client"}), - awful.key({ modkey, "Mod1" }, "Left", function (c) awful.client.focus.global_bydirection("left") c:lower() end, - {description = "focus to next window left", group = "client"}), - - -- Alt-Tab functionality in maximized layout - awful.key({ "Mod1", }, "Tab", - function () - awful.client.focus.history.previous() - if client.focus then - client.focus:raise() - end - end, - {description = "go back", group = "client"}), - -- Application Hotkeys - --[[ Template - awful.key({ [KEY], [KEY] }, [KEY], function () awful.spawn("[APPLICATION_NAME]") end, - {description = "open a terminal", group = "launcher"}), - ]]-- - awful.key({ "Control", "Mod1" }, "t", function () awful.spawn(terminal) end, - {description = "open a terminal", group = "launcher"}), - awful.key({ modkey, }, "s", function () awful.spawn("fsearch") end, - {description = "search the filesystem", group = "launcher"}), - awful.key({ modkey, }, "e", function () awful.spawn("thunar") end, - {description = "open a file manager", group = "launcher"}), - awful.key({ }, "Print", function () awful.spawn.easy_async_with_shell("xfce4-screenshooter -f --mouse") end, - {description = "take a screenshot of the fullscreen", group = "launcher"}), - awful.key({ modkey }, "Print", function () awful.spawn.easy_async_with_shell("xfce4-screenshooter -w --no-border --mouse") end, - {description = "take a screenshot of the active window", group = "launcher"}), - awful.key({ "Shift" }, "Print", function () awful.spawn.easy_async_with_shell("xfce4-screenshooter -r --mouse") end, - {description = "take a screenshot of an area of the screen", group = "launcher"}), - awful.key({ modkey, "Mod1" }, "Delete", function () awful.spawn.easy_async_with_shell("xkill") end, - {description = "kill a window by brute force", group = "launcher"}), - awful.key({ "Control", "Mod1" }, "Delete", function () awful.spawn("alacritty -t 'Task Manager' -e 'htop'") end, - {description = "launch HTOP", group = "launcher"}), - - -- Brightness Hotkeys - awful.key({ }, "XF86MonBrightnessDown", function () awful.spawn.easy_async_with_shell("xbacklight -dec 15") end), - awful.key({ }, "XF86MonBrightnessUp", function () awful.spawn.easy_async_with_shell("xbacklight -inc 15") end), - - -- Emoji Picker - awful.key({ modkey }, ".", function () awful.spawn.easy_async_with_shell("sh -c '~/.local/share/Blista-Kanjo-Emoji/blista-emoji-picker'") end, - {description = "launch emoji chooser", group = "launcher"}), - - -- Spell Checker (Single Word) - awful.key({ modkey }, "slash", function () awful.spawn.easy_async_with_shell("sh -c '~/.local/share/scripts/dym.sh'") end, - {description = "launch single word spell checker", group = "launcher"}), - - -- Clipboard Manager - awful.key({ modkey }, "grave", function () awful.spawn.easy_async_with_shell("xfce4-clipman-history") end, - {description = "open clipboard history", group = "launcher"}), - - -- On-the-fly Window Gaps configuration - - awful.key({modkey}, "'", function () awful.tag.incgap(2) end, - {description = "increase window gaps", group = "client"}), - - awful.key({modkey}, ";", function () awful.tag.incgap(-2) end, - {description = "decrease window gaps", group = "client"}), - - awful.key({modkey}, "backslash", function () awful.screen.focused().selected_tag.gap = 5 end, - {description = "reset window gaps", group = "client"}), - - -- awesome window manager Controls - awful.key({ "Control", "Mod1" }, "BackSpace", awesome.restart, - {description = "reload awesome", group = "awesome"}), - --[[awful.key({ "Control", "Shift" }, "Delete", awesome.quit - {description = "quit awesome", group = "awesome"}),]]-- - - --[[ awful.key({ "Control", "Mod1" }, "BackSpace", function () awful.spawn("sh -c 'pkill -9 -u $USER'") end, - {description = "quit awesome", group = "launcher"}), ]]-- - - awful.key({ modkey, "Control" }, "Delete", function () awful.spawn("gnome-system-monitor") end, - {description = "gnome-system-monitor", group = "launcher"}), - - - - -- Tiled Window Sizing and Client count/columns - - awful.key({ modkey }, "Right", function () awful.tag.incmwfact( 0.05) end, - {description = "increase master width factor", group = "layout"}), - awful.key({ modkey }, "Left", function () awful.tag.incmwfact(-0.05) end, - {description = "decrease master width factor", group = "layout"}), - - awful.key({ modkey }, "Up", function () awful.client.incwfact( 0.05) end, - {description = "increase master height factor", group = "layout"}), - awful.key({ modkey }, "Down", function () awful.client.incwfact(-0.05) end, - {description = "decrease master height factor", group = "layout"}), - - - awful.key({ modkey }, "minus", function () awful.tag.incnmaster( 1, nil, true) end, - {description = "increase the number of master clients", group = "layout"}), - awful.key({ modkey }, "equal", function () awful.tag.incnmaster(-1, nil, true) end, - {description = "decrease the number of master clients", group = "layout"}), - awful.key({ modkey }, "[", function () awful.tag.incncol( 1, nil, true) end, - {description = "increase the number of columns", group = "layout"}), - awful.key({ modkey }, "]", function () awful.tag.incncol(-1, nil, true) end, - {description = "decrease the number of columns", group = "layout"}), - awful.key({ modkey }, "j", function () awful.layout.inc( 1) end, - {description = "select next", group = "layout"}), - awful.key({ modkey }, "k", function () awful.layout.inc(-1) end, - {description = "select previous", group = "layout"}), - - awful.key({ modkey, "Shift" }, "m", - 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({ "Mod1" }, "F2", 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({ "Shift" }, "space", function() menubar.refresh() menubar.show() end, - {description = "show the menubar", group = "launcher"}) -) - -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({ "Mod1" }, "F4", function (c) c:kill() end, - {description = "close", group = "client"}), - awful.key({ modkey }, "q", function (c) c:kill() end, - {description = "close", group = "client"}), - awful.key({ "Shift", "Control" }, "space", awful.client.floating.toggle, - {description = "toggle floating", group = "client"}), - - -- Sticky Window and Always on top toggle - awful.key({ modkey }, "t", function(c) c.ontop = not c.ontop end, - {description = "toggle always on top", group = "client"}), - awful.key({ modkey }, "y", function (c) c.sticky = not c.sticky end, - {description = "toggle sticky", group = "client"}), - - -- Original Keep On Top Function - - --[[awful.key({ modkey, }, "t", function (c) c.ontop = not c.ontop end, - {description = "toggle keep on top", group = "client"}),]]-- - - -- End Original Function - - -- _____________________________________________________________ - - awful.key({ modkey }, "Home", 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 }, "m", - 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 }, "Return", - function (c) - c.maximized = not c.maximized - c:raise() - end , - {description = "(un)maximize", group = "client"}), - awful.key({ modkey, "Control" }, "Return", - function (c) - c.maximized_vertical = not c.maximized_vertical - c:raise() - end , - {description = "(un)maximize vertically", group = "client"}), - awful.key({ modkey, "Mod1" }, "Return", - 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({ "Control", "Mod1" }, "#" .. 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 }, "#" .. 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"}), - -- Move client to prev/next tag and switch to it - awful.key({ modkey, "Shift" }, "Left", - function () - -- get current tag - local t = client.focus and client.focus.first_tag or nil - if t == nil then - return - end - -- get previous tag (modulo 9 excluding 0 to wrap from 1 to 9) - local tag = client.focus.screen.tags[(t.name - 2) % 9 + 1] - awful.client.movetotag(tag) - awful.tag.viewprev() - end, - {description = "move client to previous tag and switch to it", group = "tag"}), - awful.key({ modkey, "Shift" }, "Right", - function () - -- get current tag - local t = client.focus and client.focus.first_tag or nil - if t == nil then - return - end - -- get next tag (modulo 9 excluding 0 to wrap from 9 to 1) - local tag = client.focus.screen.tags[(t.name % 9) + 1] - awful.client.movetotag(tag) - awful.tag.viewnext() - end, - {description = "move client to next tag and switch to it", 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({ "Mod1" }, 1, 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 = 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 = { - "Agave", - "Arandr", - "Blueman-manager", - "Gpick", - "Gnome-calculator", - "Gnome-system-monitor", - "Kruler", - "MessageWin", -- kalarm. - "screengrab", - "Sxiv", - "Steam", - "Tor Browser", -- Needs a fixed window size to avoid fingerprinting by screen size. - "Wpa_gui", - "veromix", - "xtightvncviewer", - "zoom", - }, - - -- 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. - "Task Manager", - }, - 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) - --- 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) --- }}} - --- Gaps -beautiful.useless_gap = 5 - --- Run garbage collector regularly to prevent memory leaks -gears.timer { - timeout = 30, - autostart = true, - callback = function() collectgarbage() end -} - --- Autostart - --- awful.spawn.with_shell("") --- awful.spawn.easy_async_with_shell("") -awful.spawn.easy_async_with_shell("~/.config/awesome/autorun.sh") - --- Client Swallowing Function - -table_is_swallowed = { - "Alacritty" } -table_minimize_parent = { - "mpv", - "vlc", - "MPlayer", - "XTerm", - "URxvt" } -table_cannot_swallow = { - "xev" } - -function is_in_Table(table, element) - for _, value in pairs(table) do - if element:match(value) then - return true - end - end - return false -end - -function is_to_be_swallowed(c) - return (c.class and is_in_Table(table_is_swallowed, c.class)) and true or false -end - -function can_swallow(class) - return not is_in_Table(table_cannot_swallow, class) -end - -function is_parent_minimized(class) - return is_in_Table(table_minimize_parent, class) -end - -function copy_size(c, parent_client) - if (not c or not parent_client) then - return - end - if (not c.valid or not parent_client.valid) then - return - end - c.x=parent_client.x; - c.y=parent_client.y; - c.width=parent_client.width; - c.height=parent_client.height; -end -function check_resize_client(c) - if(c.child_resize) then - copy_size(c.child_resize, c) - end -end - -function get_parent_pid(child_ppid, callback) - local ppid_cmd = string.format("pstree -ps %s", child_ppid) - awful.spawn.easy_async(ppid_cmd, function(stdout, stderr, reason, exit_code) - -- primitive error checking - if stderr and stderr ~= "" then - callback(stderr) - return - end - local ppid = stdout - callback(nil, ppid) - end) -end - -client.connect_signal("property::size", check_resize_client) -client.connect_signal("property::position", check_resize_client) -client.connect_signal("manage", function(c) - if is_to_be_swallowed(c) then - return - end - local parent_client=awful.client.focus.history.get(c.screen, 1) - get_parent_pid(c.pid, function(err, ppid) - if err then - error(err) - return - end - parent_pid = ppid - if parent_client and (parent_pid:find("("..parent_client.pid..")")) and is_to_be_swallowed(parent_client) and can_swallow(c.class) then - if is_parent_minimized(c.class) then - parent_client.child_resize=c - parent_client.minimized = true - c:connect_signal("unmanage", function() parent_client.minimized = false end) - copy_size(c, parent_client) - else - parent_client.child_resize=c - c.floating=true - copy_size(c, parent_client) - end - end - end) -end) - --- End Client Swallowing Function diff --git a/awesome/themes/adw/30times3.png b/awesome/themes/adw/30times3.png Binary files differdeleted file mode 100644 index b0861e9..0000000 --- a/awesome/themes/adw/30times3.png +++ /dev/null diff --git a/awesome/themes/adw/README b/awesome/themes/adw/README deleted file mode 100644 index 1ddb349..0000000 --- a/awesome/themes/adw/README +++ /dev/null @@ -1,3 +0,0 @@ -Background images: - Mikael Eriksson <mikael_eriksson@miffe.org> - Licensed under CC-BY-SA-3.0 diff --git a/awesome/themes/adw/adwaita-night.jpg b/awesome/themes/adw/adwaita-night.jpg Binary files differdeleted file mode 100644 index 42239c1..0000000 --- a/awesome/themes/adw/adwaita-night.jpg +++ /dev/null diff --git a/awesome/themes/adw/arch-submenu.png b/awesome/themes/adw/arch-submenu.png Binary files differdeleted file mode 100644 index ec99596..0000000 --- a/awesome/themes/adw/arch-submenu.png +++ /dev/null diff --git a/awesome/themes/adw/background.png b/awesome/themes/adw/background.png Binary files differdeleted file mode 100644 index 8f52b6b..0000000 --- a/awesome/themes/adw/background.png +++ /dev/null diff --git a/awesome/themes/adw/background_white.png b/awesome/themes/adw/background_white.png Binary files differdeleted file mode 100644 index bb0c5d0..0000000 --- a/awesome/themes/adw/background_white.png +++ /dev/null diff --git a/awesome/themes/adw/layouts/cornerne.png b/awesome/themes/adw/layouts/cornerne.png Binary files differdeleted file mode 100644 index c85bd56..0000000 --- a/awesome/themes/adw/layouts/cornerne.png +++ /dev/null diff --git a/awesome/themes/adw/layouts/cornernew.png b/awesome/themes/adw/layouts/cornernew.png Binary files differdeleted file mode 100644 index c3fd986..0000000 --- a/awesome/themes/adw/layouts/cornernew.png +++ /dev/null diff --git a/awesome/themes/adw/layouts/cornernw.png b/awesome/themes/adw/layouts/cornernw.png Binary files differdeleted file mode 100644 index dfe78b3..0000000 --- a/awesome/themes/adw/layouts/cornernw.png +++ /dev/null diff --git a/awesome/themes/adw/layouts/cornernww.png b/awesome/themes/adw/layouts/cornernww.png Binary files differdeleted file mode 100644 index f489010..0000000 --- a/awesome/themes/adw/layouts/cornernww.png +++ /dev/null diff --git a/awesome/themes/adw/layouts/cornerse.png b/awesome/themes/adw/layouts/cornerse.png Binary files differdeleted file mode 100644 index 023ae79..0000000 --- a/awesome/themes/adw/layouts/cornerse.png +++ /dev/null diff --git a/awesome/themes/adw/layouts/cornersew.png b/awesome/themes/adw/layouts/cornersew.png Binary files differdeleted file mode 100644 index f7cfa1c..0000000 --- a/awesome/themes/adw/layouts/cornersew.png +++ /dev/null diff --git a/awesome/themes/adw/layouts/cornersw.png b/awesome/themes/adw/layouts/cornersw.png Binary files differdeleted file mode 100644 index c1453c9..0000000 --- a/awesome/themes/adw/layouts/cornersw.png +++ /dev/null diff --git a/awesome/themes/adw/layouts/cornersww.png b/awesome/themes/adw/layouts/cornersww.png Binary files differdeleted file mode 100644 index a65a043..0000000 --- a/awesome/themes/adw/layouts/cornersww.png +++ /dev/null diff --git a/awesome/themes/adw/layouts/dwindle.png b/awesome/themes/adw/layouts/dwindle.png Binary files differdeleted file mode 100644 index 9902d22..0000000 --- a/awesome/themes/adw/layouts/dwindle.png +++ /dev/null diff --git a/awesome/themes/adw/layouts/dwindlew.png b/awesome/themes/adw/layouts/dwindlew.png Binary files differdeleted file mode 100644 index 9199049..0000000 --- a/awesome/themes/adw/layouts/dwindlew.png +++ /dev/null diff --git a/awesome/themes/adw/layouts/fairh.png b/awesome/themes/adw/layouts/fairh.png Binary files differdeleted file mode 100644 index d41deea..0000000 --- a/awesome/themes/adw/layouts/fairh.png +++ /dev/null diff --git a/awesome/themes/adw/layouts/fairhw.png b/awesome/themes/adw/layouts/fairhw.png Binary files differdeleted file mode 100644 index bb50e3a..0000000 --- a/awesome/themes/adw/layouts/fairhw.png +++ /dev/null diff --git a/awesome/themes/adw/layouts/fairv.png b/awesome/themes/adw/layouts/fairv.png Binary files differdeleted file mode 100644 index f5f0288..0000000 --- a/awesome/themes/adw/layouts/fairv.png +++ /dev/null diff --git a/awesome/themes/adw/layouts/fairvw.png b/awesome/themes/adw/layouts/fairvw.png Binary files differdeleted file mode 100644 index 4f4ed52..0000000 --- a/awesome/themes/adw/layouts/fairvw.png +++ /dev/null diff --git a/awesome/themes/adw/layouts/floating.png b/awesome/themes/adw/layouts/floating.png Binary files differdeleted file mode 100644 index b8061a0..0000000 --- a/awesome/themes/adw/layouts/floating.png +++ /dev/null diff --git a/awesome/themes/adw/layouts/floatingw.png b/awesome/themes/adw/layouts/floatingw.png Binary files differdeleted file mode 100644 index 4815894..0000000 --- a/awesome/themes/adw/layouts/floatingw.png +++ /dev/null diff --git a/awesome/themes/adw/layouts/fullscreen.png b/awesome/themes/adw/layouts/fullscreen.png Binary files differdeleted file mode 100644 index d02f6fc..0000000 --- a/awesome/themes/adw/layouts/fullscreen.png +++ /dev/null diff --git a/awesome/themes/adw/layouts/fullscreenw.png b/awesome/themes/adw/layouts/fullscreenw.png Binary files differdeleted file mode 100644 index 5c35bfa..0000000 --- a/awesome/themes/adw/layouts/fullscreenw.png +++ /dev/null diff --git a/awesome/themes/adw/layouts/magnifier.png b/awesome/themes/adw/layouts/magnifier.png Binary files differdeleted file mode 100644 index 2925414..0000000 --- a/awesome/themes/adw/layouts/magnifier.png +++ /dev/null diff --git a/awesome/themes/adw/layouts/magnifierw.png b/awesome/themes/adw/layouts/magnifierw.png Binary files differdeleted file mode 100644 index 6209556..0000000 --- a/awesome/themes/adw/layouts/magnifierw.png +++ /dev/null diff --git a/awesome/themes/adw/layouts/max.png b/awesome/themes/adw/layouts/max.png Binary files differdeleted file mode 100644 index 8d20844..0000000 --- a/awesome/themes/adw/layouts/max.png +++ /dev/null diff --git a/awesome/themes/adw/layouts/maxw.png b/awesome/themes/adw/layouts/maxw.png Binary files differdeleted file mode 100644 index 85f5ce3..0000000 --- a/awesome/themes/adw/layouts/maxw.png +++ /dev/null diff --git a/awesome/themes/adw/layouts/spiral.png b/awesome/themes/adw/layouts/spiral.png Binary files differdeleted file mode 100644 index d9434be..0000000 --- a/awesome/themes/adw/layouts/spiral.png +++ /dev/null diff --git a/awesome/themes/adw/layouts/spiralw.png b/awesome/themes/adw/layouts/spiralw.png Binary files differdeleted file mode 100644 index b78dd86..0000000 --- a/awesome/themes/adw/layouts/spiralw.png +++ /dev/null diff --git a/awesome/themes/adw/layouts/tile.png b/awesome/themes/adw/layouts/tile.png Binary files differdeleted file mode 100644 index 3ede21e..0000000 --- a/awesome/themes/adw/layouts/tile.png +++ /dev/null diff --git a/awesome/themes/adw/layouts/tilebottom.png b/awesome/themes/adw/layouts/tilebottom.png Binary files differdeleted file mode 100644 index 6f8c257..0000000 --- a/awesome/themes/adw/layouts/tilebottom.png +++ /dev/null diff --git a/awesome/themes/adw/layouts/tilebottomw.png b/awesome/themes/adw/layouts/tilebottomw.png Binary files differdeleted file mode 100644 index a1de7b2..0000000 --- a/awesome/themes/adw/layouts/tilebottomw.png +++ /dev/null diff --git a/awesome/themes/adw/layouts/tileleft.png b/awesome/themes/adw/layouts/tileleft.png Binary files differdeleted file mode 100644 index 31d6870..0000000 --- a/awesome/themes/adw/layouts/tileleft.png +++ /dev/null diff --git a/awesome/themes/adw/layouts/tileleftw.png b/awesome/themes/adw/layouts/tileleftw.png Binary files differdeleted file mode 100644 index cf14c25..0000000 --- a/awesome/themes/adw/layouts/tileleftw.png +++ /dev/null diff --git a/awesome/themes/adw/layouts/tiletop.png b/awesome/themes/adw/layouts/tiletop.png Binary files differdeleted file mode 100644 index 98cade2..0000000 --- a/awesome/themes/adw/layouts/tiletop.png +++ /dev/null diff --git a/awesome/themes/adw/layouts/tiletopw.png b/awesome/themes/adw/layouts/tiletopw.png Binary files differdeleted file mode 100644 index d1d0872..0000000 --- a/awesome/themes/adw/layouts/tiletopw.png +++ /dev/null diff --git a/awesome/themes/adw/layouts/tilew.png b/awesome/themes/adw/layouts/tilew.png Binary files differdeleted file mode 100644 index fde2ca4..0000000 --- a/awesome/themes/adw/layouts/tilew.png +++ /dev/null diff --git a/awesome/themes/adw/taglist/squarefw.png b/awesome/themes/adw/taglist/squarefw.png Binary files differdeleted file mode 100644 index 2a86430..0000000 --- a/awesome/themes/adw/taglist/squarefw.png +++ /dev/null diff --git a/awesome/themes/adw/taglist/squarew.png b/awesome/themes/adw/taglist/squarew.png Binary files differdeleted file mode 100644 index 913f2ca..0000000 --- a/awesome/themes/adw/taglist/squarew.png +++ /dev/null diff --git a/awesome/themes/adw/theme.lua b/awesome/themes/adw/theme.lua deleted file mode 100644 index 4cfa5a1..0000000 --- a/awesome/themes/adw/theme.lua +++ /dev/null @@ -1,135 +0,0 @@ ---------------------------- --- adw (libadwaita) awesome theme -- ---------------------------- - -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_system = gfs.get_themes_dir() -local themes_path = "~/.config/awesome/themes/" - -local theme = {} - -theme.font = "JetBrains Mono 10" - -theme.bg_normal = "#303030" -theme.bg_focus = "#255A9B" -theme.bg_urgent = "#7d4c10" -theme.bg_minimize = "#444444" -theme.bg_systray = theme.bg_normal - -theme.fg_normal = "#aaaaaa" -theme.fg_focus = "#ffffff" -theme.fg_urgent = "#ffffff" -theme.fg_minimize = "#ffffff" - -theme.useless_gap = dpi(0) -theme.border_width = dpi(4) -theme.border_normal = "#101010" -theme.border_focus = "#0072FF" -theme.border_marked = "#7d4c10" - --- 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_system.."default/submenu.png" -theme.menu_height = dpi(20) -theme.menu_width = dpi(170) - --- 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" - --- theme.wallpaper = themes_path.."default/background.png" -theme.wallpaper = "/home/kylert/.config/awesome/themes/adwaita/30times3.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 -) ]]-- - --- theme.awesome_icon = themes_path.."vide/arch-submenu.png" - --- 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 - --- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80 diff --git a/awesome/themes/adw/titlebar/close_focus.png b/awesome/themes/adw/titlebar/close_focus.png Binary files differdeleted file mode 100644 index 01ef825..0000000 --- a/awesome/themes/adw/titlebar/close_focus.png +++ /dev/null diff --git a/awesome/themes/adw/titlebar/close_normal.png b/awesome/themes/adw/titlebar/close_normal.png Binary files differdeleted file mode 100644 index 5448ed8..0000000 --- a/awesome/themes/adw/titlebar/close_normal.png +++ /dev/null diff --git a/awesome/themes/adw/titlebar/floating_focus_active.png b/awesome/themes/adw/titlebar/floating_focus_active.png Binary files differdeleted file mode 100644 index 82dcc7c..0000000 --- a/awesome/themes/adw/titlebar/floating_focus_active.png +++ /dev/null diff --git a/awesome/themes/adw/titlebar/floating_focus_inactive.png b/awesome/themes/adw/titlebar/floating_focus_inactive.png Binary files differdeleted file mode 100644 index c19ba80..0000000 --- a/awesome/themes/adw/titlebar/floating_focus_inactive.png +++ /dev/null diff --git a/awesome/themes/adw/titlebar/floating_normal_active.png b/awesome/themes/adw/titlebar/floating_normal_active.png Binary files differdeleted file mode 100644 index 62342d1..0000000 --- a/awesome/themes/adw/titlebar/floating_normal_active.png +++ /dev/null diff --git a/awesome/themes/adw/titlebar/floating_normal_inactive.png b/awesome/themes/adw/titlebar/floating_normal_inactive.png Binary files differdeleted file mode 100644 index e2bbdfa..0000000 --- a/awesome/themes/adw/titlebar/floating_normal_inactive.png +++ /dev/null diff --git a/awesome/themes/adw/titlebar/maximized_focus_active.png b/awesome/themes/adw/titlebar/maximized_focus_active.png Binary files differdeleted file mode 100644 index d7dffd7..0000000 --- a/awesome/themes/adw/titlebar/maximized_focus_active.png +++ /dev/null diff --git a/awesome/themes/adw/titlebar/maximized_focus_inactive.png b/awesome/themes/adw/titlebar/maximized_focus_inactive.png Binary files differdeleted file mode 100644 index 844389f..0000000 --- a/awesome/themes/adw/titlebar/maximized_focus_inactive.png +++ /dev/null diff --git a/awesome/themes/adw/titlebar/maximized_normal_active.png b/awesome/themes/adw/titlebar/maximized_normal_active.png Binary files differdeleted file mode 100644 index a705f81..0000000 --- a/awesome/themes/adw/titlebar/maximized_normal_active.png +++ /dev/null diff --git a/awesome/themes/adw/titlebar/maximized_normal_inactive.png b/awesome/themes/adw/titlebar/maximized_normal_inactive.png Binary files differdeleted file mode 100644 index 4c1ab1f..0000000 --- a/awesome/themes/adw/titlebar/maximized_normal_inactive.png +++ /dev/null diff --git a/awesome/themes/adw/titlebar/minimize_focus.png b/awesome/themes/adw/titlebar/minimize_focus.png Binary files differdeleted file mode 100644 index caaceb2..0000000 --- a/awesome/themes/adw/titlebar/minimize_focus.png +++ /dev/null diff --git a/awesome/themes/adw/titlebar/minimize_normal.png b/awesome/themes/adw/titlebar/minimize_normal.png Binary files differdeleted file mode 100644 index 36621d0..0000000 --- a/awesome/themes/adw/titlebar/minimize_normal.png +++ /dev/null diff --git a/awesome/themes/adw/titlebar/ontop_focus_active.png b/awesome/themes/adw/titlebar/ontop_focus_active.png Binary files differdeleted file mode 100644 index 312c00b..0000000 --- a/awesome/themes/adw/titlebar/ontop_focus_active.png +++ /dev/null diff --git a/awesome/themes/adw/titlebar/ontop_focus_inactive.png b/awesome/themes/adw/titlebar/ontop_focus_inactive.png Binary files differdeleted file mode 100644 index a48e1c5..0000000 --- a/awesome/themes/adw/titlebar/ontop_focus_inactive.png +++ /dev/null diff --git a/awesome/themes/adw/titlebar/ontop_normal_active.png b/awesome/themes/adw/titlebar/ontop_normal_active.png Binary files differdeleted file mode 100644 index 117a203..0000000 --- a/awesome/themes/adw/titlebar/ontop_normal_active.png +++ /dev/null diff --git a/awesome/themes/adw/titlebar/ontop_normal_inactive.png b/awesome/themes/adw/titlebar/ontop_normal_inactive.png Binary files differdeleted file mode 100644 index d3a10c8..0000000 --- a/awesome/themes/adw/titlebar/ontop_normal_inactive.png +++ /dev/null diff --git a/awesome/themes/adw/titlebar/sticky_focus_active.png b/awesome/themes/adw/titlebar/sticky_focus_active.png Binary files differdeleted file mode 100644 index 814499b..0000000 --- a/awesome/themes/adw/titlebar/sticky_focus_active.png +++ /dev/null diff --git a/awesome/themes/adw/titlebar/sticky_focus_inactive.png b/awesome/themes/adw/titlebar/sticky_focus_inactive.png Binary files differdeleted file mode 100644 index 21b000d..0000000 --- a/awesome/themes/adw/titlebar/sticky_focus_inactive.png +++ /dev/null diff --git a/awesome/themes/adw/titlebar/sticky_normal_active.png b/awesome/themes/adw/titlebar/sticky_normal_active.png Binary files differdeleted file mode 100644 index bdb5595..0000000 --- a/awesome/themes/adw/titlebar/sticky_normal_active.png +++ /dev/null diff --git a/awesome/themes/adw/titlebar/sticky_normal_inactive.png b/awesome/themes/adw/titlebar/sticky_normal_inactive.png Binary files differdeleted file mode 100644 index a96b9b1..0000000 --- a/awesome/themes/adw/titlebar/sticky_normal_inactive.png +++ /dev/null diff --git a/awesome/themes/adwaita/30times3.png b/awesome/themes/adwaita/30times3.png Binary files differdeleted file mode 100644 index b0861e9..0000000 --- a/awesome/themes/adwaita/30times3.png +++ /dev/null diff --git a/awesome/themes/adwaita/README b/awesome/themes/adwaita/README deleted file mode 100644 index 1ddb349..0000000 --- a/awesome/themes/adwaita/README +++ /dev/null @@ -1,3 +0,0 @@ -Background images: - Mikael Eriksson <mikael_eriksson@miffe.org> - Licensed under CC-BY-SA-3.0 diff --git a/awesome/themes/adwaita/adwaita-night.jpg b/awesome/themes/adwaita/adwaita-night.jpg Binary files differdeleted file mode 100644 index 42239c1..0000000 --- a/awesome/themes/adwaita/adwaita-night.jpg +++ /dev/null diff --git a/awesome/themes/adwaita/arch-submenu.png b/awesome/themes/adwaita/arch-submenu.png Binary files differdeleted file mode 100644 index ec99596..0000000 --- a/awesome/themes/adwaita/arch-submenu.png +++ /dev/null diff --git a/awesome/themes/adwaita/background.png b/awesome/themes/adwaita/background.png Binary files differdeleted file mode 100644 index 8f52b6b..0000000 --- a/awesome/themes/adwaita/background.png +++ /dev/null diff --git a/awesome/themes/adwaita/background_white.png b/awesome/themes/adwaita/background_white.png Binary files differdeleted file mode 100644 index bb0c5d0..0000000 --- a/awesome/themes/adwaita/background_white.png +++ /dev/null diff --git a/awesome/themes/adwaita/layouts/cornerne.png b/awesome/themes/adwaita/layouts/cornerne.png Binary files differdeleted file mode 100644 index c85bd56..0000000 --- a/awesome/themes/adwaita/layouts/cornerne.png +++ /dev/null diff --git a/awesome/themes/adwaita/layouts/cornernew.png b/awesome/themes/adwaita/layouts/cornernew.png Binary files differdeleted file mode 100644 index c3fd986..0000000 --- a/awesome/themes/adwaita/layouts/cornernew.png +++ /dev/null diff --git a/awesome/themes/adwaita/layouts/cornernw.png b/awesome/themes/adwaita/layouts/cornernw.png Binary files differdeleted file mode 100644 index dfe78b3..0000000 --- a/awesome/themes/adwaita/layouts/cornernw.png +++ /dev/null diff --git a/awesome/themes/adwaita/layouts/cornernww.png b/awesome/themes/adwaita/layouts/cornernww.png Binary files differdeleted file mode 100644 index f489010..0000000 --- a/awesome/themes/adwaita/layouts/cornernww.png +++ /dev/null diff --git a/awesome/themes/adwaita/layouts/cornerse.png b/awesome/themes/adwaita/layouts/cornerse.png Binary files differdeleted file mode 100644 index 023ae79..0000000 --- a/awesome/themes/adwaita/layouts/cornerse.png +++ /dev/null diff --git a/awesome/themes/adwaita/layouts/cornersew.png b/awesome/themes/adwaita/layouts/cornersew.png Binary files differdeleted file mode 100644 index f7cfa1c..0000000 --- a/awesome/themes/adwaita/layouts/cornersew.png +++ /dev/null diff --git a/awesome/themes/adwaita/layouts/cornersw.png b/awesome/themes/adwaita/layouts/cornersw.png Binary files differdeleted file mode 100644 index c1453c9..0000000 --- a/awesome/themes/adwaita/layouts/cornersw.png +++ /dev/null diff --git a/awesome/themes/adwaita/layouts/cornersww.png b/awesome/themes/adwaita/layouts/cornersww.png Binary files differdeleted file mode 100644 index a65a043..0000000 --- a/awesome/themes/adwaita/layouts/cornersww.png +++ /dev/null diff --git a/awesome/themes/adwaita/layouts/dwindle.png b/awesome/themes/adwaita/layouts/dwindle.png Binary files differdeleted file mode 100644 index 9902d22..0000000 --- a/awesome/themes/adwaita/layouts/dwindle.png +++ /dev/null diff --git a/awesome/themes/adwaita/layouts/dwindlew.png b/awesome/themes/adwaita/layouts/dwindlew.png Binary files differdeleted file mode 100644 index 9199049..0000000 --- a/awesome/themes/adwaita/layouts/dwindlew.png +++ /dev/null diff --git a/awesome/themes/adwaita/layouts/fairh.png b/awesome/themes/adwaita/layouts/fairh.png Binary files differdeleted file mode 100644 index d41deea..0000000 --- a/awesome/themes/adwaita/layouts/fairh.png +++ /dev/null diff --git a/awesome/themes/adwaita/layouts/fairhw.png b/awesome/themes/adwaita/layouts/fairhw.png Binary files differdeleted file mode 100644 index bb50e3a..0000000 --- a/awesome/themes/adwaita/layouts/fairhw.png +++ /dev/null diff --git a/awesome/themes/adwaita/layouts/fairv.png b/awesome/themes/adwaita/layouts/fairv.png Binary files differdeleted file mode 100644 index f5f0288..0000000 --- a/awesome/themes/adwaita/layouts/fairv.png +++ /dev/null diff --git a/awesome/themes/adwaita/layouts/fairvw.png b/awesome/themes/adwaita/layouts/fairvw.png Binary files differdeleted file mode 100644 index 4f4ed52..0000000 --- a/awesome/themes/adwaita/layouts/fairvw.png +++ /dev/null diff --git a/awesome/themes/adwaita/layouts/floating.png b/awesome/themes/adwaita/layouts/floating.png Binary files differdeleted file mode 100644 index b8061a0..0000000 --- a/awesome/themes/adwaita/layouts/floating.png +++ /dev/null diff --git a/awesome/themes/adwaita/layouts/floatingw.png b/awesome/themes/adwaita/layouts/floatingw.png Binary files differdeleted file mode 100644 index 4815894..0000000 --- a/awesome/themes/adwaita/layouts/floatingw.png +++ /dev/null diff --git a/awesome/themes/adwaita/layouts/fullscreen.png b/awesome/themes/adwaita/layouts/fullscreen.png Binary files differdeleted file mode 100644 index d02f6fc..0000000 --- a/awesome/themes/adwaita/layouts/fullscreen.png +++ /dev/null diff --git a/awesome/themes/adwaita/layouts/fullscreenw.png b/awesome/themes/adwaita/layouts/fullscreenw.png Binary files differdeleted file mode 100644 index 5c35bfa..0000000 --- a/awesome/themes/adwaita/layouts/fullscreenw.png +++ /dev/null diff --git a/awesome/themes/adwaita/layouts/magnifier.png b/awesome/themes/adwaita/layouts/magnifier.png Binary files differdeleted file mode 100644 index 2925414..0000000 --- a/awesome/themes/adwaita/layouts/magnifier.png +++ /dev/null diff --git a/awesome/themes/adwaita/layouts/magnifierw.png b/awesome/themes/adwaita/layouts/magnifierw.png Binary files differdeleted file mode 100644 index 6209556..0000000 --- a/awesome/themes/adwaita/layouts/magnifierw.png +++ /dev/null diff --git a/awesome/themes/adwaita/layouts/max.png b/awesome/themes/adwaita/layouts/max.png Binary files differdeleted file mode 100644 index 8d20844..0000000 --- a/awesome/themes/adwaita/layouts/max.png +++ /dev/null diff --git a/awesome/themes/adwaita/layouts/maxw.png b/awesome/themes/adwaita/layouts/maxw.png Binary files differdeleted file mode 100644 index 85f5ce3..0000000 --- a/awesome/themes/adwaita/layouts/maxw.png +++ /dev/null diff --git a/awesome/themes/adwaita/layouts/spiral.png b/awesome/themes/adwaita/layouts/spiral.png Binary files differdeleted file mode 100644 index d9434be..0000000 --- a/awesome/themes/adwaita/layouts/spiral.png +++ /dev/null diff --git a/awesome/themes/adwaita/layouts/spiralw.png b/awesome/themes/adwaita/layouts/spiralw.png Binary files differdeleted file mode 100644 index b78dd86..0000000 --- a/awesome/themes/adwaita/layouts/spiralw.png +++ /dev/null diff --git a/awesome/themes/adwaita/layouts/tile.png b/awesome/themes/adwaita/layouts/tile.png Binary files differdeleted file mode 100644 index 3ede21e..0000000 --- a/awesome/themes/adwaita/layouts/tile.png +++ /dev/null diff --git a/awesome/themes/adwaita/layouts/tilebottom.png b/awesome/themes/adwaita/layouts/tilebottom.png Binary files differdeleted file mode 100644 index 6f8c257..0000000 --- a/awesome/themes/adwaita/layouts/tilebottom.png +++ /dev/null diff --git a/awesome/themes/adwaita/layouts/tilebottomw.png b/awesome/themes/adwaita/layouts/tilebottomw.png Binary files differdeleted file mode 100644 index a1de7b2..0000000 --- a/awesome/themes/adwaita/layouts/tilebottomw.png +++ /dev/null diff --git a/awesome/themes/adwaita/layouts/tileleft.png b/awesome/themes/adwaita/layouts/tileleft.png Binary files differdeleted file mode 100644 index 31d6870..0000000 --- a/awesome/themes/adwaita/layouts/tileleft.png +++ /dev/null diff --git a/awesome/themes/adwaita/layouts/tileleftw.png b/awesome/themes/adwaita/layouts/tileleftw.png Binary files differdeleted file mode 100644 index cf14c25..0000000 --- a/awesome/themes/adwaita/layouts/tileleftw.png +++ /dev/null diff --git a/awesome/themes/adwaita/layouts/tiletop.png b/awesome/themes/adwaita/layouts/tiletop.png Binary files differdeleted file mode 100644 index 98cade2..0000000 --- a/awesome/themes/adwaita/layouts/tiletop.png +++ /dev/null diff --git a/awesome/themes/adwaita/layouts/tiletopw.png b/awesome/themes/adwaita/layouts/tiletopw.png Binary files differdeleted file mode 100644 index d1d0872..0000000 --- a/awesome/themes/adwaita/layouts/tiletopw.png +++ /dev/null diff --git a/awesome/themes/adwaita/layouts/tilew.png b/awesome/themes/adwaita/layouts/tilew.png Binary files differdeleted file mode 100644 index fde2ca4..0000000 --- a/awesome/themes/adwaita/layouts/tilew.png +++ /dev/null diff --git a/awesome/themes/adwaita/taglist/squarefw.png b/awesome/themes/adwaita/taglist/squarefw.png Binary files differdeleted file mode 100644 index 2a86430..0000000 --- a/awesome/themes/adwaita/taglist/squarefw.png +++ /dev/null diff --git a/awesome/themes/adwaita/taglist/squarew.png b/awesome/themes/adwaita/taglist/squarew.png Binary files differdeleted file mode 100644 index 913f2ca..0000000 --- a/awesome/themes/adwaita/taglist/squarew.png +++ /dev/null diff --git a/awesome/themes/adwaita/theme.lua b/awesome/themes/adwaita/theme.lua deleted file mode 100644 index d970e00..0000000 --- a/awesome/themes/adwaita/theme.lua +++ /dev/null @@ -1,135 +0,0 @@ ---------------------------- --- Adwaita awesome theme -- ---------------------------- - -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_system = gfs.get_themes_dir() -local themes_path = "~/.config/awesome/themes/" - -local theme = {} - -theme.font = "JetBrains Mono 10" - -theme.bg_normal = "#303030" -theme.bg_focus = "#11427E" -theme.bg_urgent = "#7d4c10" -theme.bg_minimize = "#444444" -theme.bg_systray = theme.bg_normal - -theme.fg_normal = "#aaaaaa" -theme.fg_focus = "#ffffff" -theme.fg_urgent = "#ffffff" -theme.fg_minimize = "#ffffff" - -theme.useless_gap = dpi(0) -theme.border_width = dpi(4) -theme.border_normal = "#101010" -theme.border_focus = "#0072FF" -theme.border_marked = "#7d4c10" - --- 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_system.."default/submenu.png" -theme.menu_height = dpi(20) -theme.menu_width = dpi(170) - --- 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" - --- theme.wallpaper = themes_path.."default/background.png" -theme.wallpaper = "/home/kylert/.config/awesome/themes/adwaita/30times3.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 -) ]]-- - --- theme.awesome_icon = themes_path.."vide/arch-submenu.png" - --- 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 - --- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80 diff --git a/awesome/themes/adwaita/titlebar/close_focus.png b/awesome/themes/adwaita/titlebar/close_focus.png Binary files differdeleted file mode 100644 index 01ef825..0000000 --- a/awesome/themes/adwaita/titlebar/close_focus.png +++ /dev/null diff --git a/awesome/themes/adwaita/titlebar/close_normal.png b/awesome/themes/adwaita/titlebar/close_normal.png Binary files differdeleted file mode 100644 index 5448ed8..0000000 --- a/awesome/themes/adwaita/titlebar/close_normal.png +++ /dev/null diff --git a/awesome/themes/adwaita/titlebar/floating_focus_active.png b/awesome/themes/adwaita/titlebar/floating_focus_active.png Binary files differdeleted file mode 100644 index 82dcc7c..0000000 --- a/awesome/themes/adwaita/titlebar/floating_focus_active.png +++ /dev/null diff --git a/awesome/themes/adwaita/titlebar/floating_focus_inactive.png b/awesome/themes/adwaita/titlebar/floating_focus_inactive.png Binary files differdeleted file mode 100644 index c19ba80..0000000 --- a/awesome/themes/adwaita/titlebar/floating_focus_inactive.png +++ /dev/null diff --git a/awesome/themes/adwaita/titlebar/floating_normal_active.png b/awesome/themes/adwaita/titlebar/floating_normal_active.png Binary files differdeleted file mode 100644 index 62342d1..0000000 --- a/awesome/themes/adwaita/titlebar/floating_normal_active.png +++ /dev/null diff --git a/awesome/themes/adwaita/titlebar/floating_normal_inactive.png b/awesome/themes/adwaita/titlebar/floating_normal_inactive.png Binary files differdeleted file mode 100644 index e2bbdfa..0000000 --- a/awesome/themes/adwaita/titlebar/floating_normal_inactive.png +++ /dev/null diff --git a/awesome/themes/adwaita/titlebar/maximized_focus_active.png b/awesome/themes/adwaita/titlebar/maximized_focus_active.png Binary files differdeleted file mode 100644 index d7dffd7..0000000 --- a/awesome/themes/adwaita/titlebar/maximized_focus_active.png +++ /dev/null diff --git a/awesome/themes/adwaita/titlebar/maximized_focus_inactive.png b/awesome/themes/adwaita/titlebar/maximized_focus_inactive.png Binary files differdeleted file mode 100644 index 844389f..0000000 --- a/awesome/themes/adwaita/titlebar/maximized_focus_inactive.png +++ /dev/null diff --git a/awesome/themes/adwaita/titlebar/maximized_normal_active.png b/awesome/themes/adwaita/titlebar/maximized_normal_active.png Binary files differdeleted file mode 100644 index a705f81..0000000 --- a/awesome/themes/adwaita/titlebar/maximized_normal_active.png +++ /dev/null diff --git a/awesome/themes/adwaita/titlebar/maximized_normal_inactive.png b/awesome/themes/adwaita/titlebar/maximized_normal_inactive.png Binary files differdeleted file mode 100644 index 4c1ab1f..0000000 --- a/awesome/themes/adwaita/titlebar/maximized_normal_inactive.png +++ /dev/null diff --git a/awesome/themes/adwaita/titlebar/minimize_focus.png b/awesome/themes/adwaita/titlebar/minimize_focus.png Binary files differdeleted file mode 100644 index caaceb2..0000000 --- a/awesome/themes/adwaita/titlebar/minimize_focus.png +++ /dev/null diff --git a/awesome/themes/adwaita/titlebar/minimize_normal.png b/awesome/themes/adwaita/titlebar/minimize_normal.png Binary files differdeleted file mode 100644 index 36621d0..0000000 --- a/awesome/themes/adwaita/titlebar/minimize_normal.png +++ /dev/null diff --git a/awesome/themes/adwaita/titlebar/ontop_focus_active.png b/awesome/themes/adwaita/titlebar/ontop_focus_active.png Binary files differdeleted file mode 100644 index 312c00b..0000000 --- a/awesome/themes/adwaita/titlebar/ontop_focus_active.png +++ /dev/null diff --git a/awesome/themes/adwaita/titlebar/ontop_focus_inactive.png b/awesome/themes/adwaita/titlebar/ontop_focus_inactive.png Binary files differdeleted file mode 100644 index a48e1c5..0000000 --- a/awesome/themes/adwaita/titlebar/ontop_focus_inactive.png +++ /dev/null diff --git a/awesome/themes/adwaita/titlebar/ontop_normal_active.png b/awesome/themes/adwaita/titlebar/ontop_normal_active.png Binary files differdeleted file mode 100644 index 117a203..0000000 --- a/awesome/themes/adwaita/titlebar/ontop_normal_active.png +++ /dev/null diff --git a/awesome/themes/adwaita/titlebar/ontop_normal_inactive.png b/awesome/themes/adwaita/titlebar/ontop_normal_inactive.png Binary files differdeleted file mode 100644 index d3a10c8..0000000 --- a/awesome/themes/adwaita/titlebar/ontop_normal_inactive.png +++ /dev/null diff --git a/awesome/themes/adwaita/titlebar/sticky_focus_active.png b/awesome/themes/adwaita/titlebar/sticky_focus_active.png Binary files differdeleted file mode 100644 index 814499b..0000000 --- a/awesome/themes/adwaita/titlebar/sticky_focus_active.png +++ /dev/null diff --git a/awesome/themes/adwaita/titlebar/sticky_focus_inactive.png b/awesome/themes/adwaita/titlebar/sticky_focus_inactive.png Binary files differdeleted file mode 100644 index 21b000d..0000000 --- a/awesome/themes/adwaita/titlebar/sticky_focus_inactive.png +++ /dev/null diff --git a/awesome/themes/adwaita/titlebar/sticky_normal_active.png b/awesome/themes/adwaita/titlebar/sticky_normal_active.png Binary files differdeleted file mode 100644 index bdb5595..0000000 --- a/awesome/themes/adwaita/titlebar/sticky_normal_active.png +++ /dev/null diff --git a/awesome/themes/adwaita/titlebar/sticky_normal_inactive.png b/awesome/themes/adwaita/titlebar/sticky_normal_inactive.png Binary files differdeleted file mode 100644 index a96b9b1..0000000 --- a/awesome/themes/adwaita/titlebar/sticky_normal_inactive.png +++ /dev/null diff --git a/awesome/themes/default/README b/awesome/themes/default/README deleted file mode 100644 index 1ddb349..0000000 --- a/awesome/themes/default/README +++ /dev/null @@ -1,3 +0,0 @@ -Background images: - Mikael Eriksson <mikael_eriksson@miffe.org> - Licensed under CC-BY-SA-3.0 diff --git a/awesome/themes/default/background.png b/awesome/themes/default/background.png Binary files differdeleted file mode 100644 index 8f52b6b..0000000 --- a/awesome/themes/default/background.png +++ /dev/null diff --git a/awesome/themes/default/background_white.png b/awesome/themes/default/background_white.png Binary files differdeleted file mode 100644 index bb0c5d0..0000000 --- a/awesome/themes/default/background_white.png +++ /dev/null diff --git a/awesome/themes/default/layouts/cornerne.png b/awesome/themes/default/layouts/cornerne.png Binary files differdeleted file mode 100644 index c85bd56..0000000 --- a/awesome/themes/default/layouts/cornerne.png +++ /dev/null diff --git a/awesome/themes/default/layouts/cornernew.png b/awesome/themes/default/layouts/cornernew.png Binary files differdeleted file mode 100644 index c3fd986..0000000 --- a/awesome/themes/default/layouts/cornernew.png +++ /dev/null diff --git a/awesome/themes/default/layouts/cornernw.png b/awesome/themes/default/layouts/cornernw.png Binary files differdeleted file mode 100644 index dfe78b3..0000000 --- a/awesome/themes/default/layouts/cornernw.png +++ /dev/null diff --git a/awesome/themes/default/layouts/cornernww.png b/awesome/themes/default/layouts/cornernww.png Binary files differdeleted file mode 100644 index f489010..0000000 --- a/awesome/themes/default/layouts/cornernww.png +++ /dev/null diff --git a/awesome/themes/default/layouts/cornerse.png b/awesome/themes/default/layouts/cornerse.png Binary files differdeleted file mode 100644 index 023ae79..0000000 --- a/awesome/themes/default/layouts/cornerse.png +++ /dev/null diff --git a/awesome/themes/default/layouts/cornersew.png b/awesome/themes/default/layouts/cornersew.png Binary files differdeleted file mode 100644 index f7cfa1c..0000000 --- a/awesome/themes/default/layouts/cornersew.png +++ /dev/null diff --git a/awesome/themes/default/layouts/cornersw.png b/awesome/themes/default/layouts/cornersw.png Binary files differdeleted file mode 100644 index c1453c9..0000000 --- a/awesome/themes/default/layouts/cornersw.png +++ /dev/null diff --git a/awesome/themes/default/layouts/cornersww.png b/awesome/themes/default/layouts/cornersww.png Binary files differdeleted file mode 100644 index a65a043..0000000 --- a/awesome/themes/default/layouts/cornersww.png +++ /dev/null diff --git a/awesome/themes/default/layouts/dwindle.png b/awesome/themes/default/layouts/dwindle.png Binary files differdeleted file mode 100644 index 9902d22..0000000 --- a/awesome/themes/default/layouts/dwindle.png +++ /dev/null diff --git a/awesome/themes/default/layouts/dwindlew.png b/awesome/themes/default/layouts/dwindlew.png Binary files differdeleted file mode 100644 index 9199049..0000000 --- a/awesome/themes/default/layouts/dwindlew.png +++ /dev/null diff --git a/awesome/themes/default/layouts/fairh.png b/awesome/themes/default/layouts/fairh.png Binary files differdeleted file mode 100644 index d41deea..0000000 --- a/awesome/themes/default/layouts/fairh.png +++ /dev/null diff --git a/awesome/themes/default/layouts/fairhw.png b/awesome/themes/default/layouts/fairhw.png Binary files differdeleted file mode 100644 index bb50e3a..0000000 --- a/awesome/themes/default/layouts/fairhw.png +++ /dev/null diff --git a/awesome/themes/default/layouts/fairv.png b/awesome/themes/default/layouts/fairv.png Binary files differdeleted file mode 100644 index f5f0288..0000000 --- a/awesome/themes/default/layouts/fairv.png +++ /dev/null diff --git a/awesome/themes/default/layouts/fairvw.png b/awesome/themes/default/layouts/fairvw.png Binary files differdeleted file mode 100644 index 4f4ed52..0000000 --- a/awesome/themes/default/layouts/fairvw.png +++ /dev/null diff --git a/awesome/themes/default/layouts/floating.png b/awesome/themes/default/layouts/floating.png Binary files differdeleted file mode 100644 index b8061a0..0000000 --- a/awesome/themes/default/layouts/floating.png +++ /dev/null diff --git a/awesome/themes/default/layouts/floatingw.png b/awesome/themes/default/layouts/floatingw.png Binary files differdeleted file mode 100644 index 4815894..0000000 --- a/awesome/themes/default/layouts/floatingw.png +++ /dev/null diff --git a/awesome/themes/default/layouts/fullscreen.png b/awesome/themes/default/layouts/fullscreen.png Binary files differdeleted file mode 100644 index d02f6fc..0000000 --- a/awesome/themes/default/layouts/fullscreen.png +++ /dev/null diff --git a/awesome/themes/default/layouts/fullscreenw.png b/awesome/themes/default/layouts/fullscreenw.png Binary files differdeleted file mode 100644 index 5c35bfa..0000000 --- a/awesome/themes/default/layouts/fullscreenw.png +++ /dev/null diff --git a/awesome/themes/default/layouts/magnifier.png b/awesome/themes/default/layouts/magnifier.png Binary files differdeleted file mode 100644 index 2925414..0000000 --- a/awesome/themes/default/layouts/magnifier.png +++ /dev/null diff --git a/awesome/themes/default/layouts/magnifierw.png b/awesome/themes/default/layouts/magnifierw.png Binary files differdeleted file mode 100644 index 6209556..0000000 --- a/awesome/themes/default/layouts/magnifierw.png +++ /dev/null diff --git a/awesome/themes/default/layouts/max.png b/awesome/themes/default/layouts/max.png Binary files differdeleted file mode 100644 index 8d20844..0000000 --- a/awesome/themes/default/layouts/max.png +++ /dev/null diff --git a/awesome/themes/default/layouts/maxw.png b/awesome/themes/default/layouts/maxw.png Binary files differdeleted file mode 100644 index 85f5ce3..0000000 --- a/awesome/themes/default/layouts/maxw.png +++ /dev/null diff --git a/awesome/themes/default/layouts/spiral.png b/awesome/themes/default/layouts/spiral.png Binary files differdeleted file mode 100644 index d9434be..0000000 --- a/awesome/themes/default/layouts/spiral.png +++ /dev/null diff --git a/awesome/themes/default/layouts/spiralw.png b/awesome/themes/default/layouts/spiralw.png Binary files differdeleted file mode 100644 index b78dd86..0000000 --- a/awesome/themes/default/layouts/spiralw.png +++ /dev/null diff --git a/awesome/themes/default/layouts/tile.png b/awesome/themes/default/layouts/tile.png Binary files differdeleted file mode 100644 index 3ede21e..0000000 --- a/awesome/themes/default/layouts/tile.png +++ /dev/null diff --git a/awesome/themes/default/layouts/tilebottom.png b/awesome/themes/default/layouts/tilebottom.png Binary files differdeleted file mode 100644 index 6f8c257..0000000 --- a/awesome/themes/default/layouts/tilebottom.png +++ /dev/null diff --git a/awesome/themes/default/layouts/tilebottomw.png b/awesome/themes/default/layouts/tilebottomw.png Binary files differdeleted file mode 100644 index a1de7b2..0000000 --- a/awesome/themes/default/layouts/tilebottomw.png +++ /dev/null diff --git a/awesome/themes/default/layouts/tileleft.png b/awesome/themes/default/layouts/tileleft.png Binary files differdeleted file mode 100644 index 31d6870..0000000 --- a/awesome/themes/default/layouts/tileleft.png +++ /dev/null diff --git a/awesome/themes/default/layouts/tileleftw.png b/awesome/themes/default/layouts/tileleftw.png Binary files differdeleted file mode 100644 index cf14c25..0000000 --- a/awesome/themes/default/layouts/tileleftw.png +++ /dev/null diff --git a/awesome/themes/default/layouts/tiletop.png b/awesome/themes/default/layouts/tiletop.png Binary files differdeleted file mode 100644 index 98cade2..0000000 --- a/awesome/themes/default/layouts/tiletop.png +++ /dev/null diff --git a/awesome/themes/default/layouts/tiletopw.png b/awesome/themes/default/layouts/tiletopw.png Binary files differdeleted file mode 100644 index d1d0872..0000000 --- a/awesome/themes/default/layouts/tiletopw.png +++ /dev/null diff --git a/awesome/themes/default/layouts/tilew.png b/awesome/themes/default/layouts/tilew.png Binary files differdeleted file mode 100644 index fde2ca4..0000000 --- a/awesome/themes/default/layouts/tilew.png +++ /dev/null diff --git a/awesome/themes/default/taglist/squarefw.png b/awesome/themes/default/taglist/squarefw.png Binary files differdeleted file mode 100644 index 2a86430..0000000 --- a/awesome/themes/default/taglist/squarefw.png +++ /dev/null diff --git a/awesome/themes/default/taglist/squarew.png b/awesome/themes/default/taglist/squarew.png Binary files differdeleted file mode 100644 index 913f2ca..0000000 --- a/awesome/themes/default/taglist/squarew.png +++ /dev/null diff --git a/awesome/themes/default/theme.lua b/awesome/themes/default/theme.lua deleted file mode 100644 index 806645a..0000000 --- a/awesome/themes/default/theme.lua +++ /dev/null @@ -1,131 +0,0 @@ ---------------------------- --- Default awesome theme -- ---------------------------- - -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 = {} - -theme.font = "Helvetica World 10" - -theme.bg_normal = "#303030" -theme.bg_focus = "#11427E" -theme.bg_urgent = "#ff0000" -theme.bg_minimize = "#444444" -theme.bg_systray = theme.bg_normal - -theme.fg_normal = "#aaaaaa" -theme.fg_focus = "#ffffff" -theme.fg_urgent = "#ffffff" -theme.fg_minimize = "#ffffff" - -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 --- 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(15) -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" - --- 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" - -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" -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 - --- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80 diff --git a/awesome/themes/default/titlebar/close_focus.png b/awesome/themes/default/titlebar/close_focus.png Binary files differdeleted file mode 100644 index 01ef825..0000000 --- a/awesome/themes/default/titlebar/close_focus.png +++ /dev/null diff --git a/awesome/themes/default/titlebar/close_normal.png b/awesome/themes/default/titlebar/close_normal.png Binary files differdeleted file mode 100644 index 5448ed8..0000000 --- a/awesome/themes/default/titlebar/close_normal.png +++ /dev/null diff --git a/awesome/themes/default/titlebar/floating_focus_active.png b/awesome/themes/default/titlebar/floating_focus_active.png Binary files differdeleted file mode 100644 index 82dcc7c..0000000 --- a/awesome/themes/default/titlebar/floating_focus_active.png +++ /dev/null diff --git a/awesome/themes/default/titlebar/floating_focus_inactive.png b/awesome/themes/default/titlebar/floating_focus_inactive.png Binary files differdeleted file mode 100644 index c19ba80..0000000 --- a/awesome/themes/default/titlebar/floating_focus_inactive.png +++ /dev/null diff --git a/awesome/themes/default/titlebar/floating_normal_active.png b/awesome/themes/default/titlebar/floating_normal_active.png Binary files differdeleted file mode 100644 index 62342d1..0000000 --- a/awesome/themes/default/titlebar/floating_normal_active.png +++ /dev/null diff --git a/awesome/themes/default/titlebar/floating_normal_inactive.png b/awesome/themes/default/titlebar/floating_normal_inactive.png Binary files differdeleted file mode 100644 index e2bbdfa..0000000 --- a/awesome/themes/default/titlebar/floating_normal_inactive.png +++ /dev/null diff --git a/awesome/themes/default/titlebar/maximized_focus_active.png b/awesome/themes/default/titlebar/maximized_focus_active.png Binary files differdeleted file mode 100644 index d7dffd7..0000000 --- a/awesome/themes/default/titlebar/maximized_focus_active.png +++ /dev/null diff --git a/awesome/themes/default/titlebar/maximized_focus_inactive.png b/awesome/themes/default/titlebar/maximized_focus_inactive.png Binary files differdeleted file mode 100644 index 844389f..0000000 --- a/awesome/themes/default/titlebar/maximized_focus_inactive.png +++ /dev/null diff --git a/awesome/themes/default/titlebar/maximized_normal_active.png b/awesome/themes/default/titlebar/maximized_normal_active.png Binary files differdeleted file mode 100644 index a705f81..0000000 --- a/awesome/themes/default/titlebar/maximized_normal_active.png +++ /dev/null diff --git a/awesome/themes/default/titlebar/maximized_normal_inactive.png b/awesome/themes/default/titlebar/maximized_normal_inactive.png Binary files differdeleted file mode 100644 index 4c1ab1f..0000000 --- a/awesome/themes/default/titlebar/maximized_normal_inactive.png +++ /dev/null diff --git a/awesome/themes/default/titlebar/minimize_focus.png b/awesome/themes/default/titlebar/minimize_focus.png Binary files differdeleted file mode 100644 index caaceb2..0000000 --- a/awesome/themes/default/titlebar/minimize_focus.png +++ /dev/null diff --git a/awesome/themes/default/titlebar/minimize_normal.png b/awesome/themes/default/titlebar/minimize_normal.png Binary files differdeleted file mode 100644 index 36621d0..0000000 --- a/awesome/themes/default/titlebar/minimize_normal.png +++ /dev/null diff --git a/awesome/themes/default/titlebar/ontop_focus_active.png b/awesome/themes/default/titlebar/ontop_focus_active.png Binary files differdeleted file mode 100644 index 312c00b..0000000 --- a/awesome/themes/default/titlebar/ontop_focus_active.png +++ /dev/null diff --git a/awesome/themes/default/titlebar/ontop_focus_inactive.png b/awesome/themes/default/titlebar/ontop_focus_inactive.png Binary files differdeleted file mode 100644 index a48e1c5..0000000 --- a/awesome/themes/default/titlebar/ontop_focus_inactive.png +++ /dev/null diff --git a/awesome/themes/default/titlebar/ontop_normal_active.png b/awesome/themes/default/titlebar/ontop_normal_active.png Binary files differdeleted file mode 100644 index 117a203..0000000 --- a/awesome/themes/default/titlebar/ontop_normal_active.png +++ /dev/null diff --git a/awesome/themes/default/titlebar/ontop_normal_inactive.png b/awesome/themes/default/titlebar/ontop_normal_inactive.png Binary files differdeleted file mode 100644 index d3a10c8..0000000 --- a/awesome/themes/default/titlebar/ontop_normal_inactive.png +++ /dev/null diff --git a/awesome/themes/default/titlebar/sticky_focus_active.png b/awesome/themes/default/titlebar/sticky_focus_active.png Binary files differdeleted file mode 100644 index 814499b..0000000 --- a/awesome/themes/default/titlebar/sticky_focus_active.png +++ /dev/null diff --git a/awesome/themes/default/titlebar/sticky_focus_inactive.png b/awesome/themes/default/titlebar/sticky_focus_inactive.png Binary files differdeleted file mode 100644 index 21b000d..0000000 --- a/awesome/themes/default/titlebar/sticky_focus_inactive.png +++ /dev/null diff --git a/awesome/themes/default/titlebar/sticky_normal_active.png b/awesome/themes/default/titlebar/sticky_normal_active.png Binary files differdeleted file mode 100644 index bdb5595..0000000 --- a/awesome/themes/default/titlebar/sticky_normal_active.png +++ /dev/null diff --git a/awesome/themes/default/titlebar/sticky_normal_inactive.png b/awesome/themes/default/titlebar/sticky_normal_inactive.png Binary files differdeleted file mode 100644 index a96b9b1..0000000 --- a/awesome/themes/default/titlebar/sticky_normal_inactive.png +++ /dev/null diff --git a/awesome/themes/vide/README b/awesome/themes/vide/README deleted file mode 100644 index 9616ab2..0000000 --- a/awesome/themes/vide/README +++ /dev/null @@ -1,5 +0,0 @@ -Place in the $HOME/.config/awesome/themes/vide directory 🤷🏽♂️ - -Default awesomewm background images: - Mikael Eriksson <mikael_eriksson@miffe.org> - Licensed under CC-BY-SA-3.0 diff --git a/awesome/themes/vide/arch-submenu.png b/awesome/themes/vide/arch-submenu.png Binary files differdeleted file mode 100644 index ec99596..0000000 --- a/awesome/themes/vide/arch-submenu.png +++ /dev/null diff --git a/awesome/themes/vide/background.png b/awesome/themes/vide/background.png Binary files differdeleted file mode 100644 index 8f52b6b..0000000 --- a/awesome/themes/vide/background.png +++ /dev/null diff --git a/awesome/themes/vide/background_white.png b/awesome/themes/vide/background_white.png Binary files differdeleted file mode 100644 index bb0c5d0..0000000 --- a/awesome/themes/vide/background_white.png +++ /dev/null diff --git a/awesome/themes/vide/layouts/cornerne.png b/awesome/themes/vide/layouts/cornerne.png Binary files differdeleted file mode 100644 index c85bd56..0000000 --- a/awesome/themes/vide/layouts/cornerne.png +++ /dev/null diff --git a/awesome/themes/vide/layouts/cornernew.png b/awesome/themes/vide/layouts/cornernew.png Binary files differdeleted file mode 100644 index c3fd986..0000000 --- a/awesome/themes/vide/layouts/cornernew.png +++ /dev/null diff --git a/awesome/themes/vide/layouts/cornernw.png b/awesome/themes/vide/layouts/cornernw.png Binary files differdeleted file mode 100644 index dfe78b3..0000000 --- a/awesome/themes/vide/layouts/cornernw.png +++ /dev/null diff --git a/awesome/themes/vide/layouts/cornernww.png b/awesome/themes/vide/layouts/cornernww.png Binary files differdeleted file mode 100644 index f489010..0000000 --- a/awesome/themes/vide/layouts/cornernww.png +++ /dev/null diff --git a/awesome/themes/vide/layouts/cornerse.png b/awesome/themes/vide/layouts/cornerse.png Binary files differdeleted file mode 100644 index 023ae79..0000000 --- a/awesome/themes/vide/layouts/cornerse.png +++ /dev/null diff --git a/awesome/themes/vide/layouts/cornersew.png b/awesome/themes/vide/layouts/cornersew.png Binary files differdeleted file mode 100644 index f7cfa1c..0000000 --- a/awesome/themes/vide/layouts/cornersew.png +++ /dev/null diff --git a/awesome/themes/vide/layouts/cornersw.png b/awesome/themes/vide/layouts/cornersw.png Binary files differdeleted file mode 100644 index c1453c9..0000000 --- a/awesome/themes/vide/layouts/cornersw.png +++ /dev/null diff --git a/awesome/themes/vide/layouts/cornersww.png b/awesome/themes/vide/layouts/cornersww.png Binary files differdeleted file mode 100644 index a65a043..0000000 --- a/awesome/themes/vide/layouts/cornersww.png +++ /dev/null diff --git a/awesome/themes/vide/layouts/dwindle.png b/awesome/themes/vide/layouts/dwindle.png Binary files differdeleted file mode 100644 index 9902d22..0000000 --- a/awesome/themes/vide/layouts/dwindle.png +++ /dev/null diff --git a/awesome/themes/vide/layouts/dwindlew.png b/awesome/themes/vide/layouts/dwindlew.png Binary files differdeleted file mode 100644 index 9199049..0000000 --- a/awesome/themes/vide/layouts/dwindlew.png +++ /dev/null diff --git a/awesome/themes/vide/layouts/fairh.png b/awesome/themes/vide/layouts/fairh.png Binary files differdeleted file mode 100644 index d41deea..0000000 --- a/awesome/themes/vide/layouts/fairh.png +++ /dev/null diff --git a/awesome/themes/vide/layouts/fairhw.png b/awesome/themes/vide/layouts/fairhw.png Binary files differdeleted file mode 100644 index bb50e3a..0000000 --- a/awesome/themes/vide/layouts/fairhw.png +++ /dev/null diff --git a/awesome/themes/vide/layouts/fairv.png b/awesome/themes/vide/layouts/fairv.png Binary files differdeleted file mode 100644 index f5f0288..0000000 --- a/awesome/themes/vide/layouts/fairv.png +++ /dev/null diff --git a/awesome/themes/vide/layouts/fairvw.png b/awesome/themes/vide/layouts/fairvw.png Binary files differdeleted file mode 100644 index 4f4ed52..0000000 --- a/awesome/themes/vide/layouts/fairvw.png +++ /dev/null diff --git a/awesome/themes/vide/layouts/floating.png b/awesome/themes/vide/layouts/floating.png Binary files differdeleted file mode 100644 index b8061a0..0000000 --- a/awesome/themes/vide/layouts/floating.png +++ /dev/null diff --git a/awesome/themes/vide/layouts/floatingw.png b/awesome/themes/vide/layouts/floatingw.png Binary files differdeleted file mode 100644 index 4815894..0000000 --- a/awesome/themes/vide/layouts/floatingw.png +++ /dev/null diff --git a/awesome/themes/vide/layouts/fullscreen.png b/awesome/themes/vide/layouts/fullscreen.png Binary files differdeleted file mode 100644 index d02f6fc..0000000 --- a/awesome/themes/vide/layouts/fullscreen.png +++ /dev/null diff --git a/awesome/themes/vide/layouts/fullscreenw.png b/awesome/themes/vide/layouts/fullscreenw.png Binary files differdeleted file mode 100644 index 5c35bfa..0000000 --- a/awesome/themes/vide/layouts/fullscreenw.png +++ /dev/null diff --git a/awesome/themes/vide/layouts/magnifier.png b/awesome/themes/vide/layouts/magnifier.png Binary files differdeleted file mode 100644 index 2925414..0000000 --- a/awesome/themes/vide/layouts/magnifier.png +++ /dev/null diff --git a/awesome/themes/vide/layouts/magnifierw.png b/awesome/themes/vide/layouts/magnifierw.png Binary files differdeleted file mode 100644 index 6209556..0000000 --- a/awesome/themes/vide/layouts/magnifierw.png +++ /dev/null diff --git a/awesome/themes/vide/layouts/max.png b/awesome/themes/vide/layouts/max.png Binary files differdeleted file mode 100644 index 8d20844..0000000 --- a/awesome/themes/vide/layouts/max.png +++ /dev/null diff --git a/awesome/themes/vide/layouts/maxw.png b/awesome/themes/vide/layouts/maxw.png Binary files differdeleted file mode 100644 index 85f5ce3..0000000 --- a/awesome/themes/vide/layouts/maxw.png +++ /dev/null diff --git a/awesome/themes/vide/layouts/spiral.png b/awesome/themes/vide/layouts/spiral.png Binary files differdeleted file mode 100644 index d9434be..0000000 --- a/awesome/themes/vide/layouts/spiral.png +++ /dev/null diff --git a/awesome/themes/vide/layouts/spiralw.png b/awesome/themes/vide/layouts/spiralw.png Binary files differdeleted file mode 100644 index b78dd86..0000000 --- a/awesome/themes/vide/layouts/spiralw.png +++ /dev/null diff --git a/awesome/themes/vide/layouts/tile.png b/awesome/themes/vide/layouts/tile.png Binary files differdeleted file mode 100644 index 3ede21e..0000000 --- a/awesome/themes/vide/layouts/tile.png +++ /dev/null diff --git a/awesome/themes/vide/layouts/tilebottom.png b/awesome/themes/vide/layouts/tilebottom.png Binary files differdeleted file mode 100644 index 6f8c257..0000000 --- a/awesome/themes/vide/layouts/tilebottom.png +++ /dev/null diff --git a/awesome/themes/vide/layouts/tilebottomw.png b/awesome/themes/vide/layouts/tilebottomw.png Binary files differdeleted file mode 100644 index a1de7b2..0000000 --- a/awesome/themes/vide/layouts/tilebottomw.png +++ /dev/null diff --git a/awesome/themes/vide/layouts/tileleft.png b/awesome/themes/vide/layouts/tileleft.png Binary files differdeleted file mode 100644 index 31d6870..0000000 --- a/awesome/themes/vide/layouts/tileleft.png +++ /dev/null diff --git a/awesome/themes/vide/layouts/tileleftw.png b/awesome/themes/vide/layouts/tileleftw.png Binary files differdeleted file mode 100644 index cf14c25..0000000 --- a/awesome/themes/vide/layouts/tileleftw.png +++ /dev/null diff --git a/awesome/themes/vide/layouts/tiletop.png b/awesome/themes/vide/layouts/tiletop.png Binary files differdeleted file mode 100644 index 98cade2..0000000 --- a/awesome/themes/vide/layouts/tiletop.png +++ /dev/null diff --git a/awesome/themes/vide/layouts/tiletopw.png b/awesome/themes/vide/layouts/tiletopw.png Binary files differdeleted file mode 100644 index d1d0872..0000000 --- a/awesome/themes/vide/layouts/tiletopw.png +++ /dev/null diff --git a/awesome/themes/vide/layouts/tilew.png b/awesome/themes/vide/layouts/tilew.png Binary files differdeleted file mode 100644 index fde2ca4..0000000 --- a/awesome/themes/vide/layouts/tilew.png +++ /dev/null diff --git a/awesome/themes/vide/taglist/squarefw.png b/awesome/themes/vide/taglist/squarefw.png Binary files differdeleted file mode 100644 index 2a86430..0000000 --- a/awesome/themes/vide/taglist/squarefw.png +++ /dev/null diff --git a/awesome/themes/vide/taglist/squarew.png b/awesome/themes/vide/taglist/squarew.png Binary files differdeleted file mode 100644 index 913f2ca..0000000 --- a/awesome/themes/vide/taglist/squarew.png +++ /dev/null diff --git a/awesome/themes/vide/theme.lua b/awesome/themes/vide/theme.lua deleted file mode 100644 index c65d64c..0000000 --- a/awesome/themes/vide/theme.lua +++ /dev/null @@ -1,135 +0,0 @@ ---------------------------- --- Vide awesome theme -- ---------------------------- - -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_system = gfs.get_themes_dir() -local themes_path = "~/.config/awesome/themes/" - -local theme = {} - -theme.font = "JetBrains Mono 10" - -theme.bg_normal = "#000000" -theme.bg_focus = "#303030" -theme.bg_urgent = "#7d4c10" -theme.bg_minimize = "#757575" -theme.bg_systray = theme.bg_normal - -theme.fg_normal = "#aaaaaa" -theme.fg_focus = "#ffffff" -theme.fg_urgent = "#ffffff" -theme.fg_minimize = "#000000" - -theme.useless_gap = dpi(0) -theme.border_width = dpi(2) -theme.border_normal = "#303030" -theme.border_focus = "#c5c5c5" -theme.border_marked = "#7d4c10" - --- 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_system.."default/submenu.png" -theme.menu_height = dpi(20) -theme.menu_width = dpi(170) - --- 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.."vide/titlebar/close_normal.png" -theme.titlebar_close_button_focus = themes_path.."vide/titlebar/close_focus.png" - -theme.titlebar_minimize_button_normal = themes_path.."vide/titlebar/minimize_normal.png" -theme.titlebar_minimize_button_focus = themes_path.."vide/titlebar/minimize_focus.png" - -theme.titlebar_ontop_button_normal_inactive = themes_path.."vide/titlebar/ontop_normal_inactive.png" -theme.titlebar_ontop_button_focus_inactive = themes_path.."vide/titlebar/ontop_focus_inactive.png" -theme.titlebar_ontop_button_normal_active = themes_path.."vide/titlebar/ontop_normal_active.png" -theme.titlebar_ontop_button_focus_active = themes_path.."vide/titlebar/ontop_focus_active.png" - -theme.titlebar_sticky_button_normal_inactive = themes_path.."vide/titlebar/sticky_normal_inactive.png" -theme.titlebar_sticky_button_focus_inactive = themes_path.."vide/titlebar/sticky_focus_inactive.png" -theme.titlebar_sticky_button_normal_active = themes_path.."vide/titlebar/sticky_normal_active.png" -theme.titlebar_sticky_button_focus_active = themes_path.."vide/titlebar/sticky_focus_active.png" - -theme.titlebar_floating_button_normal_inactive = themes_path.."vide/titlebar/floating_normal_inactive.png" -theme.titlebar_floating_button_focus_inactive = themes_path.."vide/titlebar/floating_focus_inactive.png" -theme.titlebar_floating_button_normal_active = themes_path.."vide/titlebar/floating_normal_active.png" -theme.titlebar_floating_button_focus_active = themes_path.."vide/titlebar/floating_focus_active.png" - -theme.titlebar_maximized_button_normal_inactive = themes_path.."vide/titlebar/maximized_normal_inactive.png" -theme.titlebar_maximized_button_focus_inactive = themes_path.."vide/titlebar/maximized_focus_inactive.png" -theme.titlebar_maximized_button_normal_active = themes_path.."vide/titlebar/maximized_normal_active.png" -theme.titlebar_maximized_button_focus_active = themes_path.."vide/titlebar/maximized_focus_active.png" - --- theme.wallpaper = themes_path.."vide/background.png" -theme.wallpaper = themes_path.."vide/vide.jpg" - --- You can use your own layout icons like this: -theme.layout_fairh = themes_path.."vide/layouts/fairhw.png" -theme.layout_fairv = themes_path.."vide/layouts/fairvw.png" -theme.layout_floating = themes_path.."vide/layouts/floatingw.png" -theme.layout_magnifier = themes_path.."vide/layouts/magnifierw.png" -theme.layout_max = themes_path.."vide/layouts/maxw.png" -theme.layout_fullscreen = themes_path.."vide/layouts/fullscreenw.png" -theme.layout_tilebottom = themes_path.."vide/layouts/tilebottomw.png" -theme.layout_tileleft = themes_path.."vide/layouts/tileleftw.png" -theme.layout_tile = themes_path.."vide/layouts/tilew.png" -theme.layout_tiletop = themes_path.."vide/layouts/tiletopw.png" -theme.layout_spiral = themes_path.."vide/layouts/spiralw.png" -theme.layout_dwindle = themes_path.."vide/layouts/dwindlew.png" -theme.layout_cornernw = themes_path.."vide/layouts/cornernww.png" -theme.layout_cornerne = themes_path.."vide/layouts/cornernew.png" -theme.layout_cornersw = themes_path.."vide/layouts/cornersww.png" -theme.layout_cornerse = themes_path.."vide/layouts/cornersew.png" - --- Generate Awesome icon: ---[[theme.awesome_icon = theme_assets.awesome_icon( - theme.menu_height, theme.bg_focus, theme.fg_focus -) ]]-- - --- theme.awesome_icon = themes_path.."vide/arch-submenu.png" - --- 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 - --- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80 diff --git a/awesome/themes/vide/titlebar/close_focus.png b/awesome/themes/vide/titlebar/close_focus.png Binary files differdeleted file mode 100644 index 01ef825..0000000 --- a/awesome/themes/vide/titlebar/close_focus.png +++ /dev/null diff --git a/awesome/themes/vide/titlebar/close_normal.png b/awesome/themes/vide/titlebar/close_normal.png Binary files differdeleted file mode 100644 index 5448ed8..0000000 --- a/awesome/themes/vide/titlebar/close_normal.png +++ /dev/null diff --git a/awesome/themes/vide/titlebar/floating_focus_active.png b/awesome/themes/vide/titlebar/floating_focus_active.png Binary files differdeleted file mode 100644 index 82dcc7c..0000000 --- a/awesome/themes/vide/titlebar/floating_focus_active.png +++ /dev/null diff --git a/awesome/themes/vide/titlebar/floating_focus_inactive.png b/awesome/themes/vide/titlebar/floating_focus_inactive.png Binary files differdeleted file mode 100644 index c19ba80..0000000 --- a/awesome/themes/vide/titlebar/floating_focus_inactive.png +++ /dev/null diff --git a/awesome/themes/vide/titlebar/floating_normal_active.png b/awesome/themes/vide/titlebar/floating_normal_active.png Binary files differdeleted file mode 100644 index 62342d1..0000000 --- a/awesome/themes/vide/titlebar/floating_normal_active.png +++ /dev/null diff --git a/awesome/themes/vide/titlebar/floating_normal_inactive.png b/awesome/themes/vide/titlebar/floating_normal_inactive.png Binary files differdeleted file mode 100644 index e2bbdfa..0000000 --- a/awesome/themes/vide/titlebar/floating_normal_inactive.png +++ /dev/null diff --git a/awesome/themes/vide/titlebar/maximized_focus_active.png b/awesome/themes/vide/titlebar/maximized_focus_active.png Binary files differdeleted file mode 100644 index d7dffd7..0000000 --- a/awesome/themes/vide/titlebar/maximized_focus_active.png +++ /dev/null diff --git a/awesome/themes/vide/titlebar/maximized_focus_inactive.png b/awesome/themes/vide/titlebar/maximized_focus_inactive.png Binary files differdeleted file mode 100644 index 844389f..0000000 --- a/awesome/themes/vide/titlebar/maximized_focus_inactive.png +++ /dev/null diff --git a/awesome/themes/vide/titlebar/maximized_normal_active.png b/awesome/themes/vide/titlebar/maximized_normal_active.png Binary files differdeleted file mode 100644 index a705f81..0000000 --- a/awesome/themes/vide/titlebar/maximized_normal_active.png +++ /dev/null diff --git a/awesome/themes/vide/titlebar/maximized_normal_inactive.png b/awesome/themes/vide/titlebar/maximized_normal_inactive.png Binary files differdeleted file mode 100644 index 4c1ab1f..0000000 --- a/awesome/themes/vide/titlebar/maximized_normal_inactive.png +++ /dev/null diff --git a/awesome/themes/vide/titlebar/minimize_focus.png b/awesome/themes/vide/titlebar/minimize_focus.png Binary files differdeleted file mode 100644 index caaceb2..0000000 --- a/awesome/themes/vide/titlebar/minimize_focus.png +++ /dev/null diff --git a/awesome/themes/vide/titlebar/minimize_normal.png b/awesome/themes/vide/titlebar/minimize_normal.png Binary files differdeleted file mode 100644 index 36621d0..0000000 --- a/awesome/themes/vide/titlebar/minimize_normal.png +++ /dev/null diff --git a/awesome/themes/vide/titlebar/ontop_focus_active.png b/awesome/themes/vide/titlebar/ontop_focus_active.png Binary files differdeleted file mode 100644 index 312c00b..0000000 --- a/awesome/themes/vide/titlebar/ontop_focus_active.png +++ /dev/null diff --git a/awesome/themes/vide/titlebar/ontop_focus_inactive.png b/awesome/themes/vide/titlebar/ontop_focus_inactive.png Binary files differdeleted file mode 100644 index a48e1c5..0000000 --- a/awesome/themes/vide/titlebar/ontop_focus_inactive.png +++ /dev/null diff --git a/awesome/themes/vide/titlebar/ontop_normal_active.png b/awesome/themes/vide/titlebar/ontop_normal_active.png Binary files differdeleted file mode 100644 index 117a203..0000000 --- a/awesome/themes/vide/titlebar/ontop_normal_active.png +++ /dev/null diff --git a/awesome/themes/vide/titlebar/ontop_normal_inactive.png b/awesome/themes/vide/titlebar/ontop_normal_inactive.png Binary files differdeleted file mode 100644 index d3a10c8..0000000 --- a/awesome/themes/vide/titlebar/ontop_normal_inactive.png +++ /dev/null diff --git a/awesome/themes/vide/titlebar/sticky_focus_active.png b/awesome/themes/vide/titlebar/sticky_focus_active.png Binary files differdeleted file mode 100644 index 814499b..0000000 --- a/awesome/themes/vide/titlebar/sticky_focus_active.png +++ /dev/null diff --git a/awesome/themes/vide/titlebar/sticky_focus_inactive.png b/awesome/themes/vide/titlebar/sticky_focus_inactive.png Binary files differdeleted file mode 100644 index 21b000d..0000000 --- a/awesome/themes/vide/titlebar/sticky_focus_inactive.png +++ /dev/null diff --git a/awesome/themes/vide/titlebar/sticky_normal_active.png b/awesome/themes/vide/titlebar/sticky_normal_active.png Binary files differdeleted file mode 100644 index bdb5595..0000000 --- a/awesome/themes/vide/titlebar/sticky_normal_active.png +++ /dev/null diff --git a/awesome/themes/vide/titlebar/sticky_normal_inactive.png b/awesome/themes/vide/titlebar/sticky_normal_inactive.png Binary files differdeleted file mode 100644 index a96b9b1..0000000 --- a/awesome/themes/vide/titlebar/sticky_normal_inactive.png +++ /dev/null diff --git a/awesome/themes/vide/vide.jpg b/awesome/themes/vide/vide.jpg Binary files differdeleted file mode 100644 index 2705c49..0000000 --- a/awesome/themes/vide/vide.jpg +++ /dev/null diff --git a/awesome/xinput-daemon.sh b/awesome/xinput-daemon.sh deleted file mode 100755 index 959ab72..0000000 --- a/awesome/xinput-daemon.sh +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/sh - - -apply_settings () { - - sleep 2 - xinput set-prop pointer:"Logitech USB Trackball" "libinput Natural Scrolling Enabled" 1 - xinput set-prop pointer:"Logitech USB Trackball" "libinput Accel Speed" 1.000000 - xinput set-prop pointer:"SteelSeries SteelSeries Rival 310 eSports Mouse" "libinput Accel Speed" 0.300000 - xinput set-prop pointer:"ELECOM ELECOM TrackBall Mouse" "libinput Accel Speed" 0.300000 - xinput set-prop pointer:"Logitech M705" "libinput Accel Speed" 1.000000 - -} - -apply_settings - -while true; do state=$(lsusb) && sleep 2 && [ "$state" != "$(lsusb)" ] && apply_settings; done |
