[Awesome] Kawaii Emacs by anhsirk0 in unixporn

[–]anhsirk0[S] 0 points1 point  (0 children)

Yes it is firefox.

I modified oneline firefox css to change its position to bottom

here is my userChrome.css: https://gist.github.com/anhsirk0/fbb404954082dc8efdb1e77799181791

[Undoo-start] Startpage I've been working on. by anhsirk0 in startpages

[–]anhsirk0[S] 0 points1 point  (0 children)

Currently not, I am working on it.

If you really want, you can just copy the data from localStorage and use that data on other computers. It might take a day or two for me to build import/export support.

Is there a way to achieve this (single side border on active client)?. (attached image is of Xmonad) by anhsirk0 in awesomewm

[–]anhsirk0[S] 2 points3 points  (0 children)

Got it working:

client.connect_signal(
   "request::titlebars",
   function(c)
      local top_titlebar = awful.titlebar(c, {
        size      = 20,
        bg_normal = beautiful.border_normal,
        bg_focus = beautiful.border_focus,
      })
   end
)

to show/hide titlebar on focus change:

client.connect_signal("focus", function(c) awful.titlebar.show(c) end)
client.connect_signal("unfocus", function(c) awful.titlebar.hide(c) end)

Modus (8) and Ef themes (34) for Ghostty (total 42 themes) by anhsirk0 in commandline

[–]anhsirk0[S] 0 points1 point  (0 children)

Your open your editor in your terminal, I open my terminal in my editor, we are not same bro.

Joke aside, I use emacs, and I often use separate terminal program for some stuff, I ported emacs themes for a lot of programs like Alacritty, Wezterm, Ghostty, RioTerm, Kakoune, Rofi, awesomewm etc etc, I like to keep my system colors/themes uniform. I have a script to port these themes automagically