summaryrefslogtreecommitdiff
path: root/shiftos_next/Desktop Environments
diff options
context:
space:
mode:
authorTheUltimateHacker <[email protected]>2015-05-29 09:57:53 -0400
committerTheUltimateHacker <[email protected]>2015-05-29 09:57:53 -0400
commitccdbbbed1898c5073dc460a737cdd4b7c7036bb5 (patch)
tree8116d7794ad400533939128f958994e0782f7678 /shiftos_next/Desktop Environments
parent424931951bf55c2db7a7cb3228bfccc03ea62287 (diff)
downloadshiftos-next-ccdbbbed1898c5073dc460a737cdd4b7c7036bb5.tar.gz
shiftos-next-ccdbbbed1898c5073dc460a737cdd4b7c7036bb5.tar.bz2
shiftos-next-ccdbbbed1898c5073dc460a737cdd4b7c7036bb5.zip
BWM - Skinning!
Yay! ShiftOS Next can finally be Shifted! Yes, that's true. I've added basic skinning to the Basic Window Manager. Currently, the only way to get to it is by typing "open shifter" in the Terminal, and the Shifter will open. Choose the settings you want and hit Apply! This is also the Alpha 3 commit, so after this I'll make the next release.
Diffstat (limited to 'shiftos_next/Desktop Environments')
-rw-r--r--shiftos_next/Desktop Environments/BWMDesktop.vb7
1 files changed, 7 insertions, 0 deletions
diff --git a/shiftos_next/Desktop Environments/BWMDesktop.vb b/shiftos_next/Desktop Environments/BWMDesktop.vb
index 07841a5..a3790b5 100644
--- a/shiftos_next/Desktop Environments/BWMDesktop.vb
+++ b/shiftos_next/Desktop Environments/BWMDesktop.vb
@@ -16,6 +16,12 @@
End If
End Sub
+ Public Sub Redraw()
+ btnnewterminal.ForeColor = newterminalbuttontextcolor
+ btnnewterminal.BackColor = newterminalbuttonbackcolor
+ Me.BackColor = desktopbackcolor
+ End Sub
+
Private Sub Desktop_Load(sender As Object, e As EventArgs) Handles MyBase.Load
Terminal.Close()
Me.WindowState = FormWindowState.Maximized
@@ -24,6 +30,7 @@
term.TopMost = True
term.Show()
openterminals += 1
+ loadskindata()
End Sub
End Class
End Namespace \ No newline at end of file