WM War

Kezdőlap Fórumok Vegyes gondok WM War

10 bejegyzés megtekintése - 1-10 / 55
  • Szerző
    Bejegyzés
  • #2134955
    vasy05
    Felhasználó

      Esetleg egy E17? Az kicsi és aranyos. Én használtam, nekem tetszett. Érdemes megnézned.

      #2134956
      vasy05
      Felhasználó

        Esetleg egy E17? Az kicsi és aranyos. Én használtam, nekem tetszett. Érdemes megnézned.

        #2134957
        violazoli
        Felhasználó

          És eleget tesz a topiknyitó hozzászólásomban megfogalmazott követelményeknek?

          #2134958
          violazoli
          Felhasználó

            És eleget tesz a topiknyitó hozzászólásomban megfogalmazott követelményeknek?

            #2134959
            Névtelen

              Szerintem neked Fluxbox kell.

              #2134960
              Névtelen

                Szerintem neked Fluxbox kell.

                #2134961
                uzsolt
                Felhasználó

                  Akkor csak az Ion3 lesz. Ezt megfelelő segédprogikkal kibővíted, és valami ilyesmit kapsz.

                  Terminál: az mrxvt-t próbáltad már?

                  [red]Szerk.:[/red]

                  Code:
                  $ ps aux | grep „TIME|ion3”
                  USER      PID %CPU %MEM    VSZ  RSS TTY      STAT START  TIME COMMAND
                  zsolt    2956  0.0  0.4  6660  3248 tty2    S    19:06  0:01 ion3
                  $ du -hs /usr/progs/x-windowman/ion-3/current/
                  2,1M    /usr/progs/x-windowman/ion-3/current/
                  $ progs depson ion-3
                  glibc 2.3.6 system
                  xorg-libs 7.2 libs

                  Tehát kb. 2 mega, glibc-től és az xorg libjeitől függ, a memóriahasználata is nagyon sok…

                  #2134962
                  uzsolt
                  Felhasználó

                    Akkor csak az Ion3 lesz. Ezt megfelelő segédprogikkal kibővíted, és valami ilyesmit kapsz.

                    Terminál: az mrxvt-t próbáltad már?

                    [red]Szerk.:[/red]

                    Code:
                    $ ps aux | grep „TIME|ion3”
                    USER      PID %CPU %MEM    VSZ  RSS TTY      STAT START  TIME COMMAND
                    zsolt    2956  0.0  0.4  6660  3248 tty2    S    19:06  0:01 ion3
                    $ du -hs /usr/progs/x-windowman/ion-3/current/
                    2,1M    /usr/progs/x-windowman/ion-3/current/
                    $ progs depson ion-3
                    glibc 2.3.6 system
                    xorg-libs 7.2 libs

                    Tehát kb. 2 mega, glibc-től és az xorg libjeitől függ, a memóriahasználata is nagyon sok…

                    #2134963
                    uzsolt
                    Felhasználó

                      Na, mégegyszer nem szerkesztem át, de az ~/.xinitrc-m idevágó része:

                      Code:
                      numlockx &

                      dclock -date „%B %d, %A” -fade -dateup  -seconds -miltime &

                      feh –bg-scale /pub/big_storage/Kepek/2007-eger-11E_12D/0053.jpeg

                      gkrellm &
                      xmodmap /home/zsolt/.Xmodmap
                      (sleep 1 ; mail-notification) &
                      (sleep 1 ; liferea) &
                      (sleep 2 ; stalonetray -p -d none –icon-gravity NW) &

                      ion3

                      A cfg_kludges.lua részlete (amiben szabályozzuk, mi hova kerüljön):

                      Code:
                      defwinprop{
                              name=”mrxvt”,
                              target=”MainFrame”,
                      }

                      defwinprop{
                          name=”dclock”,
                          target=”DclockFrame”,
                      }
                      defwinprop{
                          instance=”gkrellm”,
                          target=”GkrellmFrame”,
                      }

                      defwinprop{
                          instance=”liferea”,
                          target=”LifereaFrame”,
                      }

                      defwinprop{
                          instance=”stalonetray”,
                          target=”SystrayFrame”,
                      }

                      defwinprop{
                              class=”qmpdclient”,
                              target=”qmpdclient”,
                      }

                      A cfg_ioncore.lua menüt definiáló része:

                      Code:
                      — Main menu
                      defmenu(„mainmenu”, {
                          menuentry(„Run…”,        „mod_query.query_exec(_)”),
                          menuentry(„Terminal”,      „ioncore.exec_on(_, XTERM or ‘xterm’)”),
                          menuentry(„Lock screen”,    „ioncore.exec_on(_, ‘xlock’)”),
                          menuentry(„Help”,          „mod_query.query_man(_)”),
                          menuentry(„About Ion”,      „mod_query.show_about_ion(_)”),
                          submenu(„Styles”,          „stylemenu”),
                          submenu(„Session”,          „sessionmenu”),
                      })

                      — Session control menu
                      defmenu(„sessionmenu”, {
                          menuentry(„Save”,          „ioncore.snapshot()”),
                          menuentry(„Restart”,        „ioncore.restart()”),
                          menuentry(„Exit”,          „ioncore.shutdown()”),
                      })

                      Billentyűkombók definiálása (részlet szintén a cfg_ioncore.lua-ból):

                      Code:
                          submap(META..”K”, {
                              — Display tab numbers when modifiers are released
                              submap_wait(„ioncore.tabnum.show(_)”),

                              bdoc(„Switch to n:th object within the frame.”),
                              kpress(„1”, „WFrame.switch_nth(_, 0)”),
                              kpress(„2”, „WFrame.switch_nth(_, 1)”),
                              kpress(„3”, „WFrame.switch_nth(_, 2)”),
                              kpress(„4”, „WFrame.switch_nth(_, 3)”),
                              kpress(„5”, „WFrame.switch_nth(_, 4)”),
                              kpress(„6”, „WFrame.switch_nth(_, 5)”),
                              kpress(„7”, „WFrame.switch_nth(_, 6)”),
                              kpress(„8”, „WFrame.switch_nth(_, 7)”),
                              kpress(„9”, „WFrame.switch_nth(_, 8)”),
                              kpress(„0”, „WFrame.switch_nth(_, 9)”),

                              bdoc(„Switch to next/previous object within the frame.”),
                              kpress(„N”, „WFrame.switch_next(_)”),
                              kpress(„P”, „WFrame.switch_prev(_)”),

                              bdoc(„Move current object within the frame left/right.”),
                              kpress(„comma”, „WFrame.dec_index(_, _sub)”, „_sub:non-nil”),
                              kpress(„period”, „WFrame.inc_index(_, _sub)”, „_sub:non-nil”),

                              bdoc(„Maximize the frame horizontally/vertically.”),
                              kpress(„H”, „WFrame.maximize_horiz(_)”),
                              kpress(„V”, „WFrame.maximize_vert(_)”),

                              bdoc(„Attach tagged objects to this frame.”),
                              kpress(„A”, „ioncore.tagged_attach(_)”),
                          }),

                      Tehát mindent szövegfájlok szerkesztésével lehet szabályozni. Beállítófelülete nincs, tehát jó, hogyha tudsz egy editort használni 😉

                      #2134964
                      uzsolt
                      Felhasználó

                        Na, mégegyszer nem szerkesztem át, de az ~/.xinitrc-m idevágó része:

                        Code:
                        numlockx &

                        dclock -date „%B %d, %A” -fade -dateup  -seconds -miltime &

                        feh –bg-scale /pub/big_storage/Kepek/2007-eger-11E_12D/0053.jpeg

                        gkrellm &
                        xmodmap /home/zsolt/.Xmodmap
                        (sleep 1 ; mail-notification) &
                        (sleep 1 ; liferea) &
                        (sleep 2 ; stalonetray -p -d none –icon-gravity NW) &

                        ion3

                        A cfg_kludges.lua részlete (amiben szabályozzuk, mi hova kerüljön):

                        Code:
                        defwinprop{
                                name=”mrxvt”,
                                target=”MainFrame”,
                        }

                        defwinprop{
                            name=”dclock”,
                            target=”DclockFrame”,
                        }
                        defwinprop{
                            instance=”gkrellm”,
                            target=”GkrellmFrame”,
                        }

                        defwinprop{
                            instance=”liferea”,
                            target=”LifereaFrame”,
                        }

                        defwinprop{
                            instance=”stalonetray”,
                            target=”SystrayFrame”,
                        }

                        defwinprop{
                                class=”qmpdclient”,
                                target=”qmpdclient”,
                        }

                        A cfg_ioncore.lua menüt definiáló része:

                        Code:
                        — Main menu
                        defmenu(„mainmenu”, {
                            menuentry(„Run…”,        „mod_query.query_exec(_)”),
                            menuentry(„Terminal”,      „ioncore.exec_on(_, XTERM or ‘xterm’)”),
                            menuentry(„Lock screen”,    „ioncore.exec_on(_, ‘xlock’)”),
                            menuentry(„Help”,          „mod_query.query_man(_)”),
                            menuentry(„About Ion”,      „mod_query.show_about_ion(_)”),
                            submenu(„Styles”,          „stylemenu”),
                            submenu(„Session”,          „sessionmenu”),
                        })

                        — Session control menu
                        defmenu(„sessionmenu”, {
                            menuentry(„Save”,          „ioncore.snapshot()”),
                            menuentry(„Restart”,        „ioncore.restart()”),
                            menuentry(„Exit”,          „ioncore.shutdown()”),
                        })

                        Billentyűkombók definiálása (részlet szintén a cfg_ioncore.lua-ból):

                        Code:
                            submap(META..”K”, {
                                — Display tab numbers when modifiers are released
                                submap_wait(„ioncore.tabnum.show(_)”),

                                bdoc(„Switch to n:th object within the frame.”),
                                kpress(„1”, „WFrame.switch_nth(_, 0)”),
                                kpress(„2”, „WFrame.switch_nth(_, 1)”),
                                kpress(„3”, „WFrame.switch_nth(_, 2)”),
                                kpress(„4”, „WFrame.switch_nth(_, 3)”),
                                kpress(„5”, „WFrame.switch_nth(_, 4)”),
                                kpress(„6”, „WFrame.switch_nth(_, 5)”),
                                kpress(„7”, „WFrame.switch_nth(_, 6)”),
                                kpress(„8”, „WFrame.switch_nth(_, 7)”),
                                kpress(„9”, „WFrame.switch_nth(_, 8)”),
                                kpress(„0”, „WFrame.switch_nth(_, 9)”),

                                bdoc(„Switch to next/previous object within the frame.”),
                                kpress(„N”, „WFrame.switch_next(_)”),
                                kpress(„P”, „WFrame.switch_prev(_)”),

                                bdoc(„Move current object within the frame left/right.”),
                                kpress(„comma”, „WFrame.dec_index(_, _sub)”, „_sub:non-nil”),
                                kpress(„period”, „WFrame.inc_index(_, _sub)”, „_sub:non-nil”),

                                bdoc(„Maximize the frame horizontally/vertically.”),
                                kpress(„H”, „WFrame.maximize_horiz(_)”),
                                kpress(„V”, „WFrame.maximize_vert(_)”),

                                bdoc(„Attach tagged objects to this frame.”),
                                kpress(„A”, „ioncore.tagged_attach(_)”),
                            }),

                        Tehát mindent szövegfájlok szerkesztésével lehet szabályozni. Beállítófelülete nincs, tehát jó, hogyha tudsz egy editort használni 😉

                      10 bejegyzés megtekintése - 1-10 / 55
                      • Be kell jelentkezni a hozzászóláshoz.