Changed background and some other shit

This commit is contained in:
Lucas Hernán Tarche 2021-09-20 14:07:48 -03:00
parent 052a88fa5d
commit f5962496c2
7 changed files with 13 additions and 10 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

BIN
assets/icons/tarche.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

View File

@ -22,6 +22,7 @@
location: center; location: center;
highlight: bold #fff; highlight: bold #fff;
sidebar-mode: true;
} }
#window { #window {

View File

@ -6,6 +6,8 @@ local naughty = require("naughty")
local config = {} local config = {}
local rofi_modes = "drun,window,run"
-- --
-- Awesome WM -- Awesome WM
-- --
@ -19,8 +21,8 @@ config.awesome = {
-- Application launcher -- Application launcher
application_launcher_check = "rofi -version", application_launcher_check = "rofi -version",
application_launcher = "rofi -show drun -modi drun -show-icons -config " .. awful.util.getdir("config") .. "/assets/rofi/themes/paper-float.rasi", application_launcher = "rofi -modi \"" .. rofi_modes .. "\" -show-icons -show drun",
application_launcher_cmd = "rofi -show run -config " .. awful.util.getdir("config") .. "/assets/rofi/themes/paper-float.rasi", application_launcher_cmd = "rofi -modi \"" .. rofi_modes .. "\" -show run",
-- Screen locker -- Screen locker
lock_command = "i3lock --blur=5 -f -k --time-color=ffffffff --date-color=ffffffff --indicator --ring-color=aaaaaaaa", lock_command = "i3lock --blur=5 -f -k --time-color=ffffffff --date-color=ffffffff --indicator --ring-color=aaaaaaaa",
@ -38,8 +40,8 @@ config.awesome = {
awful.layout.suit.tile.left, awful.layout.suit.tile.left,
awful.layout.suit.tile.bottom, awful.layout.suit.tile.bottom,
awful.layout.suit.tile.top, awful.layout.suit.tile.top,
-- awful.layout.suit.fair, awful.layout.suit.fair,
-- awful.layout.suit.fair.horizontal, awful.layout.suit.fair.horizontal,
-- awful.layout.suit.spiral, -- awful.layout.suit.spiral,
-- awful.layout.suit.spiral.dwindle, -- awful.layout.suit.spiral.dwindle,
-- awful.layout.suit.max, -- awful.layout.suit.max,
@ -152,7 +154,7 @@ config.widgets = {
-- Keyboard layout widget -- Keyboard layout widget
keyboard_layout = { keyboard_layout = {
enabled = true, enabled = true,
layouts = { "latam", "us" }, layouts = { "us(intl)", "latam" },
layout_switch_command = "setxkbmap", layout_switch_command = "setxkbmap",
}, },
@ -196,7 +198,7 @@ config.theme = awful.util.getdir("config") .. "/theme.lua"
config.screenshot_utility_command = "flameshot gui" config.screenshot_utility_command = "flameshot gui"
-- Run menu -- Run menu
config.windowSwitcher = "rofi -show window -config " .. awful.util.getdir("config") .. "/assets/rofi/themes/paper-float.rasi" config.windowSwitcher = "rofi -modi \"" .. rofi_modes .. "\" -show-icons -show window"
-- Media control -- Media control
config.volume_osd_timeout = 2 config.volume_osd_timeout = 2

View File

@ -255,7 +255,7 @@ awful.screen.connect_for_each_screen(function(s)
set_wallpaper(s) set_wallpaper(s)
-- Each screen has its own tag table. -- Each screen has its own tag table.
awful.tag({ "1", "2", "3", "4", "5", "6" }, s, awful.layout.layouts[1]) awful.tag({ "1", "2", "3", "4", "5", "6" }, s, awful.layout.layouts[2])
-- Create a promptbox for each screen -- Create a promptbox for each screen
s.mypromptbox = awful.widget.prompt() s.mypromptbox = awful.widget.prompt()

View File

@ -49,13 +49,13 @@ end
function increaseBrightness(callback) function increaseBrightness(callback)
callback = callback or function() callback = callback or function()
end end
awful.spawn.easy_async("xbacklight -inc 2", callback) awful.spawn.easy_async("xbacklight -inc 10", callback)
end end
function decreaseBrightness(callback) function decreaseBrightness(callback)
callback = callback or function() callback = callback or function()
end end
awful.spawn.easy_async("xbacklight -dec 2", callback) awful.spawn.easy_async("xbacklight -dec 10", callback)
end end

View File

@ -139,7 +139,7 @@ theme.titlebar_floating_button_focus_active = theme.titlebar_floating_button_nor
theme.titlebar_floating_button_hover_bg_color = '#555' theme.titlebar_floating_button_hover_bg_color = '#555'
theme.wallpaper = simple_awesome_path.."/assets/art/default_wallpaper.png" theme.wallpaper = simple_awesome_path.."/assets/art/wall_secondary.png"
-- You can use your own layout icons like this: -- You can use your own layout icons like this:
theme.layout_fairh = themes_path.."default/layouts/fairhw.png" theme.layout_fairh = themes_path.."default/layouts/fairhw.png"