Small disperate changes
This commit is contained in:
parent
4f18844fd2
commit
3e8ed89e77
@ -18,5 +18,7 @@ SolarFM is a Gtk + Python file manager.
|
||||
</ul>
|
||||
|
||||
# Images
|
||||
![1 SolarFM showing different directories. ](images/pic1.png)
|
||||
![1 SolarFM themed dark and made transparent. ](images/pic2.png)
|
||||
![1 SolarFM single pane. ](images/pic1.png)
|
||||
![2 SolarFM double pane. ](images/pic2.png)
|
||||
![3 SolarFM triple pane. ](images/pic3.png)
|
||||
![4 SolarFM quad pane. ](images/pic4.png)
|
||||
|
BIN
images/pic1.png
BIN
images/pic1.png
Binary file not shown.
Before Width: | Height: | Size: 161 KiB After Width: | Height: | Size: 504 KiB |
BIN
images/pic2.png
BIN
images/pic2.png
Binary file not shown.
Before Width: | Height: | Size: 456 KiB After Width: | Height: | Size: 316 KiB |
BIN
images/pic3.png
Normal file
BIN
images/pic3.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 307 KiB |
BIN
images/pic4.png
Normal file
BIN
images/pic4.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 464 KiB |
@ -1190,7 +1190,6 @@ SolarFM is developed on Atom, git, and using Python 3+ with Gtk GObject introspe
|
||||
<property name="name">notebook1</property>
|
||||
<property name="visible">True</property>
|
||||
<property name="can-focus">True</property>
|
||||
<property name="has-focus">True</property>
|
||||
<property name="margin-left">5</property>
|
||||
<property name="margin-right">5</property>
|
||||
<property name="margin-top">5</property>
|
||||
|
@ -14,11 +14,11 @@ treeview.view,
|
||||
|
||||
notebook > header > tabs > tab:checked {
|
||||
/* Neon Blue 00e8ff */
|
||||
background-color: rgba(0, 232, 255, 0.25);
|
||||
background-color: rgba(0, 232, 255, 0.2);
|
||||
/* Dark Bergundy */
|
||||
/* background-color: rgba(116, 0, 0, 0.25); */
|
||||
|
||||
color: rgba(255, 255, 255, 0.5);
|
||||
color: rgba(255, 255, 255, 0.8);
|
||||
}
|
||||
|
||||
#message_view {
|
||||
@ -36,7 +36,7 @@ notebook > header > tabs > tab:checked {
|
||||
.view:selected,
|
||||
.view:selected:hover {
|
||||
box-shadow: inset 0 0 0 9999px rgba(21, 158, 167, 0.57);
|
||||
color: rgba(255, 255, 255, 0.5);;
|
||||
color: rgba(255, 255, 255, 0.5);
|
||||
}
|
||||
|
||||
|
||||
|
@ -56,7 +56,7 @@ class DBusControllerMixin:
|
||||
|
||||
def send_ipc_message(self, message="Empty Data..."):
|
||||
try:
|
||||
conn = Client(('127.0.0.1', 4848), authkey=b'solar-ipc')
|
||||
conn = Client(('127.0.0.1', 4848), authkey=b'solarfm-ipc')
|
||||
conn.send(message)
|
||||
conn.send('close connection')
|
||||
except Exception as e:
|
||||
|
@ -83,7 +83,7 @@ class WidgetMixin:
|
||||
|
||||
|
||||
def create_tab_widget(self, view):
|
||||
tab = Gtk.Box()
|
||||
tab = Gtk.ButtonBox()
|
||||
label = Gtk.Label()
|
||||
tid = Gtk.Label()
|
||||
close = Gtk.Button()
|
||||
@ -91,10 +91,9 @@ class WidgetMixin:
|
||||
|
||||
label.set_label(f"{view.get_end_of_path()}")
|
||||
label.set_width_chars(len(view.get_end_of_path()))
|
||||
label.set_margin_start(5)
|
||||
label.set_margin_end(15)
|
||||
# label.set_margin_start(5)
|
||||
# label.set_margin_end(15)
|
||||
label.set_xalign(0.0)
|
||||
# label.set_ellipsize(2) #PANGO_ELLIPSIZE_MIDDLE
|
||||
tid.set_label(f"{view.id}")
|
||||
|
||||
close.add(icon)
|
||||
|
Loading…
Reference in New Issue
Block a user