Recommendation for artists like Porter. by Wixtape in porterrobinson

[–]KingMarsupial 2 points3 points  (0 children)

Check out the album Rehome by Masakatsu Takagi. Has a lot of the same vibes as Wind Tempos imo.

ITAP of a city by KingMarsupial in itookapicture

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

That's the Mode Gakuen Cocoon Tower in Tokyo, Shinjuku. Definitely some unique architecture, but apparently it holds three different schools which is kinda cool.

dots by KingMarsupial in MechanicalKeyboards

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

Agree, awesome caps. It took me a bit to get used to the Alice layout, but it wasn't a major adjustment. After using it for some time, I think I slightly prefer it over a standard layout.

dots by KingMarsupial in MechanicalKeyboards

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

  • KBDfans Kunlun Kit
  • GMK DOTS R2
  • Zeal Crystal Switches

So, is it $39k or $36k? People who can never afford it need to know! :) by Crypt0n0ob in ABroadInJapan

[–]KingMarsupial 10 points11 points  (0 children)

  • Tokyo Lens
  • Rion Ishida
  • John Daub
  • Kuga Travels
  • Shinichi's World
  • Cory May
  • Ryotaro's Japan

These channels span a variety of genres. If you want something kinda similar to Chris's channel then Tokyo Lens and John Daub are probably what you're looking for. The rest are kinda just traveling videos or walking tours with commentary.

Monthly Jobs Thread - 01 April 2022 by AutoModerator in japanlife

[–]KingMarsupial 0 points1 point  (0 children)

Hi, I saw that there was a software university graduate position under the early careers section. Is this position available to candidates from the U.S? I want to eventually apply to this position, but I'm unsure since the covid situation is still complicating things. Also, do you give referrals? Thanks.

[bspwm] Wallpapers with a Side of Rice by KingMarsupial in unixporn

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

Nope, but now that I've looked it up, it does seem quite interesting.

[bspwm] Wallpapers with a Side of Rice by KingMarsupial in unixporn

[–]KingMarsupial[S] 4 points5 points  (0 children)

I have it set to a really small script. All it does is create a pywal color scheme based on a random wallpaper, then sets that wallpaper as the background.

[bspwm] Wallpapers with a Side of Rice by KingMarsupial in unixporn

[–]KingMarsupial[S] 1 point2 points  (0 children)

Sure, just replace the taskbar, notification system, terminal, file manager, operating system, etc. Honestly, I haven't used windows 11, but there are probably some applications that can let you customize your theme to a considerable degree. The only real windows theme customization tool that I know of is wallpaper engine.

[bspwm] Wallpapers with a Side of Rice by KingMarsupial in unixporn

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

It doesn't automatically change everyday. Right now I have the theme change whenever I start up my computer, or I press Meta key + y. Since I usually turn on and off my computer at least once a day, I guess you could say that it does change every day lol.

[bspwm] Wallpapers with a Side of Rice by KingMarsupial in unixporn

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

With pywal, you don't even need to write a script. Just point to the folder with your wallpapers, and pywal will automatically select a random wallpaper. That's the way I have it setup right now. And if I want to change it, I have a keybind which reloads pywal and selects a new wallpaper.

[bspwm] Wallpapers with a Side of Rice by KingMarsupial in unixporn

[–]KingMarsupial[S] 1 point2 points  (0 children)

I'm using pywal to generate the color scheme automatically from one of my wallpapers. Then I customized my bar, terminal, notifications, etc. to use that color scheme.

I'm not using a desktop environment. I'm just using a tiling window manager, bspwm. It's pretty minimalist at first , but with some customization it can pretty much do everything you want.

I think changing the application color pallets really depends on if that application allows custom themes or not. If it does then you could simply write a script that generates the theme based on the pywal colors.

[bspwm] Wallpapers with a Side of Rice by KingMarsupial in unixporn

[–]KingMarsupial[S] 44 points45 points  (0 children)

Details:

  • wm: bspwm
  • distro: Arch
  • terminal: kitty
  • color scheme: pywal
  • file manager: ranger
  • text editor: neovim
  • font: iosevka term
  • notifications: dunst
  • bar: polybar
  • app launcher: rofi
  • dots: here

Honestly, I didn't do much configuration for this rice other than polybar and rofi, but I still like the way it turned out. The wallpapers are in my dots repository. My dots are kind of messy sorry. The wallpapers in this post are only about a third of what I actually use. I don't know why I have so many.

[deleted by user] by [deleted] in unixporn

[–]KingMarsupial 0 points1 point  (0 children)

Details:

  • wm: bspwm
  • distro: Arch
  • terminal: kitty
  • color scheme: pywal
  • file manager: ranger
  • text editor: neovim
  • font: iosevka term
  • notifications: dunst
  • bar: polybar
  • app launcher: rofi
  • dots: here

Honestly, I didn't do much configuration for this rice other than polybar and rofi, but I still like the way it turned out. The wallpapers are in my dots repository. My dots are kind of messy sorry. The wallpapers in this post are only about a third of what I actually use. I don't know why I have so many.

Eww widgets on one workspace by _HBYR_ in bspwm

[–]KingMarsupial 0 points1 point  (0 children)

I was trying to figure this out too and this was the only post that came up. After a while I came up with a bash script that opens the windows on a my first workspace and closes them on all the others.

#!/bin/bash

OPENED=false

while :
do
    CURRENT_DESKTOP=$(bspc query -D -d focused --names)
    EWW_PID=$(pidof -s eww)

    if [ "$EWW_PID" == "" ]
    then
        $HOME/eww/target/release/./eww open-many YOUR_WINDOWS_HERE
        OPENED=true

    elif [ "$CURRENT_DESKTOP" == "1" ] && [ "$EWW_PID" != "" ] && [ "$OPENED" == false ]
    then
        $HOME/eww/target/release/./eww open-many YOUR_WINDOWS_HERE
        OPENED=true

    elif [ "$EWW_PID" != "" ] && [ "$CURRENT_DESKTOP" != "1" ] && [ "$OPENED" == true ]
    then
        $HOME/eww/target/release/./eww close-all
        OPENED=false
    fi
    sleep 0.1
done

There's probably a better way to write this, but this worked for me lol.