diff --git a/assets/art/wall_secondary.png b/assets/art/wall_secondary.png new file mode 100644 index 0000000..4a07b22 Binary files /dev/null and b/assets/art/wall_secondary.png differ diff --git a/assets/icons/tarche.png b/assets/icons/tarche.png new file mode 100755 index 0000000..627116f Binary files /dev/null and b/assets/icons/tarche.png differ diff --git a/assets/rofi/themes/paper-float.rasi b/assets/rofi/themes/paper-float.rasi index 1e45c6f..4d1d2fa 100644 --- a/assets/rofi/themes/paper-float.rasi +++ b/assets/rofi/themes/paper-float.rasi @@ -22,6 +22,7 @@ location: center; highlight: bold #fff; + sidebar-mode: true; } #window { diff --git a/config.lua b/config.lua index 5c9c83d..c5b53c2 100644 --- a/config.lua +++ b/config.lua @@ -6,6 +6,8 @@ local naughty = require("naughty") local config = {} +local rofi_modes = "drun,window,run" + -- -- Awesome WM -- @@ -19,8 +21,8 @@ config.awesome = { -- Application launcher 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_cmd = "rofi -show run -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 -modi \"" .. rofi_modes .. "\" -show run", -- Screen locker 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.bottom, awful.layout.suit.tile.top, - -- awful.layout.suit.fair, - -- awful.layout.suit.fair.horizontal, + awful.layout.suit.fair, + awful.layout.suit.fair.horizontal, -- awful.layout.suit.spiral, -- awful.layout.suit.spiral.dwindle, -- awful.layout.suit.max, @@ -152,7 +154,7 @@ config.widgets = { -- Keyboard layout widget keyboard_layout = { enabled = true, - layouts = { "latam", "us" }, + layouts = { "us(intl)", "latam" }, layout_switch_command = "setxkbmap", }, @@ -196,7 +198,7 @@ config.theme = awful.util.getdir("config") .. "/theme.lua" config.screenshot_utility_command = "flameshot gui" -- 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 config.volume_osd_timeout = 2 diff --git a/simple/init.lua b/simple/init.lua index 14e229c..0312b46 100644 --- a/simple/init.lua +++ b/simple/init.lua @@ -255,7 +255,7 @@ awful.screen.connect_for_each_screen(function(s) set_wallpaper(s) -- 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 s.mypromptbox = awful.widget.prompt() diff --git a/simple/media_control.lua b/simple/media_control.lua index 26defef..aeb607e 100644 --- a/simple/media_control.lua +++ b/simple/media_control.lua @@ -49,13 +49,13 @@ end function increaseBrightness(callback) callback = callback or function() end - awful.spawn.easy_async("xbacklight -inc 2", callback) + awful.spawn.easy_async("xbacklight -inc 10", callback) end function decreaseBrightness(callback) callback = callback or function() end - awful.spawn.easy_async("xbacklight -dec 2", callback) + awful.spawn.easy_async("xbacklight -dec 10", callback) end diff --git a/theme.lua b/theme.lua index 109bd31..0886594 100644 --- a/theme.lua +++ b/theme.lua @@ -139,7 +139,7 @@ theme.titlebar_floating_button_focus_active = theme.titlebar_floating_button_nor 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: theme.layout_fairh = themes_path.."default/layouts/fairhw.png"